You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Motivation, Context and Description
The public OpenAPI model classes that have "operation" in their name
were renamed to align with the other classes that do not have the word
in their name.
Additionally, the `RestApiPayloadProperty.Type`,
`RestApiParameter.Type`, and `RestApiParameter.ArrayItemType` were made
internal to simplify the update to OpenAPI.NET v2, where their types
have been changed.
/// Flag indicating whether to ignore non-compliant errors or not.
32
-
/// If set to true, the operation execution will not throw exceptions for non-compliant documents.
31
+
/// Flag indicating whether to ignore non-compliant errors of the OpenAPI document or not.
32
+
/// If set to true, the execution will not throw exceptions for non-compliant documents.
33
33
/// Please note that enabling this option may result in incomplete or inaccurate execution results.
34
34
/// </summary>
35
35
publicboolIgnoreNonCompliantErrors{get;set;}
@@ -40,8 +40,8 @@ public class OpenApiFunctionExecutionParameters
40
40
publicstringUserAgent{get;set;}
41
41
42
42
/// <summary>
43
-
/// Determines whether the operation payload is constructed dynamically based on operation payload metadata.
44
-
/// If false, the operation payload must be provided via the 'payload' context variable.
43
+
/// Determines whether the REST API operation payload is constructed dynamically based on payload metadata.
44
+
/// If false, the payload must be provided via the 'payload' argument.
45
45
/// </summary>
46
46
publicboolEnableDynamicPayload{get;set;}
47
47
@@ -75,13 +75,13 @@ public class OpenApiFunctionExecutionParameters
75
75
/// </summary>
76
76
/// <param name="httpClient">The HttpClient to use for sending HTTP requests.</param>
77
77
/// <param name="authCallback">The callback for adding authentication data to HTTP requests.</param>
78
-
/// <param name="serverUrlOverride">The override for the REST API operation server URL.</param>
78
+
/// <param name="serverUrlOverride">The override for the REST API server URL.</param>
79
79
/// <param name="userAgent">Optional user agent header value.</param>
80
-
/// <param name="ignoreNonCompliantErrors">A flag indicating whether to ignore non-compliant errors or not
81
-
/// If set to true, the operation execution will not throw exceptions for non-compliant documents.
80
+
/// <param name="ignoreNonCompliantErrors">A flag indicating whether to ignore non-compliant errors of the OpenAPI document or not
81
+
/// If set to true, the execution will not throw exceptions for non-compliant documents.
82
82
/// Please note that enabling this option may result in incomplete or inaccurate execution results.</param>
83
-
/// <param name="enableDynamicOperationPayload">Determines whether the operation payload is constructed dynamically based on operation payload metadata.
84
-
/// If false, the operation payload must be provided via the 'payload' context variable.</param>
83
+
/// <param name="enableDynamicOperationPayload">Determines whether the REST API operation payload is constructed dynamically based on payload metadata.
84
+
/// If false, the REST API payload must be provided via the 'payload' argument.</param>
85
85
/// <param name="enablePayloadNamespacing">Determines whether payload parameter names are augmented with namespaces.
86
86
/// Namespaces prevent naming conflicts by adding the parent parameter name as a prefix, separated by dots.</param>
87
87
/// <param name="operationsToExclude">Optional list of operations not to import, e.g. in case they are not supported</param>
restOperationResponseis not null?newKernelReturnParameterMetadata{Description=restOperationResponse.Description,Schema=restOperationResponse.Schema}:null;
@@ -64,12 +64,12 @@ public static IReadOnlyList<RestApiOperationParameter> GetParameters(
64
64
}
65
65
66
66
/// <summary>
67
-
/// Retrieves the default response for a given REST API operation.
67
+
/// Retrieves the default response.
68
68
/// </summary>
69
-
/// <param name="responses">The REST API operation responses to parse.</param>
69
+
/// <param name="responses">Possible REST API responses.</param>
70
70
/// <param name="preferredResponses">The preferred response codes to use when selecting the default response.</param>
71
71
/// <returns>The default response, if any.</returns>
0 commit comments