@aws-sdk/client-bedrock-agentcore-control 3.940.0 → 3.943.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +216 -0
- package/dist-cjs/index.js +2140 -143
- package/dist-es/BedrockAgentCoreControl.js +54 -0
- package/dist-es/commands/CreateEvaluatorCommand.js +16 -0
- package/dist-es/commands/CreateOnlineEvaluationConfigCommand.js +16 -0
- package/dist-es/commands/CreatePolicyCommand.js +16 -0
- package/dist-es/commands/CreatePolicyEngineCommand.js +16 -0
- package/dist-es/commands/DeleteEvaluatorCommand.js +16 -0
- package/dist-es/commands/DeleteOnlineEvaluationConfigCommand.js +16 -0
- package/dist-es/commands/DeletePolicyCommand.js +16 -0
- package/dist-es/commands/DeletePolicyEngineCommand.js +16 -0
- package/dist-es/commands/DeleteResourcePolicyCommand.js +16 -0
- package/dist-es/commands/GetEvaluatorCommand.js +16 -0
- package/dist-es/commands/GetOnlineEvaluationConfigCommand.js +16 -0
- package/dist-es/commands/GetPolicyCommand.js +16 -0
- package/dist-es/commands/GetPolicyEngineCommand.js +16 -0
- package/dist-es/commands/GetPolicyGenerationCommand.js +16 -0
- package/dist-es/commands/GetResourcePolicyCommand.js +16 -0
- package/dist-es/commands/ListEvaluatorsCommand.js +16 -0
- package/dist-es/commands/ListOnlineEvaluationConfigsCommand.js +16 -0
- package/dist-es/commands/ListPoliciesCommand.js +16 -0
- package/dist-es/commands/ListPolicyEnginesCommand.js +16 -0
- package/dist-es/commands/ListPolicyGenerationAssetsCommand.js +16 -0
- package/dist-es/commands/ListPolicyGenerationsCommand.js +16 -0
- package/dist-es/commands/PutResourcePolicyCommand.js +16 -0
- package/dist-es/commands/StartPolicyGenerationCommand.js +16 -0
- package/dist-es/commands/UpdateEvaluatorCommand.js +16 -0
- package/dist-es/commands/UpdateOnlineEvaluationConfigCommand.js +16 -0
- package/dist-es/commands/UpdatePolicyCommand.js +16 -0
- package/dist-es/commands/UpdatePolicyEngineCommand.js +16 -0
- package/dist-es/commands/index.js +27 -0
- package/dist-es/models/enums.js +104 -0
- package/dist-es/models/models_1.js +1 -0
- package/dist-es/pagination/ListEvaluatorsPaginator.js +4 -0
- package/dist-es/pagination/ListOnlineEvaluationConfigsPaginator.js +4 -0
- package/dist-es/pagination/ListPoliciesPaginator.js +4 -0
- package/dist-es/pagination/ListPolicyEnginesPaginator.js +4 -0
- package/dist-es/pagination/ListPolicyGenerationAssetsPaginator.js +4 -0
- package/dist-es/pagination/ListPolicyGenerationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +6 -0
- package/dist-es/schemas/schemas_0.js +1320 -97
- package/dist-es/waiters/index.js +5 -0
- package/dist-es/waiters/waitForPolicyActive.js +58 -0
- package/dist-es/waiters/waitForPolicyDeleted.js +43 -0
- package/dist-es/waiters/waitForPolicyEngineActive.js +58 -0
- package/dist-es/waiters/waitForPolicyEngineDeleted.js +43 -0
- package/dist-es/waiters/waitForPolicyGenerationCompleted.js +58 -0
- package/dist-types/BedrockAgentCoreControl.d.ts +192 -0
- package/dist-types/BedrockAgentCoreControlClient.d.ts +29 -2
- package/dist-types/commands/CreateAgentRuntimeCommand.d.ts +18 -0
- package/dist-types/commands/CreateEvaluatorCommand.d.ts +132 -0
- package/dist-types/commands/CreateGatewayCommand.d.ts +44 -0
- package/dist-types/commands/CreateGatewayTargetCommand.d.ts +49 -1
- package/dist-types/commands/CreateMemoryCommand.d.ts +52 -5
- package/dist-types/commands/CreateOnlineEvaluationConfigCommand.d.ts +140 -0
- package/dist-types/commands/CreatePolicyCommand.d.ts +119 -0
- package/dist-types/commands/CreatePolicyEngineCommand.d.ts +103 -0
- package/dist-types/commands/CreateWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEvaluatorCommand.d.ts +94 -0
- package/dist-types/commands/DeleteMemoryCommand.d.ts +3 -0
- package/dist-types/commands/DeleteOnlineEvaluationConfigCommand.d.ts +94 -0
- package/dist-types/commands/DeletePolicyCommand.d.ts +108 -0
- package/dist-types/commands/DeletePolicyEngineCommand.d.ts +101 -0
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +87 -0
- package/dist-types/commands/DeleteWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/commands/GetAgentRuntimeCommand.d.ts +19 -0
- package/dist-types/commands/GetEvaluatorCommand.d.ts +131 -0
- package/dist-types/commands/GetGatewayCommand.d.ts +22 -0
- package/dist-types/commands/GetGatewayTargetCommand.d.ts +26 -1
- package/dist-types/commands/GetMemoryCommand.d.ts +27 -5
- package/dist-types/commands/GetOnlineEvaluationConfigCommand.d.ts +137 -0
- package/dist-types/commands/GetPolicyCommand.d.ts +105 -0
- package/dist-types/commands/GetPolicyEngineCommand.d.ts +98 -0
- package/dist-types/commands/GetPolicyGenerationCommand.d.ts +103 -0
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +89 -0
- package/dist-types/commands/GetWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/commands/ListEvaluatorsCommand.d.ts +101 -0
- package/dist-types/commands/ListOnlineEvaluationConfigsCommand.d.ts +100 -0
- package/dist-types/commands/ListPoliciesCommand.d.ts +113 -0
- package/dist-types/commands/ListPolicyEnginesCommand.d.ts +101 -0
- package/dist-types/commands/ListPolicyGenerationAssetsCommand.d.ts +109 -0
- package/dist-types/commands/ListPolicyGenerationsCommand.d.ts +109 -0
- package/dist-types/commands/ListWorkloadIdentitiesCommand.d.ts +1 -1
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +90 -0
- package/dist-types/commands/SetTokenVaultCMKCommand.d.ts +1 -1
- package/dist-types/commands/StartPolicyGenerationCommand.d.ts +116 -0
- package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +26 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAgentRuntimeCommand.d.ts +18 -0
- package/dist-types/commands/UpdateEvaluatorCommand.d.ts +135 -0
- package/dist-types/commands/UpdateGatewayCommand.d.ts +44 -0
- package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +49 -1
- package/dist-types/commands/UpdateMemoryCommand.d.ts +73 -8
- package/dist-types/commands/UpdateOnlineEvaluationConfigCommand.d.ts +138 -0
- package/dist-types/commands/UpdatePolicyCommand.d.ts +115 -0
- package/dist-types/commands/UpdatePolicyEngineCommand.d.ts +102 -0
- package/dist-types/commands/UpdateWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +27 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +232 -0
- package/dist-types/models/models_0.d.ts +4160 -2169
- package/dist-types/models/models_1.d.ts +1009 -0
- package/dist-types/pagination/ListEvaluatorsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListOnlineEvaluationConfigsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPoliciesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPolicyEnginesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPolicyGenerationAssetsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPolicyGenerationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +6 -0
- package/dist-types/schemas/schemas_0.d.ts +156 -0
- package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +462 -0
- package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +162 -0
- package/dist-types/ts3.4/commands/CreateEvaluatorCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateGatewayTargetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateOnlineEvaluationConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreatePolicyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreatePolicyEngineCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteEvaluatorCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteOnlineEvaluationConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeletePolicyEngineCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetEvaluatorCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetGatewayTargetCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetOnlineEvaluationConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetPolicyEngineCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetPolicyGenerationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListEvaluatorsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListOnlineEvaluationConfigsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPoliciesCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/ListPolicyEnginesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPolicyGenerationAssetsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPolicyGenerationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListWorkloadIdentitiesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SetTokenVaultCMKCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartPolicyGenerationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SynchronizeGatewayTargetsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateEvaluatorCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateGatewayTargetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateOnlineEvaluationConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdatePolicyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdatePolicyEngineCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +27 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +132 -0
- package/dist-types/ts3.4/models/models_0.d.ts +835 -188
- package/dist-types/ts3.4/models/models_1.d.ts +331 -0
- package/dist-types/ts3.4/pagination/ListEvaluatorsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListOnlineEvaluationConfigsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPoliciesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPolicyEnginesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPolicyGenerationAssetsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPolicyGenerationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +6 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +156 -0
- package/dist-types/ts3.4/waiters/index.d.ts +5 -0
- package/dist-types/ts3.4/waiters/waitForPolicyActive.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForPolicyDeleted.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForPolicyEngineActive.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForPolicyEngineDeleted.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForPolicyGenerationCompleted.d.ts +11 -0
- package/dist-types/waiters/index.d.ts +5 -0
- package/dist-types/waiters/waitForPolicyActive.d.ts +14 -0
- package/dist-types/waiters/waitForPolicyDeleted.d.ts +14 -0
- package/dist-types/waiters/waitForPolicyEngineActive.d.ts +14 -0
- package/dist-types/waiters/waitForPolicyEngineDeleted.d.ts +14 -0
- package/dist-types/waiters/waitForPolicyGenerationCompleted.d.ts +14 -0
- package/package.json +5 -5
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
const _AC = "AuthorizerConfiguration";
|
|
2
|
+
const _ACMVT = "AuthorizingClaimMatchValueType";
|
|
2
3
|
const _ADE = "AccessDeniedException";
|
|
4
|
+
const _AGTC = "ApiGatewayTargetConfiguration";
|
|
5
|
+
const _AGTCp = "ApiGatewayToolConfiguration";
|
|
6
|
+
const _AGTF = "ApiGatewayToolFilter";
|
|
7
|
+
const _AGTFp = "ApiGatewayToolFilters";
|
|
8
|
+
const _AGTO = "ApiGatewayToolOverride";
|
|
9
|
+
const _AGTOp = "ApiGatewayToolOverrides";
|
|
3
10
|
const _AKCP = "ApiKeyCredentialProviders";
|
|
4
11
|
const _AKCPI = "ApiKeyCredentialProviderItem";
|
|
5
12
|
const _AKT = "ApiKeyType";
|
|
@@ -11,6 +18,7 @@ const _ARE = "AgentRuntimeEndpoint";
|
|
|
11
18
|
const _AREg = "AgentRuntimeEndpoints";
|
|
12
19
|
const _ARg = "AgentRuntimes";
|
|
13
20
|
const _ASC = "ApiSchemaConfiguration";
|
|
21
|
+
const _BEMC = "BedrockEvaluatorModelConfig";
|
|
14
22
|
const _BNC = "BrowserNetworkConfiguration";
|
|
15
23
|
const _BS = "BrowserSummary";
|
|
16
24
|
const _BSCI = "BrowserSigningConfigInput";
|
|
@@ -36,11 +44,16 @@ const _CCI = "CustomConfigurationInput";
|
|
|
36
44
|
const _CCIR = "CreateCodeInterpreterRequest";
|
|
37
45
|
const _CCIRr = "CreateCodeInterpreterResponse";
|
|
38
46
|
const _CCIr = "CreateCodeInterpreter";
|
|
47
|
+
const _CCVT = "CustomClaimValidationType";
|
|
48
|
+
const _CCVTu = "CustomClaimValidationsType";
|
|
39
49
|
const _CCo = "ContainerConfiguration";
|
|
40
50
|
const _CCon = "ConsolidationConfiguration";
|
|
41
51
|
const _CE = "ConflictException";
|
|
42
52
|
const _CEC = "CustomExtractionConfiguration";
|
|
43
53
|
const _CECI = "CustomExtractionConfigurationInput";
|
|
54
|
+
const _CER = "CreateEvaluatorRequest";
|
|
55
|
+
const _CERr = "CreateEvaluatorResponse";
|
|
56
|
+
const _CEr = "CreateEvaluator";
|
|
44
57
|
const _CG = "CreateGateway";
|
|
45
58
|
const _CGR = "CreateGatewayRequest";
|
|
46
59
|
const _CGRr = "CreateGatewayResponse";
|
|
@@ -56,18 +69,36 @@ const _CME = "ConcurrentModificationException";
|
|
|
56
69
|
const _CMI = "CreateMemoryInput";
|
|
57
70
|
const _CMO = "CreateMemoryOutput";
|
|
58
71
|
const _CMSI = "CustomMemoryStrategyInput";
|
|
72
|
+
const _CMVT = "ClaimMatchValueType";
|
|
59
73
|
const _COCP = "CreateOauth2CredentialProvider";
|
|
60
74
|
const _COCPR = "CreateOauth2CredentialProviderRequest";
|
|
61
75
|
const _COCPRr = "CreateOauth2CredentialProviderResponse";
|
|
76
|
+
const _COEC = "CreateOnlineEvaluationConfig";
|
|
77
|
+
const _COECR = "CreateOnlineEvaluationConfigRequest";
|
|
78
|
+
const _COECRr = "CreateOnlineEvaluationConfigResponse";
|
|
62
79
|
const _COPCI = "CustomOauth2ProviderConfigInput";
|
|
63
80
|
const _COPCO = "CustomOauth2ProviderConfigOutput";
|
|
64
|
-
const _CP = "
|
|
81
|
+
const _CP = "CedarPolicy";
|
|
65
82
|
const _CPC = "CredentialProviderConfiguration";
|
|
66
83
|
const _CPCr = "CredentialProviderConfigurations";
|
|
84
|
+
const _CPE = "CreatePolicyEngine";
|
|
85
|
+
const _CPER = "CreatePolicyEngineRequest";
|
|
86
|
+
const _CPERr = "CreatePolicyEngineResponse";
|
|
87
|
+
const _CPR = "CreatePolicyRequest";
|
|
88
|
+
const _CPRr = "CreatePolicyResponse";
|
|
89
|
+
const _CPr = "CredentialProvider";
|
|
90
|
+
const _CPre = "CreatePolicy";
|
|
91
|
+
const _CRC = "CustomReflectionConfiguration";
|
|
92
|
+
const _CRCI = "CustomReflectionConfigurationInput";
|
|
93
|
+
const _CSD = "CategoricalScaleDefinition";
|
|
94
|
+
const _CSDa = "CategoricalScaleDefinitions";
|
|
67
95
|
const _CST = "ClientSecretType";
|
|
68
96
|
const _CWI = "CreateWorkloadIdentity";
|
|
69
97
|
const _CWIR = "CreateWorkloadIdentityRequest";
|
|
70
98
|
const _CWIRr = "CreateWorkloadIdentityResponse";
|
|
99
|
+
const _CWLIC = "CloudWatchLogsInputConfig";
|
|
100
|
+
const _CWOC = "CloudWatchOutputConfig";
|
|
101
|
+
const _Co = "Content";
|
|
71
102
|
const _D = "Description";
|
|
72
103
|
const _DAKCP = "DeleteApiKeyCredentialProvider";
|
|
73
104
|
const _DAKCPR = "DeleteApiKeyCredentialProviderRequest";
|
|
@@ -84,6 +115,9 @@ const _DBRe = "DeleteBrowserResponse";
|
|
|
84
115
|
const _DCI = "DeleteCodeInterpreter";
|
|
85
116
|
const _DCIR = "DeleteCodeInterpreterRequest";
|
|
86
117
|
const _DCIRe = "DeleteCodeInterpreterResponse";
|
|
118
|
+
const _DE = "DeleteEvaluator";
|
|
119
|
+
const _DER = "DeleteEvaluatorRequest";
|
|
120
|
+
const _DERe = "DeleteEvaluatorResponse";
|
|
87
121
|
const _DF = "DecryptionFailure";
|
|
88
122
|
const _DG = "DeleteGateway";
|
|
89
123
|
const _DGR = "DeleteGatewayRequest";
|
|
@@ -99,13 +133,50 @@ const _DMSL = "DeleteMemoryStrategiesList";
|
|
|
99
133
|
const _DOCP = "DeleteOauth2CredentialProvider";
|
|
100
134
|
const _DOCPR = "DeleteOauth2CredentialProviderRequest";
|
|
101
135
|
const _DOCPRe = "DeleteOauth2CredentialProviderResponse";
|
|
136
|
+
const _DOEC = "DeleteOnlineEvaluationConfig";
|
|
137
|
+
const _DOECR = "DeleteOnlineEvaluationConfigRequest";
|
|
138
|
+
const _DOECRe = "DeleteOnlineEvaluationConfigResponse";
|
|
139
|
+
const _DP = "DeletePolicy";
|
|
140
|
+
const _DPE = "DeletePolicyEngine";
|
|
141
|
+
const _DPER = "DeletePolicyEngineRequest";
|
|
142
|
+
const _DPERe = "DeletePolicyEngineResponse";
|
|
143
|
+
const _DPR = "DeletePolicyRequest";
|
|
144
|
+
const _DPRe = "DeletePolicyResponse";
|
|
145
|
+
const _DRP = "DeleteResourcePolicy";
|
|
146
|
+
const _DRPR = "DeleteResourcePolicyRequest";
|
|
147
|
+
const _DRPRe = "DeleteResourcePolicyResponse";
|
|
148
|
+
const _DSC = "DataSourceConfig";
|
|
102
149
|
const _DWI = "DeleteWorkloadIdentity";
|
|
103
150
|
const _DWIR = "DeleteWorkloadIdentityRequest";
|
|
104
151
|
const _DWIRe = "DeleteWorkloadIdentityResponse";
|
|
105
|
-
const _EC = "
|
|
152
|
+
const _EC = "EvaluatorConfig";
|
|
153
|
+
const _ECD = "EvaluationConfigDescription";
|
|
154
|
+
const _ECO = "EpisodicConsolidationOverride";
|
|
155
|
+
const _ECx = "ExtractionConfiguration";
|
|
156
|
+
const _ED = "EvaluatorDescription";
|
|
157
|
+
const _EEO = "EpisodicExtractionOverride";
|
|
106
158
|
const _EF = "EncryptionFailure";
|
|
159
|
+
const _EI = "EvaluatorInstructions";
|
|
160
|
+
const _EL = "EvaluatorList";
|
|
161
|
+
const _EMC = "EvaluatorModelConfig";
|
|
162
|
+
const _EMSI = "EpisodicMemoryStrategyInput";
|
|
107
163
|
const _EN = "EndpointName";
|
|
164
|
+
const _EOCCI = "EpisodicOverrideConsolidationConfigurationInput";
|
|
165
|
+
const _EOCI = "EpisodicOverrideConfigurationInput";
|
|
166
|
+
const _EOECI = "EpisodicOverrideExtractionConfigurationInput";
|
|
167
|
+
const _EORCI = "EpisodicOverrideReflectionConfigurationInput";
|
|
168
|
+
const _ER = "EvaluatorReference";
|
|
169
|
+
const _ERC = "EpisodicReflectionConfiguration";
|
|
170
|
+
const _ERCI = "EpisodicReflectionConfigurationInput";
|
|
171
|
+
const _ERO = "EpisodicReflectionOverride";
|
|
172
|
+
const _ES = "EvaluatorSummary";
|
|
173
|
+
const _ESL = "EvaluatorSummaryList";
|
|
108
174
|
const _EVM = "EnvironmentVariablesMap";
|
|
175
|
+
const _F = "Filter";
|
|
176
|
+
const _FL = "FilterList";
|
|
177
|
+
const _FV = "FilterValue";
|
|
178
|
+
const _Fi = "Finding";
|
|
179
|
+
const _Fin = "Findings";
|
|
109
180
|
const _GAKCP = "GatewayApiKeyCredentialProvider";
|
|
110
181
|
const _GAKCPR = "GetApiKeyCredentialProviderRequest";
|
|
111
182
|
const _GAKCPRe = "GetApiKeyCredentialProviderResponse";
|
|
@@ -123,6 +194,9 @@ const _GCI = "GetCodeInterpreter";
|
|
|
123
194
|
const _GCIR = "GetCodeInterpreterRequest";
|
|
124
195
|
const _GCIRe = "GetCodeInterpreterResponse";
|
|
125
196
|
const _GD = "GatewayDescription";
|
|
197
|
+
const _GE = "GetEvaluator";
|
|
198
|
+
const _GER = "GetEvaluatorRequest";
|
|
199
|
+
const _GERe = "GetEvaluatorResponse";
|
|
126
200
|
const _GG = "GetGateway";
|
|
127
201
|
const _GGR = "GetGatewayRequest";
|
|
128
202
|
const _GGRe = "GetGatewayResponse";
|
|
@@ -138,11 +212,27 @@ const _GN = "GatewayName";
|
|
|
138
212
|
const _GOCP = "GetOauth2CredentialProvider";
|
|
139
213
|
const _GOCPR = "GetOauth2CredentialProviderRequest";
|
|
140
214
|
const _GOCPRe = "GetOauth2CredentialProviderResponse";
|
|
215
|
+
const _GOEC = "GetOnlineEvaluationConfig";
|
|
216
|
+
const _GOECR = "GetOnlineEvaluationConfigRequest";
|
|
217
|
+
const _GOECRe = "GetOnlineEvaluationConfigResponse";
|
|
141
218
|
const _GOPCI = "GithubOauth2ProviderConfigInput";
|
|
142
219
|
const _GOPCIo = "GoogleOauth2ProviderConfigInput";
|
|
143
220
|
const _GOPCO = "GithubOauth2ProviderConfigOutput";
|
|
144
221
|
const _GOPCOo = "GoogleOauth2ProviderConfigOutput";
|
|
222
|
+
const _GP = "GetPolicy";
|
|
145
223
|
const _GPC = "GatewayProtocolConfiguration";
|
|
224
|
+
const _GPE = "GetPolicyEngine";
|
|
225
|
+
const _GPEC = "GatewayPolicyEngineConfiguration";
|
|
226
|
+
const _GPER = "GetPolicyEngineRequest";
|
|
227
|
+
const _GPERe = "GetPolicyEngineResponse";
|
|
228
|
+
const _GPG = "GetPolicyGeneration";
|
|
229
|
+
const _GPGR = "GetPolicyGenerationRequest";
|
|
230
|
+
const _GPGRe = "GetPolicyGenerationResponse";
|
|
231
|
+
const _GPR = "GetPolicyRequest";
|
|
232
|
+
const _GPRe = "GetPolicyResponse";
|
|
233
|
+
const _GRP = "GetResourcePolicy";
|
|
234
|
+
const _GRPR = "GetResourcePolicyRequest";
|
|
235
|
+
const _GRPRe = "GetResourcePolicyResponse";
|
|
146
236
|
const _GS = "GatewaySummary";
|
|
147
237
|
const _GSa = "GatewaySummaries";
|
|
148
238
|
const _GT = "GatewayTarget";
|
|
@@ -153,15 +243,17 @@ const _GTVRe = "GetTokenVaultResponse";
|
|
|
153
243
|
const _GWI = "GetWorkloadIdentity";
|
|
154
244
|
const _GWIR = "GetWorkloadIdentityRequest";
|
|
155
245
|
const _GWIRe = "GetWorkloadIdentityResponse";
|
|
156
|
-
const _IC = "
|
|
246
|
+
const _IC = "InferenceConfiguration";
|
|
157
247
|
const _ICI = "InvocationConfigurationInput";
|
|
158
|
-
const _ICn = "
|
|
248
|
+
const _ICn = "InvocationConfiguration";
|
|
249
|
+
const _ICnt = "InterceptorConfiguration";
|
|
159
250
|
const _IIC = "InterceptorInputConfiguration";
|
|
160
251
|
const _IOPCI = "IncludedOauth2ProviderConfigInput";
|
|
161
252
|
const _IOPCO = "IncludedOauth2ProviderConfigOutput";
|
|
162
253
|
const _IP = "InlinePayload";
|
|
163
254
|
const _ISE = "InternalServerException";
|
|
164
255
|
const _KC = "KmsConfiguration";
|
|
256
|
+
const _LAAJEC = "LlmAsAJudgeEvaluatorConfig";
|
|
165
257
|
const _LAKCP = "ListApiKeyCredentialProviders";
|
|
166
258
|
const _LAKCPR = "ListApiKeyCredentialProvidersRequest";
|
|
167
259
|
const _LAKCPRi = "ListApiKeyCredentialProvidersResponse";
|
|
@@ -181,6 +273,9 @@ const _LC = "LifecycleConfiguration";
|
|
|
181
273
|
const _LCI = "ListCodeInterpreters";
|
|
182
274
|
const _LCIR = "ListCodeInterpretersRequest";
|
|
183
275
|
const _LCIRi = "ListCodeInterpretersResponse";
|
|
276
|
+
const _LE = "ListEvaluators";
|
|
277
|
+
const _LER = "ListEvaluatorsRequest";
|
|
278
|
+
const _LERi = "ListEvaluatorsResponse";
|
|
184
279
|
const _LG = "ListGateways";
|
|
185
280
|
const _LGR = "ListGatewaysRequest";
|
|
186
281
|
const _LGRi = "ListGatewaysResponse";
|
|
@@ -194,8 +289,23 @@ const _LMO = "ListMemoriesOutput";
|
|
|
194
289
|
const _LOCP = "ListOauth2CredentialProviders";
|
|
195
290
|
const _LOCPR = "ListOauth2CredentialProvidersRequest";
|
|
196
291
|
const _LOCPRi = "ListOauth2CredentialProvidersResponse";
|
|
292
|
+
const _LOEC = "ListOnlineEvaluationConfigs";
|
|
293
|
+
const _LOECR = "ListOnlineEvaluationConfigsRequest";
|
|
294
|
+
const _LOECRi = "ListOnlineEvaluationConfigsResponse";
|
|
197
295
|
const _LOPCI = "LinkedinOauth2ProviderConfigInput";
|
|
198
296
|
const _LOPCO = "LinkedinOauth2ProviderConfigOutput";
|
|
297
|
+
const _LP = "ListPolicies";
|
|
298
|
+
const _LPE = "ListPolicyEngines";
|
|
299
|
+
const _LPER = "ListPolicyEnginesRequest";
|
|
300
|
+
const _LPERi = "ListPolicyEnginesResponse";
|
|
301
|
+
const _LPG = "ListPolicyGenerations";
|
|
302
|
+
const _LPGA = "ListPolicyGenerationAssets";
|
|
303
|
+
const _LPGAR = "ListPolicyGenerationAssetsRequest";
|
|
304
|
+
const _LPGARi = "ListPolicyGenerationAssetsResponse";
|
|
305
|
+
const _LPGR = "ListPolicyGenerationsRequest";
|
|
306
|
+
const _LPGRi = "ListPolicyGenerationsResponse";
|
|
307
|
+
const _LPR = "ListPoliciesRequest";
|
|
308
|
+
const _LPRi = "ListPoliciesResponse";
|
|
199
309
|
const _LTFR = "ListTagsForResource";
|
|
200
310
|
const _LTFRR = "ListTagsForResourceRequest";
|
|
201
311
|
const _LTFRRi = "ListTagsForResourceResponse";
|
|
@@ -215,6 +325,7 @@ const _MMSI = "ModifyMemoryStrategyInput";
|
|
|
215
325
|
const _MMSL = "ModifyMemoryStrategiesList";
|
|
216
326
|
const _MOPCI = "MicrosoftOauth2ProviderConfigInput";
|
|
217
327
|
const _MOPCO = "MicrosoftOauth2ProviderConfigOutput";
|
|
328
|
+
const _MRC = "ModifyReflectionConfiguration";
|
|
218
329
|
const _MS = "MemoryStrategy";
|
|
219
330
|
const _MSC = "ModifyStrategyConfiguration";
|
|
220
331
|
const _MSI = "MemoryStrategyInput";
|
|
@@ -226,25 +337,48 @@ const _MSTC = "McpServerTargetConfiguration";
|
|
|
226
337
|
const _MSe = "MemorySummary";
|
|
227
338
|
const _MTC = "McpTargetConfiguration";
|
|
228
339
|
const _NC = "NetworkConfiguration";
|
|
340
|
+
const _NSD = "NumericalScaleDefinition";
|
|
341
|
+
const _NSDu = "NumericalScaleDefinitions";
|
|
229
342
|
const _OACP = "OAuthCredentialProvider";
|
|
230
343
|
const _OACPV = "OAuthCustomParametersValue";
|
|
231
344
|
const _OACPu = "OAuthCustomParameters";
|
|
232
345
|
const _OASM = "Oauth2AuthorizationServerMetadata";
|
|
346
|
+
const _OC = "OutputConfig";
|
|
233
347
|
const _OCP = "Oauth2CredentialProviders";
|
|
234
348
|
const _OCPI = "Oauth2CredentialProviderItem";
|
|
235
349
|
const _OD = "Oauth2Discovery";
|
|
350
|
+
const _OECS = "OnlineEvaluationConfigSummary";
|
|
351
|
+
const _OECSL = "OnlineEvaluationConfigSummaryList";
|
|
236
352
|
const _OPCI = "Oauth2ProviderConfigInput";
|
|
237
353
|
const _OPCO = "Oauth2ProviderConfigOutput";
|
|
238
354
|
const _P = "Prompt";
|
|
239
355
|
const _PC = "ProtocolConfiguration";
|
|
356
|
+
const _PD = "PolicyDefinition";
|
|
357
|
+
const _PE = "PolicyEngine";
|
|
358
|
+
const _PEo = "PolicyEngines";
|
|
359
|
+
const _PG = "PolicyGeneration";
|
|
360
|
+
const _PGA = "PolicyGenerationAsset";
|
|
361
|
+
const _PGAo = "PolicyGenerationAssets";
|
|
362
|
+
const _PGo = "PolicyGenerations";
|
|
363
|
+
const _PRP = "PutResourcePolicy";
|
|
364
|
+
const _PRPR = "PutResourcePolicyRequest";
|
|
365
|
+
const _PRPRu = "PutResourcePolicyResponse";
|
|
366
|
+
const _Po = "Policy";
|
|
367
|
+
const _Pol = "Policies";
|
|
368
|
+
const _R = "Rule";
|
|
240
369
|
const _RC = "RecordingConfig";
|
|
370
|
+
const _RCe = "ReflectionConfiguration";
|
|
241
371
|
const _RHC = "RequestHeaderConfiguration";
|
|
242
372
|
const _RLEE = "ResourceLimitExceededException";
|
|
243
373
|
const _RNFE = "ResourceNotFoundException";
|
|
374
|
+
const _RS = "RatingScale";
|
|
375
|
+
const _Re = "Resource";
|
|
244
376
|
const _S = "Secret";
|
|
245
377
|
const _SC = "S3Configuration";
|
|
246
378
|
const _SCO = "SemanticConsolidationOverride";
|
|
247
379
|
const _SCOu = "SummaryConsolidationOverride";
|
|
380
|
+
const _SCa = "SamplingConfig";
|
|
381
|
+
const _SCe = "SessionConfig";
|
|
248
382
|
const _SCt = "StrategyConfiguration";
|
|
249
383
|
const _SD = "SchemaDefinition";
|
|
250
384
|
const _SE = "ServiceException";
|
|
@@ -267,6 +401,9 @@ const _SOPCIl = "SlackOauth2ProviderConfigInput";
|
|
|
267
401
|
const _SOPCO = "SalesforceOauth2ProviderConfigOutput";
|
|
268
402
|
const _SOPCOl = "SlackOauth2ProviderConfigOutput";
|
|
269
403
|
const _SP = "SchemaProperties";
|
|
404
|
+
const _SPG = "StartPolicyGeneration";
|
|
405
|
+
const _SPGR = "StartPolicyGenerationRequest";
|
|
406
|
+
const _SPGRt = "StartPolicyGenerationResponse";
|
|
270
407
|
const _SQEE = "ServiceQuotaExceededException";
|
|
271
408
|
const _STVCMK = "SetTokenVaultCMK";
|
|
272
409
|
const _STVCMKR = "SetTokenVaultCMKRequest";
|
|
@@ -302,6 +439,9 @@ const _UARERp = "UpdateAgentRuntimeEndpointResponse";
|
|
|
302
439
|
const _UARR = "UpdateAgentRuntimeRequest";
|
|
303
440
|
const _UARRp = "UpdateAgentRuntimeResponse";
|
|
304
441
|
const _UE = "UnauthorizedException";
|
|
442
|
+
const _UER = "UpdateEvaluatorRequest";
|
|
443
|
+
const _UERp = "UpdateEvaluatorResponse";
|
|
444
|
+
const _UEp = "UpdateEvaluator";
|
|
305
445
|
const _UG = "UpdateGateway";
|
|
306
446
|
const _UGR = "UpdateGatewayRequest";
|
|
307
447
|
const _UGRp = "UpdateGatewayResponse";
|
|
@@ -314,12 +454,21 @@ const _UMO = "UpdateMemoryOutput";
|
|
|
314
454
|
const _UOCP = "UpdateOauth2CredentialProvider";
|
|
315
455
|
const _UOCPR = "UpdateOauth2CredentialProviderRequest";
|
|
316
456
|
const _UOCPRp = "UpdateOauth2CredentialProviderResponse";
|
|
457
|
+
const _UOEC = "UpdateOnlineEvaluationConfig";
|
|
458
|
+
const _UOECR = "UpdateOnlineEvaluationConfigRequest";
|
|
459
|
+
const _UOECRp = "UpdateOnlineEvaluationConfigResponse";
|
|
460
|
+
const _UP = "UpdatePolicy";
|
|
317
461
|
const _UPCO = "UserPreferenceConsolidationOverride";
|
|
462
|
+
const _UPE = "UpdatePolicyEngine";
|
|
318
463
|
const _UPEO = "UserPreferenceExtractionOverride";
|
|
464
|
+
const _UPER = "UpdatePolicyEngineRequest";
|
|
465
|
+
const _UPERp = "UpdatePolicyEngineResponse";
|
|
319
466
|
const _UPMSI = "UserPreferenceMemoryStrategyInput";
|
|
320
467
|
const _UPOCCI = "UserPreferenceOverrideConsolidationConfigurationInput";
|
|
321
468
|
const _UPOCI = "UserPreferenceOverrideConfigurationInput";
|
|
322
469
|
const _UPOECI = "UserPreferenceOverrideExtractionConfigurationInput";
|
|
470
|
+
const _UPR = "UpdatePolicyRequest";
|
|
471
|
+
const _UPRp = "UpdatePolicyResponse";
|
|
323
472
|
const _UR = "UntagResource";
|
|
324
473
|
const _URR = "UntagResourceRequest";
|
|
325
474
|
const _URRn = "UntagResourceResponse";
|
|
@@ -336,11 +485,15 @@ const _WIT = "WorkloadIdentityType";
|
|
|
336
485
|
const _a = "arn";
|
|
337
486
|
const _aA = "allowedAudience";
|
|
338
487
|
const _aC = "authorizerConfiguration";
|
|
488
|
+
const _aCMV = "authorizingClaimMatchValue";
|
|
339
489
|
const _aCl = "allowedClients";
|
|
340
490
|
const _aE = "authorizationEndpoint";
|
|
491
|
+
const _aG = "apiGateway";
|
|
492
|
+
const _aGTC = "apiGatewayToolConfiguration";
|
|
341
493
|
const _aK = "apiKey";
|
|
342
494
|
const _aKCP = "apiKeyCredentialProvider";
|
|
343
495
|
const _aKSA = "apiKeySecretArn";
|
|
496
|
+
const _aMRF = "additionalModelRequestFields";
|
|
344
497
|
const _aMS = "addMemoryStrategies";
|
|
345
498
|
const _aOPC = "atlassianOauth2ProviderConfig";
|
|
346
499
|
const _aR = "agentRuntimes";
|
|
@@ -351,20 +504,24 @@ const _aRI = "agentRuntimeId";
|
|
|
351
504
|
const _aRN = "agentRuntimeName";
|
|
352
505
|
const _aRORU = "allowedResourceOauth2ReturnUrls";
|
|
353
506
|
const _aRV = "agentRuntimeVersion";
|
|
507
|
+
const _aS = "allowedScopes";
|
|
354
508
|
const _aSM = "authorizationServerMetadata";
|
|
355
509
|
const _aT = "authorizerType";
|
|
356
510
|
const _aTP = "appendToPrompt";
|
|
357
511
|
const _b = "bucket";
|
|
358
512
|
const _bA = "browserArn";
|
|
513
|
+
const _bEMC = "bedrockEvaluatorModelConfig";
|
|
359
514
|
const _bI = "browserId";
|
|
360
515
|
const _bOAI = "bucketOwnerAccountId";
|
|
361
516
|
const _bS = "browserSigning";
|
|
362
517
|
const _bSr = "browserSummaries";
|
|
518
|
+
const _bV = "booleanValue";
|
|
363
519
|
const _c = "client";
|
|
364
520
|
const _cA = "createdAt";
|
|
365
|
-
const _cC = "
|
|
521
|
+
const _cC = "customClaims";
|
|
366
522
|
const _cCC = "customConsolidationConfiguration";
|
|
367
|
-
const _cCo = "
|
|
523
|
+
const _cCo = "containerConfiguration";
|
|
524
|
+
const _cCod = "codeConfiguration";
|
|
368
525
|
const _cEC = "customExtractionConfiguration";
|
|
369
526
|
const _cI = "clientId";
|
|
370
527
|
const _cIA = "codeInterpreterArn";
|
|
@@ -372,7 +529,9 @@ const _cII = "codeInterpreterId";
|
|
|
372
529
|
const _cIS = "codeInterpreterSummaries";
|
|
373
530
|
const _cJWTA = "customJWTAuthorizer";
|
|
374
531
|
const _cL = "credentialLocation";
|
|
532
|
+
const _cMO = "claimMatchOperator";
|
|
375
533
|
const _cMS = "customMemoryStrategy";
|
|
534
|
+
const _cMV = "claimMatchValue";
|
|
376
535
|
const _cOPC = "customOauth2ProviderConfig";
|
|
377
536
|
const _cP = "credentialProvider";
|
|
378
537
|
const _cPA = "credentialProviderArn";
|
|
@@ -383,44 +542,74 @@ const _cPV = "credentialProviderVendor";
|
|
|
383
542
|
const _cPr = "credentialPrefix";
|
|
384
543
|
const _cPre = "credentialProviders";
|
|
385
544
|
const _cPu = "customParameters";
|
|
545
|
+
const _cRC = "customReflectionConfiguration";
|
|
386
546
|
const _cS = "clientSecret";
|
|
387
547
|
const _cSA = "clientSecretArn";
|
|
388
548
|
const _cT = "createdTime";
|
|
389
549
|
const _cTl = "clientToken";
|
|
390
550
|
const _cU = "containerUri";
|
|
391
551
|
const _cUa = "callbackUrl";
|
|
552
|
+
const _cWC = "cloudWatchConfig";
|
|
553
|
+
const _cWL = "cloudWatchLogs";
|
|
554
|
+
const _ca = "categorical";
|
|
555
|
+
const _ce = "cedar";
|
|
392
556
|
const _co = "code";
|
|
393
557
|
const _con = "configuration";
|
|
394
558
|
const _cons = "consolidation";
|
|
559
|
+
const _cont = "content";
|
|
395
560
|
const _d = "description";
|
|
396
561
|
const _dMS = "deleteMemoryStrategies";
|
|
562
|
+
const _dRU = "defaultReturnUrl";
|
|
563
|
+
const _dSC = "dataSourceConfig";
|
|
397
564
|
const _dU = "discoveryUrl";
|
|
565
|
+
const _dV = "doubleValue";
|
|
566
|
+
const _de = "definition";
|
|
398
567
|
const _e = "error";
|
|
568
|
+
const _eA = "evaluatorArn";
|
|
569
|
+
const _eC = "evaluatorConfig";
|
|
570
|
+
const _eCO = "episodicConsolidationOverride";
|
|
399
571
|
const _eED = "eventExpiryDuration";
|
|
572
|
+
const _eEO = "episodicExtractionOverride";
|
|
573
|
+
const _eERA = "evaluationExecutionRoleArn";
|
|
574
|
+
const _eI = "evaluatorId";
|
|
400
575
|
const _eKA = "encryptionKeyArn";
|
|
401
576
|
const _eL = "exceptionLevel";
|
|
577
|
+
const _eMS = "episodicMemoryStrategy";
|
|
402
578
|
const _eN = "endpointName";
|
|
579
|
+
const _eNv = "evaluatorName";
|
|
580
|
+
const _eO = "episodicOverride";
|
|
581
|
+
const _eOC = "enableOnCreate";
|
|
403
582
|
const _eP = "entryPoint";
|
|
404
583
|
const _eRA = "executionRoleArn";
|
|
584
|
+
const _eRC = "episodicReflectionConfiguration";
|
|
585
|
+
const _eRO = "episodicReflectionOverride";
|
|
586
|
+
const _eS = "executionStatus";
|
|
587
|
+
const _eT = "evaluatorType";
|
|
405
588
|
const _eV = "environmentVariables";
|
|
406
589
|
const _en = "enabled";
|
|
407
590
|
const _end = "endpoint";
|
|
591
|
+
const _ev = "evaluators";
|
|
408
592
|
const _ex = "extraction";
|
|
593
|
+
const _f = "findings";
|
|
409
594
|
const _fL = "fieldList";
|
|
595
|
+
const _fP = "filterPath";
|
|
410
596
|
const _fR = "failureReason";
|
|
597
|
+
const _fi = "filters";
|
|
411
598
|
const _gA = "gatewayArn";
|
|
412
599
|
const _gI = "gatewayId";
|
|
413
600
|
const _gIa = "gatewayIdentifier";
|
|
414
601
|
const _gOPC = "googleOauth2ProviderConfig";
|
|
415
602
|
const _gOPCi = "githubOauth2ProviderConfig";
|
|
603
|
+
const _gT = "grantType";
|
|
416
604
|
const _gU = "gatewayUrl";
|
|
417
605
|
const _h = "http";
|
|
418
606
|
const _hCWS = "historicalContextWindowSize";
|
|
419
607
|
const _hE = "httpError";
|
|
420
608
|
const _hQ = "httpQuery";
|
|
421
609
|
const _i = "id";
|
|
422
|
-
const _iC = "
|
|
423
|
-
const _iCn = "
|
|
610
|
+
const _iC = "inferenceConfig";
|
|
611
|
+
const _iCn = "interceptorConfigurations";
|
|
612
|
+
const _iCnp = "inputConfiguration";
|
|
424
613
|
const _iCnv = "invocationConfiguration";
|
|
425
614
|
const _iOPC = "includedOauth2ProviderConfig";
|
|
426
615
|
const _iP = "interceptionPoints";
|
|
@@ -429,28 +618,38 @@ const _iRST = "idleRuntimeSessionTimeout";
|
|
|
429
618
|
const _iS = "inputSchema";
|
|
430
619
|
const _iST = "idleSessionTimeout";
|
|
431
620
|
const _iT = "idempotencyToken";
|
|
621
|
+
const _iTCN = "inboundTokenClaimName";
|
|
622
|
+
const _iTCVT = "inboundTokenClaimValueType";
|
|
432
623
|
const _in = "interceptor";
|
|
433
624
|
const _ins = "instructions";
|
|
434
625
|
const _is = "issuer";
|
|
435
626
|
const _it = "items";
|
|
627
|
+
const _k = "key";
|
|
436
628
|
const _kC = "kmsConfiguration";
|
|
437
629
|
const _kKA = "kmsKeyArn";
|
|
438
630
|
const _kT = "keyType";
|
|
439
|
-
const _l = "
|
|
631
|
+
const _l = "label";
|
|
440
632
|
const _lA = "lambdaArn";
|
|
633
|
+
const _lAAJ = "llmAsAJudge";
|
|
441
634
|
const _lC = "lifecycleConfiguration";
|
|
635
|
+
const _lFM = "lockedForModification";
|
|
636
|
+
const _lGN = "logGroupNames";
|
|
637
|
+
const _lGNo = "logGroupName";
|
|
442
638
|
const _lMD = "lastModifiedDate";
|
|
443
639
|
const _lOPC = "linkedinOauth2ProviderConfig";
|
|
444
640
|
const _lSA = "lastSynchronizedAt";
|
|
445
641
|
const _lUA = "lastUpdatedAt";
|
|
446
642
|
const _lUT = "lastUpdatedTime";
|
|
447
643
|
const _lV = "liveVersion";
|
|
644
|
+
const _la = "lambda";
|
|
645
|
+
const _le = "level";
|
|
448
646
|
const _m = "message";
|
|
449
647
|
const _mBT = "messageBasedTrigger";
|
|
450
|
-
const _mC = "
|
|
648
|
+
const _mC = "modelConfig";
|
|
649
|
+
const _mCe = "messageCount";
|
|
451
650
|
const _mERA = "memoryExecutionRoleArn";
|
|
452
|
-
const _mI = "
|
|
453
|
-
const
|
|
651
|
+
const _mI = "modelId";
|
|
652
|
+
const _mIe = "memoryId";
|
|
454
653
|
const _mL = "maxLifetime";
|
|
455
654
|
const _mMS = "modifyMemoryStrategies";
|
|
456
655
|
const _mOPC = "microsoftOauth2ProviderConfig";
|
|
@@ -458,42 +657,79 @@ const _mR = "maxResults";
|
|
|
458
657
|
const _mS = "memoryStrategies";
|
|
459
658
|
const _mSI = "memoryStrategyId";
|
|
460
659
|
const _mSc = "mcpServer";
|
|
660
|
+
const _mT = "maxTokens";
|
|
661
|
+
const _mVS = "matchValueString";
|
|
662
|
+
const _mVSL = "matchValueStringList";
|
|
461
663
|
const _mc = "mcp";
|
|
462
|
-
const _me = "
|
|
463
|
-
const _mem = "
|
|
664
|
+
const _me = "methods";
|
|
665
|
+
const _mem = "memory";
|
|
666
|
+
const _memo = "memories";
|
|
667
|
+
const _met = "method";
|
|
668
|
+
const _mo = "mode";
|
|
464
669
|
const _n = "name";
|
|
465
670
|
const _nC = "networkConfiguration";
|
|
466
671
|
const _nM = "networkMode";
|
|
467
672
|
const _nMC = "networkModeConfig";
|
|
468
673
|
const _nT = "nextToken";
|
|
469
674
|
const _na = "namespaces";
|
|
675
|
+
const _nu = "numerical";
|
|
676
|
+
const _o = "operator";
|
|
470
677
|
const _oAS = "openApiSchema";
|
|
678
|
+
const _oC = "outputConfig";
|
|
471
679
|
const _oCP = "oauthCredentialProvider";
|
|
472
680
|
const _oD = "oauthDiscovery";
|
|
681
|
+
const _oEC = "onlineEvaluationConfigs";
|
|
682
|
+
const _oECA = "onlineEvaluationConfigArn";
|
|
683
|
+
const _oECI = "onlineEvaluationConfigId";
|
|
684
|
+
const _oECN = "onlineEvaluationConfigName";
|
|
473
685
|
const _oPCI = "oauth2ProviderConfigInput";
|
|
474
686
|
const _oPCO = "oauth2ProviderConfigOutput";
|
|
475
687
|
const _oS = "outputSchema";
|
|
476
|
-
const _p = "
|
|
477
|
-
const _pA = "
|
|
688
|
+
const _p = "path";
|
|
689
|
+
const _pA = "policyArn";
|
|
690
|
+
const _pAr = "providerArn";
|
|
478
691
|
const _pC = "protocolConfiguration";
|
|
479
692
|
const _pDBN = "payloadDeliveryBucketName";
|
|
693
|
+
const _pE = "policyEngines";
|
|
694
|
+
const _pEA = "policyEngineArn";
|
|
695
|
+
const _pEC = "policyEngineConfiguration";
|
|
696
|
+
const _pEI = "policyEngineId";
|
|
697
|
+
const _pG = "policyGenerations";
|
|
698
|
+
const _pGA = "policyGenerationArn";
|
|
699
|
+
const _pGAI = "policyGenerationAssetId";
|
|
700
|
+
const _pGAo = "policyGenerationAssets";
|
|
701
|
+
const _pGI = "policyGenerationId";
|
|
702
|
+
const _pI = "policyId";
|
|
480
703
|
const _pRH = "passRequestHeaders";
|
|
481
704
|
const _pT = "protocolType";
|
|
482
|
-
const
|
|
705
|
+
const _po = "policy";
|
|
706
|
+
const _pol = "policies";
|
|
707
|
+
const _pr = "prefix";
|
|
708
|
+
const _pro = "properties";
|
|
483
709
|
const _r = "runtime";
|
|
484
710
|
const _rA = "roleArn";
|
|
711
|
+
const _rAI = "restApiId";
|
|
485
712
|
const _rAe = "resourceArn";
|
|
713
|
+
const _rC = "reflectionConfiguration";
|
|
486
714
|
const _rE = "runtimeEndpoints";
|
|
487
715
|
const _rHA = "requestHeaderAllowlist";
|
|
488
716
|
const _rHC = "requestHeaderConfiguration";
|
|
717
|
+
const _rS = "ratingScale";
|
|
489
718
|
const _rT = "responseTypes";
|
|
719
|
+
const _rTF = "rawTextFragment";
|
|
720
|
+
const _rTa = "rawText";
|
|
490
721
|
const _re = "recording";
|
|
491
722
|
const _rea = "reason";
|
|
723
|
+
const _ref = "reflection";
|
|
492
724
|
const _req = "required";
|
|
725
|
+
const _res = "resource";
|
|
726
|
+
const _ru = "rule";
|
|
493
727
|
const _s = "status";
|
|
494
728
|
const _sA = "secretArn";
|
|
729
|
+
const _sC = "samplingConfig";
|
|
495
730
|
const _sCO = "semanticConsolidationOverride";
|
|
496
731
|
const _sCOu = "summaryConsolidationOverride";
|
|
732
|
+
const _sCe = "sessionConfig";
|
|
497
733
|
const _sEO = "semanticExtractionOverride";
|
|
498
734
|
const _sG = "securityGroups";
|
|
499
735
|
const _sI = "strategyId";
|
|
@@ -502,19 +738,26 @@ const _sM = "smithyModel";
|
|
|
502
738
|
const _sMC = "selfManagedConfiguration";
|
|
503
739
|
const _sMS = "semanticMemoryStrategy";
|
|
504
740
|
const _sMSu = "summaryMemoryStrategy";
|
|
741
|
+
const _sN = "serviceNames";
|
|
505
742
|
const _sO = "semanticOverride";
|
|
506
743
|
const _sOPC = "slackOauth2ProviderConfig";
|
|
507
744
|
const _sOPCa = "salesforceOauth2ProviderConfig";
|
|
508
745
|
const _sOu = "summaryOverride";
|
|
509
746
|
const _sP = "serverProtocol";
|
|
747
|
+
const _sPa = "samplingPercentage";
|
|
510
748
|
const _sR = "statusReasons";
|
|
749
|
+
const _sS = "stopSequences";
|
|
511
750
|
const _sT = "searchType";
|
|
751
|
+
const _sTM = "sessionTimeoutMinutes";
|
|
512
752
|
const _sV = "supportedVersions";
|
|
753
|
+
const _sVt = "stringValue";
|
|
513
754
|
const _s_ = "s3";
|
|
514
755
|
const _sc = "scopes";
|
|
515
756
|
const _se = "server";
|
|
516
757
|
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.bedrockagentcorecontrol";
|
|
517
|
-
const _st = "
|
|
758
|
+
const _st = "stage";
|
|
759
|
+
const _sta = "statement";
|
|
760
|
+
const _str = "strategies";
|
|
518
761
|
const _su = "subnets";
|
|
519
762
|
const _t = "tags";
|
|
520
763
|
const _tA = "topicArn";
|
|
@@ -525,14 +768,19 @@ const _tCo = "tokenCount";
|
|
|
525
768
|
const _tCr = "triggerConditions";
|
|
526
769
|
const _tE = "tokenEndpoint";
|
|
527
770
|
const _tEAM = "tokenEndpointAuthMethods";
|
|
771
|
+
const _tF = "toolFilters";
|
|
528
772
|
const _tI = "targetId";
|
|
529
773
|
const _tIL = "targetIdList";
|
|
530
774
|
const _tIe = "tenantId";
|
|
531
775
|
const _tK = "tagKeys";
|
|
776
|
+
const _tO = "toolOverrides";
|
|
777
|
+
const _tP = "topP";
|
|
778
|
+
const _tRS = "targetResourceScope";
|
|
532
779
|
const _tS = "toolSchema";
|
|
533
780
|
const _tV = "targetVersion";
|
|
534
781
|
const _tVI = "tokenVaultId";
|
|
535
782
|
const _ta = "targets";
|
|
783
|
+
const _te = "temperature";
|
|
536
784
|
const _ty = "type";
|
|
537
785
|
const _u = "uri";
|
|
538
786
|
const _uA = "updatedAt";
|
|
@@ -540,9 +788,11 @@ const _uPCO = "userPreferenceConsolidationOverride";
|
|
|
540
788
|
const _uPEO = "userPreferenceExtractionOverride";
|
|
541
789
|
const _uPMS = "userPreferenceMemoryStrategy";
|
|
542
790
|
const _uPO = "userPreferenceOverride";
|
|
543
|
-
const _v = "
|
|
791
|
+
const _v = "value";
|
|
544
792
|
const _vC = "vpcConfig";
|
|
545
793
|
const _vI = "versionId";
|
|
794
|
+
const _vM = "validationMode";
|
|
795
|
+
const _ve = "version";
|
|
546
796
|
const _wI = "workloadIdentities";
|
|
547
797
|
const _wIA = "workloadIdentityArn";
|
|
548
798
|
const _wID = "workloadIdentityDetails";
|
|
@@ -554,6 +804,9 @@ export var ApiKeyType = [0, n0, _AKT, 8, 0];
|
|
|
554
804
|
export var ClientSecretType = [0, n0, _CST, 8, 0];
|
|
555
805
|
export var Description = [0, n0, _D, 8, 0];
|
|
556
806
|
export var EndpointName = [0, n0, _EN, 8, 0];
|
|
807
|
+
export var EvaluationConfigDescription = [0, n0, _ECD, 8, 0];
|
|
808
|
+
export var EvaluatorDescription = [0, n0, _ED, 8, 0];
|
|
809
|
+
export var EvaluatorInstructions = [0, n0, _EI, 8, 0];
|
|
557
810
|
export var GatewayDescription = [0, n0, _GD, 8, 0];
|
|
558
811
|
export var GatewayName = [0, n0, _GN, 8, 0];
|
|
559
812
|
export var InlinePayload = [0, n0, _IP, 8, 0];
|
|
@@ -589,6 +842,24 @@ export var AgentRuntimeEndpoint = [
|
|
|
589
842
|
[_n, _lV, _tV, _aREA, _aRA, _s, _i, _d, _cA, _lUA],
|
|
590
843
|
[[() => EndpointName, 0], 0, 0, 0, 0, 0, 0, 0, 5, 5],
|
|
591
844
|
];
|
|
845
|
+
export var ApiGatewayTargetConfiguration = [
|
|
846
|
+
3,
|
|
847
|
+
n0,
|
|
848
|
+
_AGTC,
|
|
849
|
+
0,
|
|
850
|
+
[_rAI, _st, _aGTC],
|
|
851
|
+
[0, 0, () => ApiGatewayToolConfiguration],
|
|
852
|
+
];
|
|
853
|
+
export var ApiGatewayToolConfiguration = [
|
|
854
|
+
3,
|
|
855
|
+
n0,
|
|
856
|
+
_AGTCp,
|
|
857
|
+
0,
|
|
858
|
+
[_tO, _tF],
|
|
859
|
+
[() => ApiGatewayToolOverrides, () => ApiGatewayToolFilters],
|
|
860
|
+
];
|
|
861
|
+
export var ApiGatewayToolFilter = [3, n0, _AGTF, 0, [_fP, _me], [0, 64 | 0]];
|
|
862
|
+
export var ApiGatewayToolOverride = [3, n0, _AGTO, 0, [_n, _d, _p, _met], [0, 0, 0, 0]];
|
|
592
863
|
export var ApiKeyCredentialProviderItem = [
|
|
593
864
|
3,
|
|
594
865
|
n0,
|
|
@@ -613,6 +884,22 @@ export var AtlassianOauth2ProviderConfigOutput = [
|
|
|
613
884
|
[_oD, _cI],
|
|
614
885
|
[() => Oauth2Discovery, 0],
|
|
615
886
|
];
|
|
887
|
+
export var AuthorizingClaimMatchValueType = [
|
|
888
|
+
3,
|
|
889
|
+
n0,
|
|
890
|
+
_ACMVT,
|
|
891
|
+
0,
|
|
892
|
+
[_cMV, _cMO],
|
|
893
|
+
[() => ClaimMatchValueType, 0],
|
|
894
|
+
];
|
|
895
|
+
export var BedrockEvaluatorModelConfig = [
|
|
896
|
+
3,
|
|
897
|
+
n0,
|
|
898
|
+
_BEMC,
|
|
899
|
+
0,
|
|
900
|
+
[_mI, _iC, _aMRF],
|
|
901
|
+
[0, () => InferenceConfiguration, 15],
|
|
902
|
+
];
|
|
616
903
|
export var BrowserNetworkConfiguration = [3, n0, _BNC, 0, [_nM, _vC], [0, () => VpcConfig]];
|
|
617
904
|
export var BrowserSigningConfigInput = [3, n0, _BSCI, 0, [_en], [2]];
|
|
618
905
|
export var BrowserSigningConfigOutput = [3, n0, _BSCO, 0, [_en], [2]];
|
|
@@ -624,6 +911,10 @@ export var BrowserSummary = [
|
|
|
624
911
|
[_bI, _bA, _n, _d, _s, _cA, _lUA],
|
|
625
912
|
[0, 0, 0, [() => Description, 0], 0, 5, 5],
|
|
626
913
|
];
|
|
914
|
+
export var CategoricalScaleDefinition = [3, n0, _CSD, 0, [_de, _l], [0, 0]];
|
|
915
|
+
export var CedarPolicy = [3, n0, _CP, 0, [_sta], [0]];
|
|
916
|
+
export var CloudWatchLogsInputConfig = [3, n0, _CWLIC, 0, [_lGN, _sN], [64 | 0, 64 | 0]];
|
|
917
|
+
export var CloudWatchOutputConfig = [3, n0, _CWOC, 0, [_lGNo], [0]];
|
|
627
918
|
export var CodeConfiguration = [3, n0, _CC, 0, [_co, _r, _eP], [() => Code, 0, 64 | 0]];
|
|
628
919
|
export var CodeInterpreterNetworkConfiguration = [
|
|
629
920
|
3,
|
|
@@ -761,12 +1052,21 @@ export var CreateCodeInterpreterResponse = [
|
|
|
761
1052
|
[_cII, _cIA, _cA, _s],
|
|
762
1053
|
[0, 0, 5, 0],
|
|
763
1054
|
];
|
|
1055
|
+
export var CreateEvaluatorRequest = [
|
|
1056
|
+
3,
|
|
1057
|
+
n0,
|
|
1058
|
+
_CER,
|
|
1059
|
+
0,
|
|
1060
|
+
[_cTl, _eNv, _d, _eC, _le],
|
|
1061
|
+
[[0, 4], 0, [() => EvaluatorDescription, 0], [() => EvaluatorConfig, 0], 0],
|
|
1062
|
+
];
|
|
1063
|
+
export var CreateEvaluatorResponse = [3, n0, _CERr, 0, [_eA, _eI, _cA, _s], [0, 0, 4, 0]];
|
|
764
1064
|
export var CreateGatewayRequest = [
|
|
765
1065
|
3,
|
|
766
1066
|
n0,
|
|
767
1067
|
_CGR,
|
|
768
1068
|
0,
|
|
769
|
-
[_n, _d, _cTl, _rA, _pT, _pC, _aT, _aC, _kKA,
|
|
1069
|
+
[_n, _d, _cTl, _rA, _pT, _pC, _aT, _aC, _kKA, _iCn, _pEC, _eL, _t],
|
|
770
1070
|
[
|
|
771
1071
|
[() => GatewayName, 0],
|
|
772
1072
|
[() => GatewayDescription, 0],
|
|
@@ -778,6 +1078,7 @@ export var CreateGatewayRequest = [
|
|
|
778
1078
|
() => AuthorizerConfiguration,
|
|
779
1079
|
0,
|
|
780
1080
|
() => GatewayInterceptorConfigurations,
|
|
1081
|
+
() => GatewayPolicyEngineConfiguration,
|
|
781
1082
|
0,
|
|
782
1083
|
128 | 0,
|
|
783
1084
|
],
|
|
@@ -787,7 +1088,7 @@ export var CreateGatewayResponse = [
|
|
|
787
1088
|
n0,
|
|
788
1089
|
_CGRr,
|
|
789
1090
|
0,
|
|
790
|
-
[_gA, _gI, _gU, _cA, _uA, _s, _sR, _n, _d, _rA, _pT, _pC, _aT, _aC, _kKA,
|
|
1091
|
+
[_gA, _gI, _gU, _cA, _uA, _s, _sR, _n, _d, _rA, _pT, _pC, _aT, _aC, _kKA, _iCn, _pEC, _wID, _eL],
|
|
791
1092
|
[
|
|
792
1093
|
0,
|
|
793
1094
|
0,
|
|
@@ -805,6 +1106,7 @@ export var CreateGatewayResponse = [
|
|
|
805
1106
|
() => AuthorizerConfiguration,
|
|
806
1107
|
0,
|
|
807
1108
|
() => GatewayInterceptorConfigurations,
|
|
1109
|
+
() => GatewayPolicyEngineConfiguration,
|
|
808
1110
|
() => WorkloadIdentityDetails,
|
|
809
1111
|
0,
|
|
810
1112
|
],
|
|
@@ -852,7 +1154,7 @@ export var CreateMemoryInput = [
|
|
|
852
1154
|
[_cTl, _n, _d, _eKA, _mERA, _eED, _mS, _t],
|
|
853
1155
|
[[0, 4], 0, [() => Description, 0], 0, 0, 1, [() => MemoryStrategyInputList, 0], 128 | 0],
|
|
854
1156
|
];
|
|
855
|
-
export var CreateMemoryOutput = [3, n0, _CMO, 0, [
|
|
1157
|
+
export var CreateMemoryOutput = [3, n0, _CMO, 0, [_mem], [[() => Memory, 0]]];
|
|
856
1158
|
export var CreateOauth2CredentialProviderRequest = [
|
|
857
1159
|
3,
|
|
858
1160
|
n0,
|
|
@@ -869,6 +1171,54 @@ export var CreateOauth2CredentialProviderResponse = [
|
|
|
869
1171
|
[_cSA, _n, _cPA, _cUa, _oPCO],
|
|
870
1172
|
[() => Secret, 0, 0, 0, () => Oauth2ProviderConfigOutput],
|
|
871
1173
|
];
|
|
1174
|
+
export var CreateOnlineEvaluationConfigRequest = [
|
|
1175
|
+
3,
|
|
1176
|
+
n0,
|
|
1177
|
+
_COECR,
|
|
1178
|
+
0,
|
|
1179
|
+
[_cTl, _oECN, _d, _ru, _dSC, _ev, _eERA, _eOC],
|
|
1180
|
+
[[0, 4], 0, [() => EvaluationConfigDescription, 0], () => Rule, () => DataSourceConfig, () => EvaluatorList, 0, 2],
|
|
1181
|
+
];
|
|
1182
|
+
export var CreateOnlineEvaluationConfigResponse = [
|
|
1183
|
+
3,
|
|
1184
|
+
n0,
|
|
1185
|
+
_COECRr,
|
|
1186
|
+
0,
|
|
1187
|
+
[_oECA, _oECI, _cA, _oC, _s, _eS, _fR],
|
|
1188
|
+
[0, 0, 4, () => OutputConfig, 0, 0, 0],
|
|
1189
|
+
];
|
|
1190
|
+
export var CreatePolicyEngineRequest = [
|
|
1191
|
+
3,
|
|
1192
|
+
n0,
|
|
1193
|
+
_CPER,
|
|
1194
|
+
0,
|
|
1195
|
+
[_n, _d, _cTl],
|
|
1196
|
+
[0, [() => Description, 0], [0, 4]],
|
|
1197
|
+
];
|
|
1198
|
+
export var CreatePolicyEngineResponse = [
|
|
1199
|
+
3,
|
|
1200
|
+
n0,
|
|
1201
|
+
_CPERr,
|
|
1202
|
+
0,
|
|
1203
|
+
[_pEI, _n, _d, _cA, _uA, _pEA, _s, _sR],
|
|
1204
|
+
[0, 0, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
|
|
1205
|
+
];
|
|
1206
|
+
export var CreatePolicyRequest = [
|
|
1207
|
+
3,
|
|
1208
|
+
n0,
|
|
1209
|
+
_CPR,
|
|
1210
|
+
0,
|
|
1211
|
+
[_n, _de, _d, _vM, _pEI, _cTl],
|
|
1212
|
+
[0, () => PolicyDefinition, [() => Description, 0], 0, [0, 1], [0, 4]],
|
|
1213
|
+
];
|
|
1214
|
+
export var CreatePolicyResponse = [
|
|
1215
|
+
3,
|
|
1216
|
+
n0,
|
|
1217
|
+
_CPRr,
|
|
1218
|
+
0,
|
|
1219
|
+
[_pI, _n, _pEI, _de, _d, _cA, _uA, _pA, _s, _sR],
|
|
1220
|
+
[0, 0, 0, () => PolicyDefinition, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
|
|
1221
|
+
];
|
|
872
1222
|
export var CreateWorkloadIdentityRequest = [
|
|
873
1223
|
3,
|
|
874
1224
|
n0,
|
|
@@ -893,13 +1243,21 @@ export var CredentialProviderConfiguration = [
|
|
|
893
1243
|
[_cPT, _cP],
|
|
894
1244
|
[0, [() => CredentialProvider, 0]],
|
|
895
1245
|
];
|
|
1246
|
+
export var CustomClaimValidationType = [
|
|
1247
|
+
3,
|
|
1248
|
+
n0,
|
|
1249
|
+
_CCVT,
|
|
1250
|
+
0,
|
|
1251
|
+
[_iTCN, _iTCVT, _aCMV],
|
|
1252
|
+
[0, 0, () => AuthorizingClaimMatchValueType],
|
|
1253
|
+
];
|
|
896
1254
|
export var CustomJWTAuthorizerConfiguration = [
|
|
897
1255
|
3,
|
|
898
1256
|
n0,
|
|
899
1257
|
_CJWTAC,
|
|
900
1258
|
0,
|
|
901
|
-
[_dU, _aA, _aCl],
|
|
902
|
-
[0, 64 | 0, 64 | 0],
|
|
1259
|
+
[_dU, _aA, _aCl, _aS, _cC],
|
|
1260
|
+
[0, 64 | 0, 64 | 0, 64 | 0, () => CustomClaimValidationsType],
|
|
903
1261
|
];
|
|
904
1262
|
export var CustomMemoryStrategyInput = [
|
|
905
1263
|
3,
|
|
@@ -1019,6 +1377,8 @@ export var DeleteCodeInterpreterRequest = [
|
|
|
1019
1377
|
],
|
|
1020
1378
|
];
|
|
1021
1379
|
export var DeleteCodeInterpreterResponse = [3, n0, _DCIRe, 0, [_cII, _s, _lUA], [0, 0, 5]];
|
|
1380
|
+
export var DeleteEvaluatorRequest = [3, n0, _DER, 0, [_eI], [[0, 1]]];
|
|
1381
|
+
export var DeleteEvaluatorResponse = [3, n0, _DERe, 0, [_eA, _eI, _s], [0, 0, 0]];
|
|
1022
1382
|
export var DeleteGatewayRequest = [3, n0, _DGR, 0, [_gIa], [[0, 1]]];
|
|
1023
1383
|
export var DeleteGatewayResponse = [3, n0, _DGRe, 0, [_gI, _s, _sR], [0, 0, 64 | 0]];
|
|
1024
1384
|
export var DeleteGatewayTargetRequest = [
|
|
@@ -1045,7 +1405,7 @@ export var DeleteMemoryInput = [
|
|
|
1045
1405
|
n0,
|
|
1046
1406
|
_DMI,
|
|
1047
1407
|
0,
|
|
1048
|
-
[_cTl,
|
|
1408
|
+
[_cTl, _mIe],
|
|
1049
1409
|
[
|
|
1050
1410
|
[
|
|
1051
1411
|
0,
|
|
@@ -1057,10 +1417,49 @@ export var DeleteMemoryInput = [
|
|
|
1057
1417
|
[0, 1],
|
|
1058
1418
|
],
|
|
1059
1419
|
];
|
|
1060
|
-
export var DeleteMemoryOutput = [3, n0, _DMO, 0, [
|
|
1420
|
+
export var DeleteMemoryOutput = [3, n0, _DMO, 0, [_mIe, _s], [0, 0]];
|
|
1061
1421
|
export var DeleteMemoryStrategyInput = [3, n0, _DMSI, 0, [_mSI], [0]];
|
|
1062
1422
|
export var DeleteOauth2CredentialProviderRequest = [3, n0, _DOCPR, 0, [_n], [0]];
|
|
1063
1423
|
export var DeleteOauth2CredentialProviderResponse = [3, n0, _DOCPRe, 0, [], []];
|
|
1424
|
+
export var DeleteOnlineEvaluationConfigRequest = [3, n0, _DOECR, 0, [_oECI], [[0, 1]]];
|
|
1425
|
+
export var DeleteOnlineEvaluationConfigResponse = [
|
|
1426
|
+
3,
|
|
1427
|
+
n0,
|
|
1428
|
+
_DOECRe,
|
|
1429
|
+
0,
|
|
1430
|
+
[_oECA, _oECI, _s],
|
|
1431
|
+
[0, 0, 0],
|
|
1432
|
+
];
|
|
1433
|
+
export var DeletePolicyEngineRequest = [3, n0, _DPER, 0, [_pEI], [[0, 1]]];
|
|
1434
|
+
export var DeletePolicyEngineResponse = [
|
|
1435
|
+
3,
|
|
1436
|
+
n0,
|
|
1437
|
+
_DPERe,
|
|
1438
|
+
0,
|
|
1439
|
+
[_pEI, _n, _d, _cA, _uA, _pEA, _s, _sR],
|
|
1440
|
+
[0, 0, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
|
|
1441
|
+
];
|
|
1442
|
+
export var DeletePolicyRequest = [
|
|
1443
|
+
3,
|
|
1444
|
+
n0,
|
|
1445
|
+
_DPR,
|
|
1446
|
+
0,
|
|
1447
|
+
[_pEI, _pI],
|
|
1448
|
+
[
|
|
1449
|
+
[0, 1],
|
|
1450
|
+
[0, 1],
|
|
1451
|
+
],
|
|
1452
|
+
];
|
|
1453
|
+
export var DeletePolicyResponse = [
|
|
1454
|
+
3,
|
|
1455
|
+
n0,
|
|
1456
|
+
_DPRe,
|
|
1457
|
+
0,
|
|
1458
|
+
[_pI, _n, _pEI, _de, _d, _cA, _uA, _pA, _s, _sR],
|
|
1459
|
+
[0, 0, 0, () => PolicyDefinition, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
|
|
1460
|
+
];
|
|
1461
|
+
export var DeleteResourcePolicyRequest = [3, n0, _DRPR, 0, [_rAe], [[0, 1]]];
|
|
1462
|
+
export var DeleteResourcePolicyResponse = [3, n0, _DRPRe, 0, [], []];
|
|
1064
1463
|
export var DeleteWorkloadIdentityRequest = [3, n0, _DWIR, 0, [_n], [0]];
|
|
1065
1464
|
export var DeleteWorkloadIdentityResponse = [3, n0, _DWIRe, 0, [], []];
|
|
1066
1465
|
export var EncryptionFailure = [
|
|
@@ -1075,12 +1474,78 @@ export var EncryptionFailure = [
|
|
|
1075
1474
|
[0],
|
|
1076
1475
|
];
|
|
1077
1476
|
TypeRegistry.for(n0).registerError(EncryptionFailure, __EncryptionFailure);
|
|
1477
|
+
export var EpisodicConsolidationOverride = [3, n0, _ECO, 0, [_aTP, _mI], [[() => Prompt, 0], 0]];
|
|
1478
|
+
export var EpisodicExtractionOverride = [3, n0, _EEO, 0, [_aTP, _mI], [[() => Prompt, 0], 0]];
|
|
1479
|
+
export var EpisodicMemoryStrategyInput = [
|
|
1480
|
+
3,
|
|
1481
|
+
n0,
|
|
1482
|
+
_EMSI,
|
|
1483
|
+
0,
|
|
1484
|
+
[_n, _d, _na, _rC],
|
|
1485
|
+
[0, [() => Description, 0], 64 | 0, () => EpisodicReflectionConfigurationInput],
|
|
1486
|
+
];
|
|
1487
|
+
export var EpisodicOverrideConfigurationInput = [
|
|
1488
|
+
3,
|
|
1489
|
+
n0,
|
|
1490
|
+
_EOCI,
|
|
1491
|
+
0,
|
|
1492
|
+
[_ex, _cons, _ref],
|
|
1493
|
+
[
|
|
1494
|
+
[() => EpisodicOverrideExtractionConfigurationInput, 0],
|
|
1495
|
+
[() => EpisodicOverrideConsolidationConfigurationInput, 0],
|
|
1496
|
+
[() => EpisodicOverrideReflectionConfigurationInput, 0],
|
|
1497
|
+
],
|
|
1498
|
+
];
|
|
1499
|
+
export var EpisodicOverrideConsolidationConfigurationInput = [
|
|
1500
|
+
3,
|
|
1501
|
+
n0,
|
|
1502
|
+
_EOCCI,
|
|
1503
|
+
0,
|
|
1504
|
+
[_aTP, _mI],
|
|
1505
|
+
[[() => Prompt, 0], 0],
|
|
1506
|
+
];
|
|
1507
|
+
export var EpisodicOverrideExtractionConfigurationInput = [
|
|
1508
|
+
3,
|
|
1509
|
+
n0,
|
|
1510
|
+
_EOECI,
|
|
1511
|
+
0,
|
|
1512
|
+
[_aTP, _mI],
|
|
1513
|
+
[[() => Prompt, 0], 0],
|
|
1514
|
+
];
|
|
1515
|
+
export var EpisodicOverrideReflectionConfigurationInput = [
|
|
1516
|
+
3,
|
|
1517
|
+
n0,
|
|
1518
|
+
_EORCI,
|
|
1519
|
+
0,
|
|
1520
|
+
[_aTP, _mI, _na],
|
|
1521
|
+
[[() => Prompt, 0], 0, 64 | 0],
|
|
1522
|
+
];
|
|
1523
|
+
export var EpisodicReflectionConfiguration = [3, n0, _ERC, 0, [_na], [64 | 0]];
|
|
1524
|
+
export var EpisodicReflectionConfigurationInput = [3, n0, _ERCI, 0, [_na], [64 | 0]];
|
|
1525
|
+
export var EpisodicReflectionOverride = [
|
|
1526
|
+
3,
|
|
1527
|
+
n0,
|
|
1528
|
+
_ERO,
|
|
1529
|
+
0,
|
|
1530
|
+
[_aTP, _mI, _na],
|
|
1531
|
+
[[() => Prompt, 0], 0, 64 | 0],
|
|
1532
|
+
];
|
|
1533
|
+
export var EvaluatorSummary = [
|
|
1534
|
+
3,
|
|
1535
|
+
n0,
|
|
1536
|
+
_ES,
|
|
1537
|
+
0,
|
|
1538
|
+
[_eA, _eI, _eNv, _d, _eT, _le, _s, _cA, _uA, _lFM],
|
|
1539
|
+
[0, 0, 0, [() => EvaluatorDescription, 0], 0, 0, 0, 4, 4, 2],
|
|
1540
|
+
];
|
|
1541
|
+
export var Filter = [3, n0, _F, 0, [_k, _o, _v], [0, 0, () => FilterValue]];
|
|
1542
|
+
export var Finding = [3, n0, _Fi, 0, [_ty, _d], [0, 0]];
|
|
1078
1543
|
export var GatewayApiKeyCredentialProvider = [
|
|
1079
1544
|
3,
|
|
1080
1545
|
n0,
|
|
1081
1546
|
_GAKCP,
|
|
1082
1547
|
0,
|
|
1083
|
-
[
|
|
1548
|
+
[_pAr, _cPN, _cPr, _cL],
|
|
1084
1549
|
[0, 0, 0, 0],
|
|
1085
1550
|
];
|
|
1086
1551
|
export var GatewayInterceptorConfiguration = [
|
|
@@ -1088,9 +1553,10 @@ export var GatewayInterceptorConfiguration = [
|
|
|
1088
1553
|
n0,
|
|
1089
1554
|
_GIC,
|
|
1090
1555
|
0,
|
|
1091
|
-
[_in, _iP,
|
|
1556
|
+
[_in, _iP, _iCnp],
|
|
1092
1557
|
[() => InterceptorConfiguration, 64 | 0, () => InterceptorInputConfiguration],
|
|
1093
1558
|
];
|
|
1559
|
+
export var GatewayPolicyEngineConfiguration = [3, n0, _GPEC, 0, [_a, _mo], [0, 0]];
|
|
1094
1560
|
export var GatewaySummary = [
|
|
1095
1561
|
3,
|
|
1096
1562
|
n0,
|
|
@@ -1149,7 +1615,7 @@ export var GetAgentRuntimeRequest = [
|
|
|
1149
1615
|
[
|
|
1150
1616
|
0,
|
|
1151
1617
|
{
|
|
1152
|
-
[_hQ]:
|
|
1618
|
+
[_hQ]: _ve,
|
|
1153
1619
|
},
|
|
1154
1620
|
],
|
|
1155
1621
|
],
|
|
@@ -1159,7 +1625,7 @@ export var GetAgentRuntimeResponse = [
|
|
|
1159
1625
|
n0,
|
|
1160
1626
|
_GARRe,
|
|
1161
1627
|
0,
|
|
1162
|
-
[_aRA, _aRN, _aRI, _aRV, _cA, _lUA, _rA, _nC, _s, _lC, _d, _wID, _aRAg, _pC, _eV, _aC, _rHC],
|
|
1628
|
+
[_aRA, _aRN, _aRI, _aRV, _cA, _lUA, _rA, _nC, _s, _lC, _fR, _d, _wID, _aRAg, _pC, _eV, _aC, _rHC],
|
|
1163
1629
|
[
|
|
1164
1630
|
0,
|
|
1165
1631
|
0,
|
|
@@ -1171,6 +1637,7 @@ export var GetAgentRuntimeResponse = [
|
|
|
1171
1637
|
() => NetworkConfiguration,
|
|
1172
1638
|
0,
|
|
1173
1639
|
() => LifecycleConfiguration,
|
|
1640
|
+
0,
|
|
1174
1641
|
[() => Description, 0],
|
|
1175
1642
|
() => WorkloadIdentityDetails,
|
|
1176
1643
|
() => AgentRuntimeArtifact,
|
|
@@ -1220,13 +1687,22 @@ export var GetCodeInterpreterResponse = [
|
|
|
1220
1687
|
[_cII, _cIA, _n, _d, _eRA, _nC, _s, _fR, _cA, _lUA],
|
|
1221
1688
|
[0, 0, 0, [() => Description, 0], 0, () => CodeInterpreterNetworkConfiguration, 0, 0, 5, 5],
|
|
1222
1689
|
];
|
|
1690
|
+
export var GetEvaluatorRequest = [3, n0, _GER, 0, [_eI], [[0, 1]]];
|
|
1691
|
+
export var GetEvaluatorResponse = [
|
|
1692
|
+
3,
|
|
1693
|
+
n0,
|
|
1694
|
+
_GERe,
|
|
1695
|
+
0,
|
|
1696
|
+
[_eA, _eI, _eNv, _d, _eC, _le, _s, _cA, _uA, _lFM],
|
|
1697
|
+
[0, 0, 0, [() => EvaluatorDescription, 0], [() => EvaluatorConfig, 0], 0, 0, 4, 4, 2],
|
|
1698
|
+
];
|
|
1223
1699
|
export var GetGatewayRequest = [3, n0, _GGR, 0, [_gIa], [[0, 1]]];
|
|
1224
1700
|
export var GetGatewayResponse = [
|
|
1225
1701
|
3,
|
|
1226
1702
|
n0,
|
|
1227
1703
|
_GGRe,
|
|
1228
1704
|
0,
|
|
1229
|
-
[_gA, _gI, _gU, _cA, _uA, _s, _sR, _n, _d, _rA, _pT, _pC, _aT, _aC, _kKA,
|
|
1705
|
+
[_gA, _gI, _gU, _cA, _uA, _s, _sR, _n, _d, _rA, _pT, _pC, _aT, _aC, _kKA, _iCn, _pEC, _wID, _eL],
|
|
1230
1706
|
[
|
|
1231
1707
|
0,
|
|
1232
1708
|
0,
|
|
@@ -1244,6 +1720,7 @@ export var GetGatewayResponse = [
|
|
|
1244
1720
|
() => AuthorizerConfiguration,
|
|
1245
1721
|
0,
|
|
1246
1722
|
() => GatewayInterceptorConfigurations,
|
|
1723
|
+
() => GatewayPolicyEngineConfiguration,
|
|
1247
1724
|
() => WorkloadIdentityDetails,
|
|
1248
1725
|
0,
|
|
1249
1726
|
],
|
|
@@ -1279,8 +1756,8 @@ export var GetGatewayTargetResponse = [
|
|
|
1279
1756
|
5,
|
|
1280
1757
|
],
|
|
1281
1758
|
];
|
|
1282
|
-
export var GetMemoryInput = [3, n0, _GMI, 0, [
|
|
1283
|
-
export var GetMemoryOutput = [3, n0, _GMO, 0, [
|
|
1759
|
+
export var GetMemoryInput = [3, n0, _GMI, 0, [_mIe], [[0, 1]]];
|
|
1760
|
+
export var GetMemoryOutput = [3, n0, _GMO, 0, [_mem], [[() => Memory, 0]]];
|
|
1284
1761
|
export var GetOauth2CredentialProviderRequest = [3, n0, _GOCPR, 0, [_n], [0]];
|
|
1285
1762
|
export var GetOauth2CredentialProviderResponse = [
|
|
1286
1763
|
3,
|
|
@@ -1290,6 +1767,79 @@ export var GetOauth2CredentialProviderResponse = [
|
|
|
1290
1767
|
[_cSA, _n, _cPA, _cPV, _cUa, _oPCO, _cT, _lUT],
|
|
1291
1768
|
[() => Secret, 0, 0, 0, 0, () => Oauth2ProviderConfigOutput, 4, 4],
|
|
1292
1769
|
];
|
|
1770
|
+
export var GetOnlineEvaluationConfigRequest = [3, n0, _GOECR, 0, [_oECI], [[0, 1]]];
|
|
1771
|
+
export var GetOnlineEvaluationConfigResponse = [
|
|
1772
|
+
3,
|
|
1773
|
+
n0,
|
|
1774
|
+
_GOECRe,
|
|
1775
|
+
0,
|
|
1776
|
+
[_oECA, _oECI, _oECN, _d, _ru, _dSC, _ev, _oC, _eERA, _s, _eS, _cA, _uA, _fR],
|
|
1777
|
+
[
|
|
1778
|
+
0,
|
|
1779
|
+
0,
|
|
1780
|
+
0,
|
|
1781
|
+
[() => EvaluationConfigDescription, 0],
|
|
1782
|
+
() => Rule,
|
|
1783
|
+
() => DataSourceConfig,
|
|
1784
|
+
() => EvaluatorList,
|
|
1785
|
+
() => OutputConfig,
|
|
1786
|
+
0,
|
|
1787
|
+
0,
|
|
1788
|
+
0,
|
|
1789
|
+
4,
|
|
1790
|
+
4,
|
|
1791
|
+
0,
|
|
1792
|
+
],
|
|
1793
|
+
];
|
|
1794
|
+
export var GetPolicyEngineRequest = [3, n0, _GPER, 0, [_pEI], [[0, 1]]];
|
|
1795
|
+
export var GetPolicyEngineResponse = [
|
|
1796
|
+
3,
|
|
1797
|
+
n0,
|
|
1798
|
+
_GPERe,
|
|
1799
|
+
0,
|
|
1800
|
+
[_pEI, _n, _d, _cA, _uA, _pEA, _s, _sR],
|
|
1801
|
+
[0, 0, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
|
|
1802
|
+
];
|
|
1803
|
+
export var GetPolicyGenerationRequest = [
|
|
1804
|
+
3,
|
|
1805
|
+
n0,
|
|
1806
|
+
_GPGR,
|
|
1807
|
+
0,
|
|
1808
|
+
[_pGI, _pEI],
|
|
1809
|
+
[
|
|
1810
|
+
[0, 1],
|
|
1811
|
+
[0, 1],
|
|
1812
|
+
],
|
|
1813
|
+
];
|
|
1814
|
+
export var GetPolicyGenerationResponse = [
|
|
1815
|
+
3,
|
|
1816
|
+
n0,
|
|
1817
|
+
_GPGRe,
|
|
1818
|
+
0,
|
|
1819
|
+
[_pEI, _pGI, _n, _pGA, _res, _cA, _uA, _s, _sR, _f],
|
|
1820
|
+
[0, 0, 0, 0, () => Resource, 5, 5, 0, 64 | 0, 0],
|
|
1821
|
+
];
|
|
1822
|
+
export var GetPolicyRequest = [
|
|
1823
|
+
3,
|
|
1824
|
+
n0,
|
|
1825
|
+
_GPR,
|
|
1826
|
+
0,
|
|
1827
|
+
[_pEI, _pI],
|
|
1828
|
+
[
|
|
1829
|
+
[0, 1],
|
|
1830
|
+
[0, 1],
|
|
1831
|
+
],
|
|
1832
|
+
];
|
|
1833
|
+
export var GetPolicyResponse = [
|
|
1834
|
+
3,
|
|
1835
|
+
n0,
|
|
1836
|
+
_GPRe,
|
|
1837
|
+
0,
|
|
1838
|
+
[_pI, _n, _pEI, _de, _d, _cA, _uA, _pA, _s, _sR],
|
|
1839
|
+
[0, 0, 0, () => PolicyDefinition, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
|
|
1840
|
+
];
|
|
1841
|
+
export var GetResourcePolicyRequest = [3, n0, _GRPR, 0, [_rAe], [[0, 1]]];
|
|
1842
|
+
export var GetResourcePolicyResponse = [3, n0, _GRPRe, 0, [_po], [0]];
|
|
1293
1843
|
export var GetTokenVaultRequest = [3, n0, _GTVR, 0, [_tVI], [0]];
|
|
1294
1844
|
export var GetTokenVaultResponse = [
|
|
1295
1845
|
3,
|
|
@@ -1356,6 +1906,7 @@ export var IncludedOauth2ProviderConfigOutput = [
|
|
|
1356
1906
|
[_oD, _cI],
|
|
1357
1907
|
[() => Oauth2Discovery, 0],
|
|
1358
1908
|
];
|
|
1909
|
+
export var InferenceConfiguration = [3, n0, _IC, 0, [_mT, _te, _tP, _sS], [1, 1, 1, 64 | 0]];
|
|
1359
1910
|
export var InterceptorInputConfiguration = [3, n0, _IIC, 0, [_pRH], [2]];
|
|
1360
1911
|
export var InternalServerException = [
|
|
1361
1912
|
-3,
|
|
@@ -1369,7 +1920,7 @@ export var InternalServerException = [
|
|
|
1369
1920
|
[0],
|
|
1370
1921
|
];
|
|
1371
1922
|
TypeRegistry.for(n0).registerError(InternalServerException, __InternalServerException);
|
|
1372
|
-
export var InvocationConfiguration = [3, n0,
|
|
1923
|
+
export var InvocationConfiguration = [3, n0, _ICn, 0, [_tA, _pDBN], [0, 0]];
|
|
1373
1924
|
export var InvocationConfigurationInput = [3, n0, _ICI, 0, [_tA, _pDBN], [0, 0]];
|
|
1374
1925
|
export var KmsConfiguration = [3, n0, _KC, 0, [_kT, _kKA], [0, 0]];
|
|
1375
1926
|
export var LambdaInterceptorConfiguration = [3, n0, _LIC, 0, [_a], [0]];
|
|
@@ -1558,6 +2109,35 @@ export var ListCodeInterpretersResponse = [
|
|
|
1558
2109
|
[_cIS, _nT],
|
|
1559
2110
|
[[() => CodeInterpreterSummaries, 0], 0],
|
|
1560
2111
|
];
|
|
2112
|
+
export var ListEvaluatorsRequest = [
|
|
2113
|
+
3,
|
|
2114
|
+
n0,
|
|
2115
|
+
_LER,
|
|
2116
|
+
0,
|
|
2117
|
+
[_nT, _mR],
|
|
2118
|
+
[
|
|
2119
|
+
[
|
|
2120
|
+
0,
|
|
2121
|
+
{
|
|
2122
|
+
[_hQ]: _nT,
|
|
2123
|
+
},
|
|
2124
|
+
],
|
|
2125
|
+
[
|
|
2126
|
+
1,
|
|
2127
|
+
{
|
|
2128
|
+
[_hQ]: _mR,
|
|
2129
|
+
},
|
|
2130
|
+
],
|
|
2131
|
+
],
|
|
2132
|
+
];
|
|
2133
|
+
export var ListEvaluatorsResponse = [
|
|
2134
|
+
3,
|
|
2135
|
+
n0,
|
|
2136
|
+
_LERi,
|
|
2137
|
+
0,
|
|
2138
|
+
[_ev, _nT],
|
|
2139
|
+
[[() => EvaluatorSummaryList, 0], 0],
|
|
2140
|
+
];
|
|
1561
2141
|
export var ListGatewaysRequest = [
|
|
1562
2142
|
3,
|
|
1563
2143
|
n0,
|
|
@@ -1609,24 +2189,172 @@ export var ListGatewayTargetsRequest = [
|
|
|
1609
2189
|
],
|
|
1610
2190
|
],
|
|
1611
2191
|
];
|
|
1612
|
-
export var ListGatewayTargetsResponse = [
|
|
1613
|
-
3,
|
|
1614
|
-
n0,
|
|
1615
|
-
_LGTRi,
|
|
1616
|
-
0,
|
|
1617
|
-
[_it, _nT],
|
|
1618
|
-
[[() => TargetSummaries, 0], 0],
|
|
1619
|
-
];
|
|
1620
|
-
export var ListMemoriesInput = [3, n0, _LMI, 0, [_mR, _nT], [1, 0]];
|
|
1621
|
-
export var ListMemoriesOutput = [3, n0, _LMO, 0, [
|
|
1622
|
-
export var ListOauth2CredentialProvidersRequest = [3, n0, _LOCPR, 0, [_nT, _mR], [0, 1]];
|
|
1623
|
-
export var ListOauth2CredentialProvidersResponse = [
|
|
2192
|
+
export var ListGatewayTargetsResponse = [
|
|
2193
|
+
3,
|
|
2194
|
+
n0,
|
|
2195
|
+
_LGTRi,
|
|
2196
|
+
0,
|
|
2197
|
+
[_it, _nT],
|
|
2198
|
+
[[() => TargetSummaries, 0], 0],
|
|
2199
|
+
];
|
|
2200
|
+
export var ListMemoriesInput = [3, n0, _LMI, 0, [_mR, _nT], [1, 0]];
|
|
2201
|
+
export var ListMemoriesOutput = [3, n0, _LMO, 0, [_memo, _nT], [() => MemorySummaryList, 0]];
|
|
2202
|
+
export var ListOauth2CredentialProvidersRequest = [3, n0, _LOCPR, 0, [_nT, _mR], [0, 1]];
|
|
2203
|
+
export var ListOauth2CredentialProvidersResponse = [
|
|
2204
|
+
3,
|
|
2205
|
+
n0,
|
|
2206
|
+
_LOCPRi,
|
|
2207
|
+
0,
|
|
2208
|
+
[_cPre, _nT],
|
|
2209
|
+
[() => Oauth2CredentialProviders, 0],
|
|
2210
|
+
];
|
|
2211
|
+
export var ListOnlineEvaluationConfigsRequest = [
|
|
2212
|
+
3,
|
|
2213
|
+
n0,
|
|
2214
|
+
_LOECR,
|
|
2215
|
+
0,
|
|
2216
|
+
[_nT, _mR],
|
|
2217
|
+
[
|
|
2218
|
+
[
|
|
2219
|
+
0,
|
|
2220
|
+
{
|
|
2221
|
+
[_hQ]: _nT,
|
|
2222
|
+
},
|
|
2223
|
+
],
|
|
2224
|
+
[
|
|
2225
|
+
1,
|
|
2226
|
+
{
|
|
2227
|
+
[_hQ]: _mR,
|
|
2228
|
+
},
|
|
2229
|
+
],
|
|
2230
|
+
],
|
|
2231
|
+
];
|
|
2232
|
+
export var ListOnlineEvaluationConfigsResponse = [
|
|
2233
|
+
3,
|
|
2234
|
+
n0,
|
|
2235
|
+
_LOECRi,
|
|
2236
|
+
0,
|
|
2237
|
+
[_oEC, _nT],
|
|
2238
|
+
[[() => OnlineEvaluationConfigSummaryList, 0], 0],
|
|
2239
|
+
];
|
|
2240
|
+
export var ListPoliciesRequest = [
|
|
2241
|
+
3,
|
|
2242
|
+
n0,
|
|
2243
|
+
_LPR,
|
|
2244
|
+
0,
|
|
2245
|
+
[_nT, _mR, _pEI, _tRS],
|
|
2246
|
+
[
|
|
2247
|
+
[
|
|
2248
|
+
0,
|
|
2249
|
+
{
|
|
2250
|
+
[_hQ]: _nT,
|
|
2251
|
+
},
|
|
2252
|
+
],
|
|
2253
|
+
[
|
|
2254
|
+
1,
|
|
2255
|
+
{
|
|
2256
|
+
[_hQ]: _mR,
|
|
2257
|
+
},
|
|
2258
|
+
],
|
|
2259
|
+
[0, 1],
|
|
2260
|
+
[
|
|
2261
|
+
0,
|
|
2262
|
+
{
|
|
2263
|
+
[_hQ]: _tRS,
|
|
2264
|
+
},
|
|
2265
|
+
],
|
|
2266
|
+
],
|
|
2267
|
+
];
|
|
2268
|
+
export var ListPoliciesResponse = [3, n0, _LPRi, 0, [_pol, _nT], [[() => Policies, 0], 0]];
|
|
2269
|
+
export var ListPolicyEnginesRequest = [
|
|
2270
|
+
3,
|
|
2271
|
+
n0,
|
|
2272
|
+
_LPER,
|
|
2273
|
+
0,
|
|
2274
|
+
[_nT, _mR],
|
|
2275
|
+
[
|
|
2276
|
+
[
|
|
2277
|
+
0,
|
|
2278
|
+
{
|
|
2279
|
+
[_hQ]: _nT,
|
|
2280
|
+
},
|
|
2281
|
+
],
|
|
2282
|
+
[
|
|
2283
|
+
1,
|
|
2284
|
+
{
|
|
2285
|
+
[_hQ]: _mR,
|
|
2286
|
+
},
|
|
2287
|
+
],
|
|
2288
|
+
],
|
|
2289
|
+
];
|
|
2290
|
+
export var ListPolicyEnginesResponse = [
|
|
2291
|
+
3,
|
|
2292
|
+
n0,
|
|
2293
|
+
_LPERi,
|
|
2294
|
+
0,
|
|
2295
|
+
[_pE, _nT],
|
|
2296
|
+
[[() => PolicyEngines, 0], 0],
|
|
2297
|
+
];
|
|
2298
|
+
export var ListPolicyGenerationAssetsRequest = [
|
|
2299
|
+
3,
|
|
2300
|
+
n0,
|
|
2301
|
+
_LPGAR,
|
|
2302
|
+
0,
|
|
2303
|
+
[_pGI, _pEI, _nT, _mR],
|
|
2304
|
+
[
|
|
2305
|
+
[0, 1],
|
|
2306
|
+
[0, 1],
|
|
2307
|
+
[
|
|
2308
|
+
0,
|
|
2309
|
+
{
|
|
2310
|
+
[_hQ]: _nT,
|
|
2311
|
+
},
|
|
2312
|
+
],
|
|
2313
|
+
[
|
|
2314
|
+
1,
|
|
2315
|
+
{
|
|
2316
|
+
[_hQ]: _mR,
|
|
2317
|
+
},
|
|
2318
|
+
],
|
|
2319
|
+
],
|
|
2320
|
+
];
|
|
2321
|
+
export var ListPolicyGenerationAssetsResponse = [
|
|
2322
|
+
3,
|
|
2323
|
+
n0,
|
|
2324
|
+
_LPGARi,
|
|
2325
|
+
0,
|
|
2326
|
+
[_pGAo, _nT],
|
|
2327
|
+
[() => PolicyGenerationAssets, 0],
|
|
2328
|
+
];
|
|
2329
|
+
export var ListPolicyGenerationsRequest = [
|
|
2330
|
+
3,
|
|
2331
|
+
n0,
|
|
2332
|
+
_LPGR,
|
|
2333
|
+
0,
|
|
2334
|
+
[_nT, _mR, _pEI],
|
|
2335
|
+
[
|
|
2336
|
+
[
|
|
2337
|
+
0,
|
|
2338
|
+
{
|
|
2339
|
+
[_hQ]: _nT,
|
|
2340
|
+
},
|
|
2341
|
+
],
|
|
2342
|
+
[
|
|
2343
|
+
1,
|
|
2344
|
+
{
|
|
2345
|
+
[_hQ]: _mR,
|
|
2346
|
+
},
|
|
2347
|
+
],
|
|
2348
|
+
[0, 1],
|
|
2349
|
+
],
|
|
2350
|
+
];
|
|
2351
|
+
export var ListPolicyGenerationsResponse = [
|
|
1624
2352
|
3,
|
|
1625
2353
|
n0,
|
|
1626
|
-
|
|
2354
|
+
_LPGRi,
|
|
1627
2355
|
0,
|
|
1628
|
-
[
|
|
1629
|
-
[() =>
|
|
2356
|
+
[_pG, _nT],
|
|
2357
|
+
[() => PolicyGenerations, 0],
|
|
1630
2358
|
];
|
|
1631
2359
|
export var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rAe], [[0, 1]]];
|
|
1632
2360
|
export var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
|
|
@@ -1639,6 +2367,14 @@ export var ListWorkloadIdentitiesResponse = [
|
|
|
1639
2367
|
[_wI, _nT],
|
|
1640
2368
|
[() => WorkloadIdentityList, 0],
|
|
1641
2369
|
];
|
|
2370
|
+
export var LlmAsAJudgeEvaluatorConfig = [
|
|
2371
|
+
3,
|
|
2372
|
+
n0,
|
|
2373
|
+
_LAAJEC,
|
|
2374
|
+
0,
|
|
2375
|
+
[_ins, _rS, _mC],
|
|
2376
|
+
[[() => EvaluatorInstructions, 0], () => RatingScale, () => EvaluatorModelConfig],
|
|
2377
|
+
];
|
|
1642
2378
|
export var MCPGatewayConfiguration = [3, n0, _MCPGC, 0, [_sV, _ins, _sT], [64 | 0, 0, 0]];
|
|
1643
2379
|
export var McpLambdaTargetConfiguration = [3, n0, _MLTC, 0, [_lA, _tS], [0, () => ToolSchema]];
|
|
1644
2380
|
export var McpServerTargetConfiguration = [3, n0, _MSTC, 0, [_end], [0]];
|
|
@@ -1647,7 +2383,7 @@ export var Memory = [
|
|
|
1647
2383
|
n0,
|
|
1648
2384
|
_M,
|
|
1649
2385
|
0,
|
|
1650
|
-
[_a, _i, _n, _d, _eKA, _mERA, _eED, _s, _fR, _cA, _uA,
|
|
2386
|
+
[_a, _i, _n, _d, _eKA, _mERA, _eED, _s, _fR, _cA, _uA, _str],
|
|
1651
2387
|
[0, 0, 0, [() => Description, 0], 0, 0, 1, 0, 0, 4, 4, [() => MemoryStrategyList, 0]],
|
|
1652
2388
|
];
|
|
1653
2389
|
export var MemoryStrategy = [
|
|
@@ -1659,8 +2395,8 @@ export var MemoryStrategy = [
|
|
|
1659
2395
|
[0, 0, [() => Description, 0], [() => StrategyConfiguration, 0], 0, 64 | 0, 4, 4, 0],
|
|
1660
2396
|
];
|
|
1661
2397
|
export var MemorySummary = [3, n0, _MSe, 0, [_a, _i, _s, _cA, _uA], [0, 0, 0, 4, 4]];
|
|
1662
|
-
export var MessageBasedTrigger = [3, n0, _MBT, 0, [
|
|
1663
|
-
export var MessageBasedTriggerInput = [3, n0, _MBTI, 0, [
|
|
2398
|
+
export var MessageBasedTrigger = [3, n0, _MBT, 0, [_mCe], [1]];
|
|
2399
|
+
export var MessageBasedTriggerInput = [3, n0, _MBTI, 0, [_mCe], [1]];
|
|
1664
2400
|
export var MicrosoftOauth2ProviderConfigInput = [
|
|
1665
2401
|
3,
|
|
1666
2402
|
n0,
|
|
@@ -1707,14 +2443,16 @@ export var ModifyStrategyConfiguration = [
|
|
|
1707
2443
|
n0,
|
|
1708
2444
|
_MSC,
|
|
1709
2445
|
0,
|
|
1710
|
-
[_ex, _cons, _sMC],
|
|
2446
|
+
[_ex, _cons, _ref, _sMC],
|
|
1711
2447
|
[
|
|
1712
2448
|
[() => ModifyExtractionConfiguration, 0],
|
|
1713
2449
|
[() => ModifyConsolidationConfiguration, 0],
|
|
2450
|
+
[() => ModifyReflectionConfiguration, 0],
|
|
1714
2451
|
() => ModifySelfManagedConfiguration,
|
|
1715
2452
|
],
|
|
1716
2453
|
];
|
|
1717
2454
|
export var NetworkConfiguration = [3, n0, _NC, 0, [_nM, _nMC], [0, () => VpcConfig]];
|
|
2455
|
+
export var NumericalScaleDefinition = [3, n0, _NSD, 0, [_de, _v, _l], [0, 1, 0]];
|
|
1718
2456
|
export var Oauth2AuthorizationServerMetadata = [
|
|
1719
2457
|
3,
|
|
1720
2458
|
n0,
|
|
@@ -1736,10 +2474,53 @@ export var OAuthCredentialProvider = [
|
|
|
1736
2474
|
n0,
|
|
1737
2475
|
_OACP,
|
|
1738
2476
|
0,
|
|
1739
|
-
[
|
|
1740
|
-
[0, 64 | 0, [() => OAuthCustomParameters, 0]],
|
|
2477
|
+
[_pAr, _sc, _cPu, _gT, _dRU],
|
|
2478
|
+
[0, 64 | 0, [() => OAuthCustomParameters, 0], 0, 0],
|
|
2479
|
+
];
|
|
2480
|
+
export var OnlineEvaluationConfigSummary = [
|
|
2481
|
+
3,
|
|
2482
|
+
n0,
|
|
2483
|
+
_OECS,
|
|
2484
|
+
0,
|
|
2485
|
+
[_oECA, _oECI, _oECN, _d, _s, _eS, _cA, _uA, _fR],
|
|
2486
|
+
[0, 0, 0, [() => EvaluationConfigDescription, 0], 0, 0, 4, 4, 0],
|
|
2487
|
+
];
|
|
2488
|
+
export var OutputConfig = [3, n0, _OC, 0, [_cWC], [() => CloudWatchOutputConfig]];
|
|
2489
|
+
export var Policy = [
|
|
2490
|
+
3,
|
|
2491
|
+
n0,
|
|
2492
|
+
_Po,
|
|
2493
|
+
0,
|
|
2494
|
+
[_pI, _n, _pEI, _de, _d, _cA, _uA, _pA, _s, _sR],
|
|
2495
|
+
[0, 0, 0, () => PolicyDefinition, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
|
|
2496
|
+
];
|
|
2497
|
+
export var PolicyEngine = [
|
|
2498
|
+
3,
|
|
2499
|
+
n0,
|
|
2500
|
+
_PE,
|
|
2501
|
+
0,
|
|
2502
|
+
[_pEI, _n, _d, _cA, _uA, _pEA, _s, _sR],
|
|
2503
|
+
[0, 0, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
|
|
2504
|
+
];
|
|
2505
|
+
export var PolicyGeneration = [
|
|
2506
|
+
3,
|
|
2507
|
+
n0,
|
|
2508
|
+
_PG,
|
|
2509
|
+
0,
|
|
2510
|
+
[_pEI, _pGI, _n, _pGA, _res, _cA, _uA, _s, _sR, _f],
|
|
2511
|
+
[0, 0, 0, 0, () => Resource, 5, 5, 0, 64 | 0, 0],
|
|
2512
|
+
];
|
|
2513
|
+
export var PolicyGenerationAsset = [
|
|
2514
|
+
3,
|
|
2515
|
+
n0,
|
|
2516
|
+
_PGA,
|
|
2517
|
+
0,
|
|
2518
|
+
[_pGAI, _de, _rTF, _f],
|
|
2519
|
+
[0, () => PolicyDefinition, 0, () => Findings],
|
|
1741
2520
|
];
|
|
1742
2521
|
export var ProtocolConfiguration = [3, n0, _PC, 0, [_sP], [0]];
|
|
2522
|
+
export var PutResourcePolicyRequest = [3, n0, _PRPR, 0, [_rAe, _po], [[0, 1], 0]];
|
|
2523
|
+
export var PutResourcePolicyResponse = [3, n0, _PRPRu, 0, [_po], [0]];
|
|
1743
2524
|
export var RecordingConfig = [3, n0, _RC, 0, [_en, _sL], [2, () => S3Location]];
|
|
1744
2525
|
export var ResourceLimitExceededException = [
|
|
1745
2526
|
-3,
|
|
@@ -1765,8 +2546,16 @@ export var ResourceNotFoundException = [
|
|
|
1765
2546
|
[0],
|
|
1766
2547
|
];
|
|
1767
2548
|
TypeRegistry.for(n0).registerError(ResourceNotFoundException, __ResourceNotFoundException);
|
|
2549
|
+
export var Rule = [
|
|
2550
|
+
3,
|
|
2551
|
+
n0,
|
|
2552
|
+
_R,
|
|
2553
|
+
0,
|
|
2554
|
+
[_sC, _fi, _sCe],
|
|
2555
|
+
[() => SamplingConfig, () => FilterList, () => SessionConfig],
|
|
2556
|
+
];
|
|
1768
2557
|
export var S3Configuration = [3, n0, _SC, 0, [_u, _bOAI], [0, 0]];
|
|
1769
|
-
export var S3Location = [3, n0, _SL, 0, [_b,
|
|
2558
|
+
export var S3Location = [3, n0, _SL, 0, [_b, _pr, _vI], [0, 0, 0]];
|
|
1770
2559
|
export var SalesforceOauth2ProviderConfigInput = [
|
|
1771
2560
|
3,
|
|
1772
2561
|
n0,
|
|
@@ -1783,12 +2572,13 @@ export var SalesforceOauth2ProviderConfigOutput = [
|
|
|
1783
2572
|
[_oD, _cI],
|
|
1784
2573
|
[() => Oauth2Discovery, 0],
|
|
1785
2574
|
];
|
|
2575
|
+
export var SamplingConfig = [3, n0, _SCa, 0, [_sPa], [1]];
|
|
1786
2576
|
export var SchemaDefinition = [
|
|
1787
2577
|
3,
|
|
1788
2578
|
n0,
|
|
1789
2579
|
_SD,
|
|
1790
2580
|
0,
|
|
1791
|
-
[_ty,
|
|
2581
|
+
[_ty, _pro, _req, _it, _d],
|
|
1792
2582
|
[0, () => SchemaProperties, 64 | 0, () => SchemaDefinition, 0],
|
|
1793
2583
|
];
|
|
1794
2584
|
export var Secret = [3, n0, _S, 0, [_sA], [0]];
|
|
@@ -1808,15 +2598,8 @@ export var SelfManagedConfigurationInput = [
|
|
|
1808
2598
|
[_tCr, _iCnv, _hCWS],
|
|
1809
2599
|
[() => TriggerConditionInputList, () => InvocationConfigurationInput, 1],
|
|
1810
2600
|
];
|
|
1811
|
-
export var SemanticConsolidationOverride = [
|
|
1812
|
-
|
|
1813
|
-
n0,
|
|
1814
|
-
_SCO,
|
|
1815
|
-
0,
|
|
1816
|
-
[_aTP, _mIo],
|
|
1817
|
-
[[() => Prompt, 0], 0],
|
|
1818
|
-
];
|
|
1819
|
-
export var SemanticExtractionOverride = [3, n0, _SEO, 0, [_aTP, _mIo], [[() => Prompt, 0], 0]];
|
|
2601
|
+
export var SemanticConsolidationOverride = [3, n0, _SCO, 0, [_aTP, _mI], [[() => Prompt, 0], 0]];
|
|
2602
|
+
export var SemanticExtractionOverride = [3, n0, _SEO, 0, [_aTP, _mI], [[() => Prompt, 0], 0]];
|
|
1820
2603
|
export var SemanticMemoryStrategyInput = [
|
|
1821
2604
|
3,
|
|
1822
2605
|
n0,
|
|
@@ -1841,7 +2624,7 @@ export var SemanticOverrideConsolidationConfigurationInput = [
|
|
|
1841
2624
|
n0,
|
|
1842
2625
|
_SOCCI,
|
|
1843
2626
|
0,
|
|
1844
|
-
[_aTP,
|
|
2627
|
+
[_aTP, _mI],
|
|
1845
2628
|
[[() => Prompt, 0], 0],
|
|
1846
2629
|
];
|
|
1847
2630
|
export var SemanticOverrideExtractionConfigurationInput = [
|
|
@@ -1849,7 +2632,7 @@ export var SemanticOverrideExtractionConfigurationInput = [
|
|
|
1849
2632
|
n0,
|
|
1850
2633
|
_SOECI,
|
|
1851
2634
|
0,
|
|
1852
|
-
[_aTP,
|
|
2635
|
+
[_aTP, _mI],
|
|
1853
2636
|
[[() => Prompt, 0], 0],
|
|
1854
2637
|
];
|
|
1855
2638
|
export var ServiceException = [
|
|
@@ -1876,6 +2659,7 @@ export var ServiceQuotaExceededException = [
|
|
|
1876
2659
|
[0],
|
|
1877
2660
|
];
|
|
1878
2661
|
TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, __ServiceQuotaExceededException);
|
|
2662
|
+
export var SessionConfig = [3, n0, _SCe, 0, [_sTM], [1]];
|
|
1879
2663
|
export var SetTokenVaultCMKRequest = [
|
|
1880
2664
|
3,
|
|
1881
2665
|
n0,
|
|
@@ -1908,22 +2692,37 @@ export var SlackOauth2ProviderConfigOutput = [
|
|
|
1908
2692
|
[_oD, _cI],
|
|
1909
2693
|
[() => Oauth2Discovery, 0],
|
|
1910
2694
|
];
|
|
1911
|
-
export var
|
|
2695
|
+
export var StartPolicyGenerationRequest = [
|
|
1912
2696
|
3,
|
|
1913
2697
|
n0,
|
|
1914
|
-
|
|
2698
|
+
_SPGR,
|
|
1915
2699
|
0,
|
|
1916
|
-
[
|
|
1917
|
-
[0,
|
|
2700
|
+
[_pEI, _res, _cont, _n, _cTl],
|
|
2701
|
+
[[0, 1], () => Resource, () => Content, 0, [0, 4]],
|
|
1918
2702
|
];
|
|
1919
|
-
export var
|
|
2703
|
+
export var StartPolicyGenerationResponse = [
|
|
1920
2704
|
3,
|
|
1921
2705
|
n0,
|
|
1922
|
-
|
|
2706
|
+
_SPGRt,
|
|
1923
2707
|
0,
|
|
1924
|
-
[
|
|
1925
|
-
[
|
|
2708
|
+
[_pEI, _pGI, _n, _pGA, _res, _cA, _uA, _s, _sR, _f],
|
|
2709
|
+
[0, 0, 0, 0, () => Resource, 5, 5, 0, 64 | 0, 0],
|
|
2710
|
+
];
|
|
2711
|
+
export var StrategyConfiguration = [
|
|
2712
|
+
3,
|
|
2713
|
+
n0,
|
|
2714
|
+
_SCt,
|
|
2715
|
+
0,
|
|
2716
|
+
[_ty, _ex, _cons, _ref, _sMC],
|
|
2717
|
+
[
|
|
2718
|
+
0,
|
|
2719
|
+
[() => ExtractionConfiguration, 0],
|
|
2720
|
+
[() => ConsolidationConfiguration, 0],
|
|
2721
|
+
[() => ReflectionConfiguration, 0],
|
|
2722
|
+
() => SelfManagedConfiguration,
|
|
2723
|
+
],
|
|
1926
2724
|
];
|
|
2725
|
+
export var SummaryConsolidationOverride = [3, n0, _SCOu, 0, [_aTP, _mI], [[() => Prompt, 0], 0]];
|
|
1927
2726
|
export var SummaryMemoryStrategyInput = [
|
|
1928
2727
|
3,
|
|
1929
2728
|
n0,
|
|
@@ -1945,7 +2744,7 @@ export var SummaryOverrideConsolidationConfigurationInput = [
|
|
|
1945
2744
|
n0,
|
|
1946
2745
|
_SOCCIu,
|
|
1947
2746
|
0,
|
|
1948
|
-
[_aTP,
|
|
2747
|
+
[_aTP, _mI],
|
|
1949
2748
|
[[() => Prompt, 0], 0],
|
|
1950
2749
|
];
|
|
1951
2750
|
export var SynchronizeGatewayTargetsRequest = [3, n0, _SGTR, 0, [_gIa, _tIL], [[0, 1], 64 | 0]];
|
|
@@ -2092,12 +2891,21 @@ export var UpdateApiKeyCredentialProviderResponse = [
|
|
|
2092
2891
|
[_aKSA, _n, _cPA, _cT, _lUT],
|
|
2093
2892
|
[() => Secret, 0, 0, 4, 4],
|
|
2094
2893
|
];
|
|
2894
|
+
export var UpdateEvaluatorRequest = [
|
|
2895
|
+
3,
|
|
2896
|
+
n0,
|
|
2897
|
+
_UER,
|
|
2898
|
+
0,
|
|
2899
|
+
[_cTl, _eI, _d, _eC, _le],
|
|
2900
|
+
[[0, 4], [0, 1], [() => EvaluatorDescription, 0], [() => EvaluatorConfig, 0], 0],
|
|
2901
|
+
];
|
|
2902
|
+
export var UpdateEvaluatorResponse = [3, n0, _UERp, 0, [_eA, _eI, _uA, _s], [0, 0, 4, 0]];
|
|
2095
2903
|
export var UpdateGatewayRequest = [
|
|
2096
2904
|
3,
|
|
2097
2905
|
n0,
|
|
2098
2906
|
_UGR,
|
|
2099
2907
|
0,
|
|
2100
|
-
[_gIa, _n, _d, _rA, _pT, _pC, _aT, _aC, _kKA,
|
|
2908
|
+
[_gIa, _n, _d, _rA, _pT, _pC, _aT, _aC, _kKA, _iCn, _pEC, _eL],
|
|
2101
2909
|
[
|
|
2102
2910
|
[0, 1],
|
|
2103
2911
|
[() => GatewayName, 0],
|
|
@@ -2109,6 +2917,7 @@ export var UpdateGatewayRequest = [
|
|
|
2109
2917
|
() => AuthorizerConfiguration,
|
|
2110
2918
|
0,
|
|
2111
2919
|
() => GatewayInterceptorConfigurations,
|
|
2920
|
+
() => GatewayPolicyEngineConfiguration,
|
|
2112
2921
|
0,
|
|
2113
2922
|
],
|
|
2114
2923
|
];
|
|
@@ -2117,7 +2926,7 @@ export var UpdateGatewayResponse = [
|
|
|
2117
2926
|
n0,
|
|
2118
2927
|
_UGRp,
|
|
2119
2928
|
0,
|
|
2120
|
-
[_gA, _gI, _gU, _cA, _uA, _s, _sR, _n, _d, _rA, _pT, _pC, _aT, _aC, _kKA,
|
|
2929
|
+
[_gA, _gI, _gU, _cA, _uA, _s, _sR, _n, _d, _rA, _pT, _pC, _aT, _aC, _kKA, _iCn, _pEC, _wID, _eL],
|
|
2121
2930
|
[
|
|
2122
2931
|
0,
|
|
2123
2932
|
0,
|
|
@@ -2135,6 +2944,7 @@ export var UpdateGatewayResponse = [
|
|
|
2135
2944
|
() => AuthorizerConfiguration,
|
|
2136
2945
|
0,
|
|
2137
2946
|
() => GatewayInterceptorConfigurations,
|
|
2947
|
+
() => GatewayPolicyEngineConfiguration,
|
|
2138
2948
|
() => WorkloadIdentityDetails,
|
|
2139
2949
|
0,
|
|
2140
2950
|
],
|
|
@@ -2179,10 +2989,10 @@ export var UpdateMemoryInput = [
|
|
|
2179
2989
|
n0,
|
|
2180
2990
|
_UMI,
|
|
2181
2991
|
0,
|
|
2182
|
-
[_cTl,
|
|
2992
|
+
[_cTl, _mIe, _d, _eED, _mERA, _mS],
|
|
2183
2993
|
[[0, 4], [0, 1], [() => Description, 0], 1, 0, [() => ModifyMemoryStrategies, 0]],
|
|
2184
2994
|
];
|
|
2185
|
-
export var UpdateMemoryOutput = [3, n0, _UMO, 0, [
|
|
2995
|
+
export var UpdateMemoryOutput = [3, n0, _UMO, 0, [_mem], [[() => Memory, 0]]];
|
|
2186
2996
|
export var UpdateOauth2CredentialProviderRequest = [
|
|
2187
2997
|
3,
|
|
2188
2998
|
n0,
|
|
@@ -2199,6 +3009,66 @@ export var UpdateOauth2CredentialProviderResponse = [
|
|
|
2199
3009
|
[_cSA, _n, _cPV, _cPA, _cUa, _oPCO, _cT, _lUT],
|
|
2200
3010
|
[() => Secret, 0, 0, 0, 0, () => Oauth2ProviderConfigOutput, 4, 4],
|
|
2201
3011
|
];
|
|
3012
|
+
export var UpdateOnlineEvaluationConfigRequest = [
|
|
3013
|
+
3,
|
|
3014
|
+
n0,
|
|
3015
|
+
_UOECR,
|
|
3016
|
+
0,
|
|
3017
|
+
[_cTl, _oECI, _d, _ru, _dSC, _ev, _eERA, _eS],
|
|
3018
|
+
[
|
|
3019
|
+
[0, 4],
|
|
3020
|
+
[0, 1],
|
|
3021
|
+
[() => EvaluationConfigDescription, 0],
|
|
3022
|
+
() => Rule,
|
|
3023
|
+
() => DataSourceConfig,
|
|
3024
|
+
() => EvaluatorList,
|
|
3025
|
+
0,
|
|
3026
|
+
0,
|
|
3027
|
+
],
|
|
3028
|
+
];
|
|
3029
|
+
export var UpdateOnlineEvaluationConfigResponse = [
|
|
3030
|
+
3,
|
|
3031
|
+
n0,
|
|
3032
|
+
_UOECRp,
|
|
3033
|
+
0,
|
|
3034
|
+
[_oECA, _oECI, _uA, _s, _eS, _fR],
|
|
3035
|
+
[0, 0, 4, 0, 0, 0],
|
|
3036
|
+
];
|
|
3037
|
+
export var UpdatePolicyEngineRequest = [
|
|
3038
|
+
3,
|
|
3039
|
+
n0,
|
|
3040
|
+
_UPER,
|
|
3041
|
+
0,
|
|
3042
|
+
[_pEI, _d],
|
|
3043
|
+
[
|
|
3044
|
+
[0, 1],
|
|
3045
|
+
[() => Description, 0],
|
|
3046
|
+
],
|
|
3047
|
+
];
|
|
3048
|
+
export var UpdatePolicyEngineResponse = [
|
|
3049
|
+
3,
|
|
3050
|
+
n0,
|
|
3051
|
+
_UPERp,
|
|
3052
|
+
0,
|
|
3053
|
+
[_pEI, _n, _d, _cA, _uA, _pEA, _s, _sR],
|
|
3054
|
+
[0, 0, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
|
|
3055
|
+
];
|
|
3056
|
+
export var UpdatePolicyRequest = [
|
|
3057
|
+
3,
|
|
3058
|
+
n0,
|
|
3059
|
+
_UPR,
|
|
3060
|
+
0,
|
|
3061
|
+
[_pEI, _pI, _d, _de, _vM],
|
|
3062
|
+
[[0, 1], [0, 1], [() => Description, 0], () => PolicyDefinition, 0],
|
|
3063
|
+
];
|
|
3064
|
+
export var UpdatePolicyResponse = [
|
|
3065
|
+
3,
|
|
3066
|
+
n0,
|
|
3067
|
+
_UPRp,
|
|
3068
|
+
0,
|
|
3069
|
+
[_pI, _n, _pEI, _de, _d, _cA, _uA, _pA, _s, _sR],
|
|
3070
|
+
[0, 0, 0, () => PolicyDefinition, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
|
|
3071
|
+
];
|
|
2202
3072
|
export var UpdateWorkloadIdentityRequest = [3, n0, _UWIR, 0, [_n, _aRORU], [0, 64 | 0]];
|
|
2203
3073
|
export var UpdateWorkloadIdentityResponse = [
|
|
2204
3074
|
3,
|
|
@@ -2213,7 +3083,7 @@ export var UserPreferenceConsolidationOverride = [
|
|
|
2213
3083
|
n0,
|
|
2214
3084
|
_UPCO,
|
|
2215
3085
|
0,
|
|
2216
|
-
[_aTP,
|
|
3086
|
+
[_aTP, _mI],
|
|
2217
3087
|
[[() => Prompt, 0], 0],
|
|
2218
3088
|
];
|
|
2219
3089
|
export var UserPreferenceExtractionOverride = [
|
|
@@ -2221,7 +3091,7 @@ export var UserPreferenceExtractionOverride = [
|
|
|
2221
3091
|
n0,
|
|
2222
3092
|
_UPEO,
|
|
2223
3093
|
0,
|
|
2224
|
-
[_aTP,
|
|
3094
|
+
[_aTP, _mI],
|
|
2225
3095
|
[[() => Prompt, 0], 0],
|
|
2226
3096
|
];
|
|
2227
3097
|
export var UserPreferenceMemoryStrategyInput = [
|
|
@@ -2248,7 +3118,7 @@ export var UserPreferenceOverrideConsolidationConfigurationInput = [
|
|
|
2248
3118
|
n0,
|
|
2249
3119
|
_UPOCCI,
|
|
2250
3120
|
0,
|
|
2251
|
-
[_aTP,
|
|
3121
|
+
[_aTP, _mI],
|
|
2252
3122
|
[[() => Prompt, 0], 0],
|
|
2253
3123
|
];
|
|
2254
3124
|
export var UserPreferenceOverrideExtractionConfigurationInput = [
|
|
@@ -2256,7 +3126,7 @@ export var UserPreferenceOverrideExtractionConfigurationInput = [
|
|
|
2256
3126
|
n0,
|
|
2257
3127
|
_UPOECI,
|
|
2258
3128
|
0,
|
|
2259
|
-
[_aTP,
|
|
3129
|
+
[_aTP, _mI],
|
|
2260
3130
|
[[() => Prompt, 0], 0],
|
|
2261
3131
|
];
|
|
2262
3132
|
export var ValidationException = [
|
|
@@ -2289,8 +3159,12 @@ export var AgentRuntimeEndpoints = [1, n0, _AREg, 0, [() => AgentRuntimeEndpoint
|
|
|
2289
3159
|
export var AgentRuntimes = [1, n0, _ARg, 0, [() => AgentRuntime, 0]];
|
|
2290
3160
|
export var AllowedAudienceList = 64 | 0;
|
|
2291
3161
|
export var AllowedClientsList = 64 | 0;
|
|
3162
|
+
export var AllowedScopesType = 64 | 0;
|
|
3163
|
+
export var ApiGatewayToolFilters = [1, n0, _AGTFp, 0, () => ApiGatewayToolFilter];
|
|
3164
|
+
export var ApiGatewayToolOverrides = [1, n0, _AGTOp, 0, () => ApiGatewayToolOverride];
|
|
2292
3165
|
export var ApiKeyCredentialProviders = [1, n0, _AKCP, 0, () => ApiKeyCredentialProviderItem];
|
|
2293
3166
|
export var BrowserSummaries = [1, n0, _BSr, 0, [() => BrowserSummary, 0]];
|
|
3167
|
+
export var CategoricalScaleDefinitions = [1, n0, _CSDa, 0, () => CategoricalScaleDefinition];
|
|
2294
3168
|
export var CodeInterpreterSummaries = [1, n0, _CISo, 0, [() => CodeInterpreterSummary, 0]];
|
|
2295
3169
|
export var CredentialProviderConfigurations = [
|
|
2296
3170
|
1,
|
|
@@ -2299,8 +3173,13 @@ export var CredentialProviderConfigurations = [
|
|
|
2299
3173
|
0,
|
|
2300
3174
|
[() => CredentialProviderConfiguration, 0],
|
|
2301
3175
|
];
|
|
3176
|
+
export var CustomClaimValidationsType = [1, n0, _CCVTu, 0, () => CustomClaimValidationType];
|
|
2302
3177
|
export var DeleteMemoryStrategiesList = [1, n0, _DMSL, 0, () => DeleteMemoryStrategyInput];
|
|
2303
3178
|
export var EntryPoints = 64 | 0;
|
|
3179
|
+
export var EvaluatorList = [1, n0, _EL, 0, () => EvaluatorReference];
|
|
3180
|
+
export var EvaluatorSummaryList = [1, n0, _ESL, 0, [() => EvaluatorSummary, 0]];
|
|
3181
|
+
export var FilterList = [1, n0, _FL, 0, () => Filter];
|
|
3182
|
+
export var Findings = [1, n0, _Fin, 0, () => Finding];
|
|
2304
3183
|
export var GatewayInterceptionPoints = 64 | 0;
|
|
2305
3184
|
export var GatewayInterceptorConfigurations = [
|
|
2306
3185
|
1,
|
|
@@ -2311,19 +3190,37 @@ export var GatewayInterceptorConfigurations = [
|
|
|
2311
3190
|
];
|
|
2312
3191
|
export var GatewaySummaries = [1, n0, _GSa, 0, [() => GatewaySummary, 0]];
|
|
2313
3192
|
export var GatewayTargetList = [1, n0, _GTL, 0, [() => GatewayTarget, 0]];
|
|
3193
|
+
export var LogGroupNamesList = 64 | 0;
|
|
3194
|
+
export var MatchValueStringList = 64 | 0;
|
|
2314
3195
|
export var McpSupportedVersions = 64 | 0;
|
|
2315
3196
|
export var MemoryStrategyInputList = [1, n0, _MSIL, 0, [() => MemoryStrategyInput, 0]];
|
|
2316
3197
|
export var MemoryStrategyList = [1, n0, _MSL, 0, [() => MemoryStrategy, 0]];
|
|
2317
3198
|
export var MemorySummaryList = [1, n0, _MSLe, 0, () => MemorySummary];
|
|
2318
3199
|
export var ModifyMemoryStrategiesList = [1, n0, _MMSL, 0, [() => ModifyMemoryStrategyInput, 0]];
|
|
2319
3200
|
export var NamespacesList = 64 | 0;
|
|
3201
|
+
export var NonEmptyStringList = 64 | 0;
|
|
3202
|
+
export var NumericalScaleDefinitions = [1, n0, _NSDu, 0, () => NumericalScaleDefinition];
|
|
2320
3203
|
export var Oauth2CredentialProviders = [1, n0, _OCP, 0, () => Oauth2CredentialProviderItem];
|
|
2321
3204
|
export var OAuthScopes = 64 | 0;
|
|
3205
|
+
export var OnlineEvaluationConfigSummaryList = [
|
|
3206
|
+
1,
|
|
3207
|
+
n0,
|
|
3208
|
+
_OECSL,
|
|
3209
|
+
0,
|
|
3210
|
+
[() => OnlineEvaluationConfigSummary, 0],
|
|
3211
|
+
];
|
|
3212
|
+
export var Policies = [1, n0, _Pol, 0, [() => Policy, 0]];
|
|
3213
|
+
export var PolicyEngines = [1, n0, _PEo, 0, [() => PolicyEngine, 0]];
|
|
3214
|
+
export var PolicyGenerationAssets = [1, n0, _PGAo, 0, () => PolicyGenerationAsset];
|
|
3215
|
+
export var PolicyGenerations = [1, n0, _PGo, 0, () => PolicyGeneration];
|
|
3216
|
+
export var PolicyStatusReasons = 64 | 0;
|
|
2322
3217
|
export var RequestHeaderAllowlist = 64 | 0;
|
|
2323
3218
|
export var RequiredProperties = 64 | 0;
|
|
2324
3219
|
export var ResourceOauth2ReturnUrlListType = 64 | 0;
|
|
2325
3220
|
export var ResponseListType = 64 | 0;
|
|
3221
|
+
export var RestApiMethods = 64 | 0;
|
|
2326
3222
|
export var SecurityGroups = 64 | 0;
|
|
3223
|
+
export var ServiceNamesList = 64 | 0;
|
|
2327
3224
|
export var StatusReasons = 64 | 0;
|
|
2328
3225
|
export var Subnets = 64 | 0;
|
|
2329
3226
|
export var TagKeyList = 64 | 0;
|
|
@@ -2344,7 +3241,7 @@ export var AgentRuntimeArtifact = [
|
|
|
2344
3241
|
n0,
|
|
2345
3242
|
_ARA,
|
|
2346
3243
|
0,
|
|
2347
|
-
[
|
|
3244
|
+
[_cCo, _cCod],
|
|
2348
3245
|
[() => ContainerConfiguration, () => CodeConfiguration],
|
|
2349
3246
|
];
|
|
2350
3247
|
export var ApiSchemaConfiguration = [
|
|
@@ -2363,6 +3260,7 @@ export var AuthorizerConfiguration = [
|
|
|
2363
3260
|
[_cJWTA],
|
|
2364
3261
|
[() => CustomJWTAuthorizerConfiguration],
|
|
2365
3262
|
];
|
|
3263
|
+
export var ClaimMatchValueType = [3, n0, _CMVT, 0, [_mVS, _mVSL], [0, 64 | 0]];
|
|
2366
3264
|
export var Code = [3, n0, _C, 0, [_s_], [() => S3Location]];
|
|
2367
3265
|
export var ConsolidationConfiguration = [
|
|
2368
3266
|
3,
|
|
@@ -2372,10 +3270,11 @@ export var ConsolidationConfiguration = [
|
|
|
2372
3270
|
[_cCC],
|
|
2373
3271
|
[[() => CustomConsolidationConfiguration, 0]],
|
|
2374
3272
|
];
|
|
3273
|
+
export var Content = [3, n0, _Co, 0, [_rTa], [0]];
|
|
2375
3274
|
export var CredentialProvider = [
|
|
2376
3275
|
3,
|
|
2377
3276
|
n0,
|
|
2378
|
-
|
|
3277
|
+
_CPr,
|
|
2379
3278
|
0,
|
|
2380
3279
|
[_oCP, _aKCP],
|
|
2381
3280
|
[[() => OAuthCredentialProvider, 0], () => GatewayApiKeyCredentialProvider],
|
|
@@ -2385,11 +3284,12 @@ export var CustomConfigurationInput = [
|
|
|
2385
3284
|
n0,
|
|
2386
3285
|
_CCI,
|
|
2387
3286
|
0,
|
|
2388
|
-
[_sO, _sOu, _uPO, _sMC],
|
|
3287
|
+
[_sO, _sOu, _uPO, _eO, _sMC],
|
|
2389
3288
|
[
|
|
2390
3289
|
[() => SemanticOverrideConfigurationInput, 0],
|
|
2391
3290
|
[() => SummaryOverrideConfigurationInput, 0],
|
|
2392
3291
|
[() => UserPreferenceOverrideConfigurationInput, 0],
|
|
3292
|
+
[() => EpisodicOverrideConfigurationInput, 0],
|
|
2393
3293
|
() => SelfManagedConfigurationInput,
|
|
2394
3294
|
],
|
|
2395
3295
|
];
|
|
@@ -2398,11 +3298,12 @@ export var CustomConsolidationConfiguration = [
|
|
|
2398
3298
|
n0,
|
|
2399
3299
|
_CCC,
|
|
2400
3300
|
0,
|
|
2401
|
-
[_sCO, _sCOu, _uPCO],
|
|
3301
|
+
[_sCO, _sCOu, _uPCO, _eCO],
|
|
2402
3302
|
[
|
|
2403
3303
|
[() => SemanticConsolidationOverride, 0],
|
|
2404
3304
|
[() => SummaryConsolidationOverride, 0],
|
|
2405
3305
|
[() => UserPreferenceConsolidationOverride, 0],
|
|
3306
|
+
[() => EpisodicConsolidationOverride, 0],
|
|
2406
3307
|
],
|
|
2407
3308
|
];
|
|
2408
3309
|
export var CustomConsolidationConfigurationInput = [
|
|
@@ -2410,11 +3311,12 @@ export var CustomConsolidationConfigurationInput = [
|
|
|
2410
3311
|
n0,
|
|
2411
3312
|
_CCCI,
|
|
2412
3313
|
0,
|
|
2413
|
-
[_sCO, _sCOu, _uPCO],
|
|
3314
|
+
[_sCO, _sCOu, _uPCO, _eCO],
|
|
2414
3315
|
[
|
|
2415
3316
|
[() => SemanticOverrideConsolidationConfigurationInput, 0],
|
|
2416
3317
|
[() => SummaryOverrideConsolidationConfigurationInput, 0],
|
|
2417
3318
|
[() => UserPreferenceOverrideConsolidationConfigurationInput, 0],
|
|
3319
|
+
[() => EpisodicOverrideConsolidationConfigurationInput, 0],
|
|
2418
3320
|
],
|
|
2419
3321
|
];
|
|
2420
3322
|
export var CustomExtractionConfiguration = [
|
|
@@ -2422,10 +3324,11 @@ export var CustomExtractionConfiguration = [
|
|
|
2422
3324
|
n0,
|
|
2423
3325
|
_CEC,
|
|
2424
3326
|
0,
|
|
2425
|
-
[_sEO, _uPEO],
|
|
3327
|
+
[_sEO, _uPEO, _eEO],
|
|
2426
3328
|
[
|
|
2427
3329
|
[() => SemanticExtractionOverride, 0],
|
|
2428
3330
|
[() => UserPreferenceExtractionOverride, 0],
|
|
3331
|
+
[() => EpisodicExtractionOverride, 0],
|
|
2429
3332
|
],
|
|
2430
3333
|
];
|
|
2431
3334
|
export var CustomExtractionConfigurationInput = [
|
|
@@ -2433,20 +3336,42 @@ export var CustomExtractionConfigurationInput = [
|
|
|
2433
3336
|
n0,
|
|
2434
3337
|
_CECI,
|
|
2435
3338
|
0,
|
|
2436
|
-
[_sEO, _uPEO],
|
|
3339
|
+
[_sEO, _uPEO, _eEO],
|
|
2437
3340
|
[
|
|
2438
3341
|
[() => SemanticOverrideExtractionConfigurationInput, 0],
|
|
2439
3342
|
[() => UserPreferenceOverrideExtractionConfigurationInput, 0],
|
|
3343
|
+
[() => EpisodicOverrideExtractionConfigurationInput, 0],
|
|
2440
3344
|
],
|
|
2441
3345
|
];
|
|
3346
|
+
export var CustomReflectionConfiguration = [
|
|
3347
|
+
3,
|
|
3348
|
+
n0,
|
|
3349
|
+
_CRC,
|
|
3350
|
+
0,
|
|
3351
|
+
[_eRO],
|
|
3352
|
+
[[() => EpisodicReflectionOverride, 0]],
|
|
3353
|
+
];
|
|
3354
|
+
export var CustomReflectionConfigurationInput = [
|
|
3355
|
+
3,
|
|
3356
|
+
n0,
|
|
3357
|
+
_CRCI,
|
|
3358
|
+
0,
|
|
3359
|
+
[_eRO],
|
|
3360
|
+
[[() => EpisodicOverrideReflectionConfigurationInput, 0]],
|
|
3361
|
+
];
|
|
3362
|
+
export var DataSourceConfig = [3, n0, _DSC, 0, [_cWL], [() => CloudWatchLogsInputConfig]];
|
|
3363
|
+
export var EvaluatorConfig = [3, n0, _EC, 0, [_lAAJ], [[() => LlmAsAJudgeEvaluatorConfig, 0]]];
|
|
3364
|
+
export var EvaluatorModelConfig = [3, n0, _EMC, 0, [_bEMC], [() => BedrockEvaluatorModelConfig]];
|
|
3365
|
+
export var EvaluatorReference = [3, n0, _ER, 0, [_eI], [0]];
|
|
2442
3366
|
export var ExtractionConfiguration = [
|
|
2443
3367
|
3,
|
|
2444
3368
|
n0,
|
|
2445
|
-
|
|
3369
|
+
_ECx,
|
|
2446
3370
|
0,
|
|
2447
3371
|
[_cEC],
|
|
2448
3372
|
[[() => CustomExtractionConfiguration, 0]],
|
|
2449
3373
|
];
|
|
3374
|
+
export var FilterValue = [3, n0, _FV, 0, [_sVt, _dV, _bV], [0, 1, 2]];
|
|
2450
3375
|
export var GatewayProtocolConfiguration = [
|
|
2451
3376
|
3,
|
|
2452
3377
|
n0,
|
|
@@ -2458,9 +3383,9 @@ export var GatewayProtocolConfiguration = [
|
|
|
2458
3383
|
export var InterceptorConfiguration = [
|
|
2459
3384
|
3,
|
|
2460
3385
|
n0,
|
|
2461
|
-
|
|
3386
|
+
_ICnt,
|
|
2462
3387
|
0,
|
|
2463
|
-
[
|
|
3388
|
+
[_la],
|
|
2464
3389
|
[() => LambdaInterceptorConfiguration],
|
|
2465
3390
|
];
|
|
2466
3391
|
export var McpTargetConfiguration = [
|
|
@@ -2468,12 +3393,13 @@ export var McpTargetConfiguration = [
|
|
|
2468
3393
|
n0,
|
|
2469
3394
|
_MTC,
|
|
2470
3395
|
0,
|
|
2471
|
-
[_oAS, _sM,
|
|
3396
|
+
[_oAS, _sM, _la, _mSc, _aG],
|
|
2472
3397
|
[
|
|
2473
3398
|
[() => ApiSchemaConfiguration, 0],
|
|
2474
3399
|
[() => ApiSchemaConfiguration, 0],
|
|
2475
3400
|
() => McpLambdaTargetConfiguration,
|
|
2476
3401
|
() => McpServerTargetConfiguration,
|
|
3402
|
+
() => ApiGatewayTargetConfiguration,
|
|
2477
3403
|
],
|
|
2478
3404
|
];
|
|
2479
3405
|
export var MemoryStrategyInput = [
|
|
@@ -2481,12 +3407,13 @@ export var MemoryStrategyInput = [
|
|
|
2481
3407
|
n0,
|
|
2482
3408
|
_MSI,
|
|
2483
3409
|
0,
|
|
2484
|
-
[_sMS, _sMSu, _uPMS, _cMS],
|
|
3410
|
+
[_sMS, _sMSu, _uPMS, _cMS, _eMS],
|
|
2485
3411
|
[
|
|
2486
3412
|
[() => SemanticMemoryStrategyInput, 0],
|
|
2487
3413
|
[() => SummaryMemoryStrategyInput, 0],
|
|
2488
3414
|
[() => UserPreferenceMemoryStrategyInput, 0],
|
|
2489
3415
|
[() => CustomMemoryStrategyInput, 0],
|
|
3416
|
+
[() => EpisodicMemoryStrategyInput, 0],
|
|
2490
3417
|
],
|
|
2491
3418
|
];
|
|
2492
3419
|
export var ModifyConsolidationConfiguration = [
|
|
@@ -2505,6 +3432,14 @@ export var ModifyExtractionConfiguration = [
|
|
|
2505
3432
|
[_cEC],
|
|
2506
3433
|
[[() => CustomExtractionConfigurationInput, 0]],
|
|
2507
3434
|
];
|
|
3435
|
+
export var ModifyReflectionConfiguration = [
|
|
3436
|
+
3,
|
|
3437
|
+
n0,
|
|
3438
|
+
_MRC,
|
|
3439
|
+
0,
|
|
3440
|
+
[_eRC, _cRC],
|
|
3441
|
+
[() => EpisodicReflectionConfigurationInput, [() => CustomReflectionConfigurationInput, 0]],
|
|
3442
|
+
];
|
|
2508
3443
|
export var Oauth2Discovery = [
|
|
2509
3444
|
3,
|
|
2510
3445
|
n0,
|
|
@@ -2549,7 +3484,25 @@ export var Oauth2ProviderConfigOutput = [
|
|
|
2549
3484
|
() => IncludedOauth2ProviderConfigOutput,
|
|
2550
3485
|
],
|
|
2551
3486
|
];
|
|
3487
|
+
export var PolicyDefinition = [3, n0, _PD, 0, [_ce], [() => CedarPolicy]];
|
|
3488
|
+
export var RatingScale = [
|
|
3489
|
+
3,
|
|
3490
|
+
n0,
|
|
3491
|
+
_RS,
|
|
3492
|
+
0,
|
|
3493
|
+
[_nu, _ca],
|
|
3494
|
+
[() => NumericalScaleDefinitions, () => CategoricalScaleDefinitions],
|
|
3495
|
+
];
|
|
3496
|
+
export var ReflectionConfiguration = [
|
|
3497
|
+
3,
|
|
3498
|
+
n0,
|
|
3499
|
+
_RCe,
|
|
3500
|
+
0,
|
|
3501
|
+
[_cRC, _eRC],
|
|
3502
|
+
[[() => CustomReflectionConfiguration, 0], () => EpisodicReflectionConfiguration],
|
|
3503
|
+
];
|
|
2552
3504
|
export var RequestHeaderConfiguration = [3, n0, _RHC, 0, [_rHA], [64 | 0]];
|
|
3505
|
+
export var Resource = [3, n0, _Re, 0, [_a], [0]];
|
|
2553
3506
|
export var TargetConfiguration = [3, n0, _TC, 0, [_mc], [[() => McpTargetConfiguration, 0]]];
|
|
2554
3507
|
export var ToolSchema = [
|
|
2555
3508
|
3,
|
|
@@ -2625,6 +3578,16 @@ export var CreateCodeInterpreter = [
|
|
|
2625
3578
|
() => CreateCodeInterpreterRequest,
|
|
2626
3579
|
() => CreateCodeInterpreterResponse,
|
|
2627
3580
|
];
|
|
3581
|
+
export var CreateEvaluator = [
|
|
3582
|
+
9,
|
|
3583
|
+
n0,
|
|
3584
|
+
_CEr,
|
|
3585
|
+
{
|
|
3586
|
+
[_h]: ["POST", "/evaluators/create", 202],
|
|
3587
|
+
},
|
|
3588
|
+
() => CreateEvaluatorRequest,
|
|
3589
|
+
() => CreateEvaluatorResponse,
|
|
3590
|
+
];
|
|
2628
3591
|
export var CreateGateway = [
|
|
2629
3592
|
9,
|
|
2630
3593
|
n0,
|
|
@@ -2665,6 +3628,36 @@ export var CreateOauth2CredentialProvider = [
|
|
|
2665
3628
|
() => CreateOauth2CredentialProviderRequest,
|
|
2666
3629
|
() => CreateOauth2CredentialProviderResponse,
|
|
2667
3630
|
];
|
|
3631
|
+
export var CreateOnlineEvaluationConfig = [
|
|
3632
|
+
9,
|
|
3633
|
+
n0,
|
|
3634
|
+
_COEC,
|
|
3635
|
+
{
|
|
3636
|
+
[_h]: ["POST", "/online-evaluation-configs/create", 202],
|
|
3637
|
+
},
|
|
3638
|
+
() => CreateOnlineEvaluationConfigRequest,
|
|
3639
|
+
() => CreateOnlineEvaluationConfigResponse,
|
|
3640
|
+
];
|
|
3641
|
+
export var CreatePolicy = [
|
|
3642
|
+
9,
|
|
3643
|
+
n0,
|
|
3644
|
+
_CPre,
|
|
3645
|
+
{
|
|
3646
|
+
[_h]: ["POST", "/policy-engines/{policyEngineId}/policies", 202],
|
|
3647
|
+
},
|
|
3648
|
+
() => CreatePolicyRequest,
|
|
3649
|
+
() => CreatePolicyResponse,
|
|
3650
|
+
];
|
|
3651
|
+
export var CreatePolicyEngine = [
|
|
3652
|
+
9,
|
|
3653
|
+
n0,
|
|
3654
|
+
_CPE,
|
|
3655
|
+
{
|
|
3656
|
+
[_h]: ["POST", "/policy-engines", 202],
|
|
3657
|
+
},
|
|
3658
|
+
() => CreatePolicyEngineRequest,
|
|
3659
|
+
() => CreatePolicyEngineResponse,
|
|
3660
|
+
];
|
|
2668
3661
|
export var CreateWorkloadIdentity = [
|
|
2669
3662
|
9,
|
|
2670
3663
|
n0,
|
|
@@ -2725,6 +3718,16 @@ export var DeleteCodeInterpreter = [
|
|
|
2725
3718
|
() => DeleteCodeInterpreterRequest,
|
|
2726
3719
|
() => DeleteCodeInterpreterResponse,
|
|
2727
3720
|
];
|
|
3721
|
+
export var DeleteEvaluator = [
|
|
3722
|
+
9,
|
|
3723
|
+
n0,
|
|
3724
|
+
_DE,
|
|
3725
|
+
{
|
|
3726
|
+
[_h]: ["DELETE", "/evaluators/{evaluatorId}", 202],
|
|
3727
|
+
},
|
|
3728
|
+
() => DeleteEvaluatorRequest,
|
|
3729
|
+
() => DeleteEvaluatorResponse,
|
|
3730
|
+
];
|
|
2728
3731
|
export var DeleteGateway = [
|
|
2729
3732
|
9,
|
|
2730
3733
|
n0,
|
|
@@ -2765,6 +3768,46 @@ export var DeleteOauth2CredentialProvider = [
|
|
|
2765
3768
|
() => DeleteOauth2CredentialProviderRequest,
|
|
2766
3769
|
() => DeleteOauth2CredentialProviderResponse,
|
|
2767
3770
|
];
|
|
3771
|
+
export var DeleteOnlineEvaluationConfig = [
|
|
3772
|
+
9,
|
|
3773
|
+
n0,
|
|
3774
|
+
_DOEC,
|
|
3775
|
+
{
|
|
3776
|
+
[_h]: ["DELETE", "/online-evaluation-configs/{onlineEvaluationConfigId}", 202],
|
|
3777
|
+
},
|
|
3778
|
+
() => DeleteOnlineEvaluationConfigRequest,
|
|
3779
|
+
() => DeleteOnlineEvaluationConfigResponse,
|
|
3780
|
+
];
|
|
3781
|
+
export var DeletePolicy = [
|
|
3782
|
+
9,
|
|
3783
|
+
n0,
|
|
3784
|
+
_DP,
|
|
3785
|
+
{
|
|
3786
|
+
[_h]: ["DELETE", "/policy-engines/{policyEngineId}/policies/{policyId}", 202],
|
|
3787
|
+
},
|
|
3788
|
+
() => DeletePolicyRequest,
|
|
3789
|
+
() => DeletePolicyResponse,
|
|
3790
|
+
];
|
|
3791
|
+
export var DeletePolicyEngine = [
|
|
3792
|
+
9,
|
|
3793
|
+
n0,
|
|
3794
|
+
_DPE,
|
|
3795
|
+
{
|
|
3796
|
+
[_h]: ["DELETE", "/policy-engines/{policyEngineId}", 202],
|
|
3797
|
+
},
|
|
3798
|
+
() => DeletePolicyEngineRequest,
|
|
3799
|
+
() => DeletePolicyEngineResponse,
|
|
3800
|
+
];
|
|
3801
|
+
export var DeleteResourcePolicy = [
|
|
3802
|
+
9,
|
|
3803
|
+
n0,
|
|
3804
|
+
_DRP,
|
|
3805
|
+
{
|
|
3806
|
+
[_h]: ["DELETE", "/resourcepolicy/{resourceArn}", 204],
|
|
3807
|
+
},
|
|
3808
|
+
() => DeleteResourcePolicyRequest,
|
|
3809
|
+
() => DeleteResourcePolicyResponse,
|
|
3810
|
+
];
|
|
2768
3811
|
export var DeleteWorkloadIdentity = [
|
|
2769
3812
|
9,
|
|
2770
3813
|
n0,
|
|
@@ -2825,6 +3868,16 @@ export var GetCodeInterpreter = [
|
|
|
2825
3868
|
() => GetCodeInterpreterRequest,
|
|
2826
3869
|
() => GetCodeInterpreterResponse,
|
|
2827
3870
|
];
|
|
3871
|
+
export var GetEvaluator = [
|
|
3872
|
+
9,
|
|
3873
|
+
n0,
|
|
3874
|
+
_GE,
|
|
3875
|
+
{
|
|
3876
|
+
[_h]: ["GET", "/evaluators/{evaluatorId}", 200],
|
|
3877
|
+
},
|
|
3878
|
+
() => GetEvaluatorRequest,
|
|
3879
|
+
() => GetEvaluatorResponse,
|
|
3880
|
+
];
|
|
2828
3881
|
export var GetGateway = [
|
|
2829
3882
|
9,
|
|
2830
3883
|
n0,
|
|
@@ -2865,6 +3918,56 @@ export var GetOauth2CredentialProvider = [
|
|
|
2865
3918
|
() => GetOauth2CredentialProviderRequest,
|
|
2866
3919
|
() => GetOauth2CredentialProviderResponse,
|
|
2867
3920
|
];
|
|
3921
|
+
export var GetOnlineEvaluationConfig = [
|
|
3922
|
+
9,
|
|
3923
|
+
n0,
|
|
3924
|
+
_GOEC,
|
|
3925
|
+
{
|
|
3926
|
+
[_h]: ["GET", "/online-evaluation-configs/{onlineEvaluationConfigId}", 200],
|
|
3927
|
+
},
|
|
3928
|
+
() => GetOnlineEvaluationConfigRequest,
|
|
3929
|
+
() => GetOnlineEvaluationConfigResponse,
|
|
3930
|
+
];
|
|
3931
|
+
export var GetPolicy = [
|
|
3932
|
+
9,
|
|
3933
|
+
n0,
|
|
3934
|
+
_GP,
|
|
3935
|
+
{
|
|
3936
|
+
[_h]: ["GET", "/policy-engines/{policyEngineId}/policies/{policyId}", 200],
|
|
3937
|
+
},
|
|
3938
|
+
() => GetPolicyRequest,
|
|
3939
|
+
() => GetPolicyResponse,
|
|
3940
|
+
];
|
|
3941
|
+
export var GetPolicyEngine = [
|
|
3942
|
+
9,
|
|
3943
|
+
n0,
|
|
3944
|
+
_GPE,
|
|
3945
|
+
{
|
|
3946
|
+
[_h]: ["GET", "/policy-engines/{policyEngineId}", 200],
|
|
3947
|
+
},
|
|
3948
|
+
() => GetPolicyEngineRequest,
|
|
3949
|
+
() => GetPolicyEngineResponse,
|
|
3950
|
+
];
|
|
3951
|
+
export var GetPolicyGeneration = [
|
|
3952
|
+
9,
|
|
3953
|
+
n0,
|
|
3954
|
+
_GPG,
|
|
3955
|
+
{
|
|
3956
|
+
[_h]: ["GET", "/policy-engines/{policyEngineId}/policy-generations/{policyGenerationId}", 200],
|
|
3957
|
+
},
|
|
3958
|
+
() => GetPolicyGenerationRequest,
|
|
3959
|
+
() => GetPolicyGenerationResponse,
|
|
3960
|
+
];
|
|
3961
|
+
export var GetResourcePolicy = [
|
|
3962
|
+
9,
|
|
3963
|
+
n0,
|
|
3964
|
+
_GRP,
|
|
3965
|
+
{
|
|
3966
|
+
[_h]: ["GET", "/resourcepolicy/{resourceArn}", 200],
|
|
3967
|
+
},
|
|
3968
|
+
() => GetResourcePolicyRequest,
|
|
3969
|
+
() => GetResourcePolicyResponse,
|
|
3970
|
+
];
|
|
2868
3971
|
export var GetTokenVault = [
|
|
2869
3972
|
9,
|
|
2870
3973
|
n0,
|
|
@@ -2945,6 +4048,16 @@ export var ListCodeInterpreters = [
|
|
|
2945
4048
|
() => ListCodeInterpretersRequest,
|
|
2946
4049
|
() => ListCodeInterpretersResponse,
|
|
2947
4050
|
];
|
|
4051
|
+
export var ListEvaluators = [
|
|
4052
|
+
9,
|
|
4053
|
+
n0,
|
|
4054
|
+
_LE,
|
|
4055
|
+
{
|
|
4056
|
+
[_h]: ["POST", "/evaluators", 200],
|
|
4057
|
+
},
|
|
4058
|
+
() => ListEvaluatorsRequest,
|
|
4059
|
+
() => ListEvaluatorsResponse,
|
|
4060
|
+
];
|
|
2948
4061
|
export var ListGateways = [
|
|
2949
4062
|
9,
|
|
2950
4063
|
n0,
|
|
@@ -2985,6 +4098,56 @@ export var ListOauth2CredentialProviders = [
|
|
|
2985
4098
|
() => ListOauth2CredentialProvidersRequest,
|
|
2986
4099
|
() => ListOauth2CredentialProvidersResponse,
|
|
2987
4100
|
];
|
|
4101
|
+
export var ListOnlineEvaluationConfigs = [
|
|
4102
|
+
9,
|
|
4103
|
+
n0,
|
|
4104
|
+
_LOEC,
|
|
4105
|
+
{
|
|
4106
|
+
[_h]: ["POST", "/online-evaluation-configs", 200],
|
|
4107
|
+
},
|
|
4108
|
+
() => ListOnlineEvaluationConfigsRequest,
|
|
4109
|
+
() => ListOnlineEvaluationConfigsResponse,
|
|
4110
|
+
];
|
|
4111
|
+
export var ListPolicies = [
|
|
4112
|
+
9,
|
|
4113
|
+
n0,
|
|
4114
|
+
_LP,
|
|
4115
|
+
{
|
|
4116
|
+
[_h]: ["GET", "/policy-engines/{policyEngineId}/policies", 200],
|
|
4117
|
+
},
|
|
4118
|
+
() => ListPoliciesRequest,
|
|
4119
|
+
() => ListPoliciesResponse,
|
|
4120
|
+
];
|
|
4121
|
+
export var ListPolicyEngines = [
|
|
4122
|
+
9,
|
|
4123
|
+
n0,
|
|
4124
|
+
_LPE,
|
|
4125
|
+
{
|
|
4126
|
+
[_h]: ["GET", "/policy-engines", 200],
|
|
4127
|
+
},
|
|
4128
|
+
() => ListPolicyEnginesRequest,
|
|
4129
|
+
() => ListPolicyEnginesResponse,
|
|
4130
|
+
];
|
|
4131
|
+
export var ListPolicyGenerationAssets = [
|
|
4132
|
+
9,
|
|
4133
|
+
n0,
|
|
4134
|
+
_LPGA,
|
|
4135
|
+
{
|
|
4136
|
+
[_h]: ["GET", "/policy-engines/{policyEngineId}/policy-generations/{policyGenerationId}/assets", 200],
|
|
4137
|
+
},
|
|
4138
|
+
() => ListPolicyGenerationAssetsRequest,
|
|
4139
|
+
() => ListPolicyGenerationAssetsResponse,
|
|
4140
|
+
];
|
|
4141
|
+
export var ListPolicyGenerations = [
|
|
4142
|
+
9,
|
|
4143
|
+
n0,
|
|
4144
|
+
_LPG,
|
|
4145
|
+
{
|
|
4146
|
+
[_h]: ["GET", "/policy-engines/{policyEngineId}/policy-generations", 200],
|
|
4147
|
+
},
|
|
4148
|
+
() => ListPolicyGenerationsRequest,
|
|
4149
|
+
() => ListPolicyGenerationsResponse,
|
|
4150
|
+
];
|
|
2988
4151
|
export var ListTagsForResource = [
|
|
2989
4152
|
9,
|
|
2990
4153
|
n0,
|
|
@@ -3005,6 +4168,16 @@ export var ListWorkloadIdentities = [
|
|
|
3005
4168
|
() => ListWorkloadIdentitiesRequest,
|
|
3006
4169
|
() => ListWorkloadIdentitiesResponse,
|
|
3007
4170
|
];
|
|
4171
|
+
export var PutResourcePolicy = [
|
|
4172
|
+
9,
|
|
4173
|
+
n0,
|
|
4174
|
+
_PRP,
|
|
4175
|
+
{
|
|
4176
|
+
[_h]: ["PUT", "/resourcepolicy/{resourceArn}", 201],
|
|
4177
|
+
},
|
|
4178
|
+
() => PutResourcePolicyRequest,
|
|
4179
|
+
() => PutResourcePolicyResponse,
|
|
4180
|
+
];
|
|
3008
4181
|
export var SetTokenVaultCMK = [
|
|
3009
4182
|
9,
|
|
3010
4183
|
n0,
|
|
@@ -3015,6 +4188,16 @@ export var SetTokenVaultCMK = [
|
|
|
3015
4188
|
() => SetTokenVaultCMKRequest,
|
|
3016
4189
|
() => SetTokenVaultCMKResponse,
|
|
3017
4190
|
];
|
|
4191
|
+
export var StartPolicyGeneration = [
|
|
4192
|
+
9,
|
|
4193
|
+
n0,
|
|
4194
|
+
_SPG,
|
|
4195
|
+
{
|
|
4196
|
+
[_h]: ["POST", "/policy-engines/{policyEngineId}/policy-generations", 202],
|
|
4197
|
+
},
|
|
4198
|
+
() => StartPolicyGenerationRequest,
|
|
4199
|
+
() => StartPolicyGenerationResponse,
|
|
4200
|
+
];
|
|
3018
4201
|
export var SynchronizeGatewayTargets = [
|
|
3019
4202
|
9,
|
|
3020
4203
|
n0,
|
|
@@ -3075,6 +4258,16 @@ export var UpdateApiKeyCredentialProvider = [
|
|
|
3075
4258
|
() => UpdateApiKeyCredentialProviderRequest,
|
|
3076
4259
|
() => UpdateApiKeyCredentialProviderResponse,
|
|
3077
4260
|
];
|
|
4261
|
+
export var UpdateEvaluator = [
|
|
4262
|
+
9,
|
|
4263
|
+
n0,
|
|
4264
|
+
_UEp,
|
|
4265
|
+
{
|
|
4266
|
+
[_h]: ["PUT", "/evaluators/{evaluatorId}", 202],
|
|
4267
|
+
},
|
|
4268
|
+
() => UpdateEvaluatorRequest,
|
|
4269
|
+
() => UpdateEvaluatorResponse,
|
|
4270
|
+
];
|
|
3078
4271
|
export var UpdateGateway = [
|
|
3079
4272
|
9,
|
|
3080
4273
|
n0,
|
|
@@ -3115,6 +4308,36 @@ export var UpdateOauth2CredentialProvider = [
|
|
|
3115
4308
|
() => UpdateOauth2CredentialProviderRequest,
|
|
3116
4309
|
() => UpdateOauth2CredentialProviderResponse,
|
|
3117
4310
|
];
|
|
4311
|
+
export var UpdateOnlineEvaluationConfig = [
|
|
4312
|
+
9,
|
|
4313
|
+
n0,
|
|
4314
|
+
_UOEC,
|
|
4315
|
+
{
|
|
4316
|
+
[_h]: ["PUT", "/online-evaluation-configs/{onlineEvaluationConfigId}", 202],
|
|
4317
|
+
},
|
|
4318
|
+
() => UpdateOnlineEvaluationConfigRequest,
|
|
4319
|
+
() => UpdateOnlineEvaluationConfigResponse,
|
|
4320
|
+
];
|
|
4321
|
+
export var UpdatePolicy = [
|
|
4322
|
+
9,
|
|
4323
|
+
n0,
|
|
4324
|
+
_UP,
|
|
4325
|
+
{
|
|
4326
|
+
[_h]: ["PUT", "/policy-engines/{policyEngineId}/policies/{policyId}", 202],
|
|
4327
|
+
},
|
|
4328
|
+
() => UpdatePolicyRequest,
|
|
4329
|
+
() => UpdatePolicyResponse,
|
|
4330
|
+
];
|
|
4331
|
+
export var UpdatePolicyEngine = [
|
|
4332
|
+
9,
|
|
4333
|
+
n0,
|
|
4334
|
+
_UPE,
|
|
4335
|
+
{
|
|
4336
|
+
[_h]: ["PUT", "/policy-engines/{policyEngineId}", 202],
|
|
4337
|
+
},
|
|
4338
|
+
() => UpdatePolicyEngineRequest,
|
|
4339
|
+
() => UpdatePolicyEngineResponse,
|
|
4340
|
+
];
|
|
3118
4341
|
export var UpdateWorkloadIdentity = [
|
|
3119
4342
|
9,
|
|
3120
4343
|
n0,
|