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
Copy file name to clipboardexpand all lines: dotnet/src/Functions/Functions.OpenApi/Extensions/OpenApiFunctionExecutionParameters.cs
+6
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,7 @@
2
2
3
3
usingSystem;
4
4
usingSystem.Collections.Generic;
5
+
usingSystem.Diagnostics.CodeAnalysis;
5
6
usingSystem.Net.Http;
6
7
usingMicrosoft.Extensions.Logging;
7
8
usingMicrosoft.SemanticKernel.Http;
@@ -46,6 +47,7 @@ public class OpenApiFunctionExecutionParameters
46
47
/// To support more complex payloads, it should be disabled and the payload should be provided via the 'payload' argument.
47
48
/// See the 'Providing Payload for OpenAPI Functions' ADR for more details: https://github.com/microsoft/semantic-kernel/blob/main/docs/decisions/0062-open-api-payload.md
48
49
/// </summary>
50
+
[Experimental("SKEXP0040")]
49
51
publicboolEnableDynamicPayload{get;set;}
50
52
51
53
/// <summary>
@@ -56,11 +58,13 @@ public class OpenApiFunctionExecutionParameters
56
58
/// the parameters 'sender.email' and 'sender.receiver' will be correctly resolved from arguments with the same names.
57
59
/// See the 'Providing Payload for OpenAPI Functions' ADR for more details: https://github.com/microsoft/semantic-kernel/blob/main/docs/decisions/0062-open-api-payload.md
58
60
/// </summary>
61
+
[Experimental("SKEXP0040")]
59
62
publicboolEnablePayloadNamespacing{get;set;}
60
63
61
64
/// <summary>
62
65
/// Optional list of HTTP operations to skip when importing the OpenAPI document.
63
66
/// </summary>
67
+
[Experimental("SKEXP0040")]
64
68
publicIList<string>OperationsToExclude{get;set;}
65
69
66
70
/// <summary>
@@ -72,6 +76,7 @@ public class OpenApiFunctionExecutionParameters
72
76
/// as a stream rather than as a string.
73
77
/// If the custom reader is not provided, or the reader returns null, the internal reader is used.
0 commit comments