@aws-sdk/client-bedrock-agentcore-control 3.1103.0 → 3.1105.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 +84 -0
- package/dist-cjs/index.js +745 -91
- package/dist-es/BedrockAgentCoreControl.js +30 -0
- package/dist-es/commands/BatchPutGatewayRateLimitsCommand.js +4 -0
- package/dist-es/commands/CreateCapacityProviderCommand.js +4 -0
- package/dist-es/commands/CreateGatewayRateLimitCommand.js +4 -0
- package/dist-es/commands/DeleteCapacityProviderCommand.js +4 -0
- package/dist-es/commands/DeleteGatewayRateLimitCommand.js +4 -0
- package/dist-es/commands/GetCapacityProviderCommand.js +4 -0
- package/dist-es/commands/GetGatewayRateLimitCommand.js +4 -0
- package/dist-es/commands/ListAgentRuntimeVersionsByCapacityProviderCommand.js +4 -0
- package/dist-es/commands/ListCapacityProvidersCommand.js +4 -0
- package/dist-es/commands/ListGatewayRateLimitsCommand.js +4 -0
- package/dist-es/commands/UpdateCapacityProviderCommand.js +4 -0
- package/dist-es/commands/UpdateGatewayRateLimitCommand.js +4 -0
- package/dist-es/commands/index.js +12 -0
- package/dist-es/models/enums.js +48 -0
- package/dist-es/models/errors.js +13 -0
- package/dist-es/pagination/ListAgentRuntimeVersionsByCapacityProviderPaginator.js +4 -0
- package/dist-es/pagination/ListCapacityProvidersPaginator.js +4 -0
- package/dist-es/pagination/ListGatewayRateLimitsPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +546 -91
- package/dist-types/BedrockAgentCoreControl.d.ts +106 -0
- package/dist-types/BedrockAgentCoreControlClient.d.ts +14 -2
- package/dist-types/commands/BatchPutGatewayRateLimitsCommand.d.ts +164 -0
- package/dist-types/commands/CreateAgentRuntimeCommand.d.ts +7 -0
- package/dist-types/commands/CreateCapacityProviderCommand.d.ts +189 -0
- package/dist-types/commands/CreateGatewayRateLimitCommand.d.ts +156 -0
- package/dist-types/commands/CreateGatewayTargetCommand.d.ts +16 -0
- package/dist-types/commands/CreateHarnessCommand.d.ts +8 -0
- package/dist-types/commands/CreateHarnessEndpointCommand.d.ts +1 -1
- package/dist-types/commands/CreatePolicyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAgentRuntimeCommand.d.ts +3 -1
- package/dist-types/commands/DeleteAgentRuntimeEndpointCommand.d.ts +1 -1
- package/dist-types/commands/DeleteCapacityProviderCommand.d.ts +94 -0
- package/dist-types/commands/DeleteGatewayRateLimitCommand.d.ts +91 -0
- package/dist-types/commands/DeleteGatewayTargetCommand.d.ts +1 -1
- package/dist-types/commands/DeleteHarnessCommand.d.ts +4 -0
- package/dist-types/commands/DeleteHarnessEndpointCommand.d.ts +1 -1
- package/dist-types/commands/DeletePolicyCommand.d.ts +1 -1
- package/dist-types/commands/GetAgentRuntimeCommand.d.ts +7 -0
- package/dist-types/commands/GetCapacityProviderCommand.d.ts +180 -0
- package/dist-types/commands/GetGatewayRateLimitCommand.d.ts +120 -0
- package/dist-types/commands/GetGatewayTargetCommand.d.ts +9 -1
- package/dist-types/commands/GetHarnessCommand.d.ts +4 -0
- package/dist-types/commands/GetHarnessEndpointCommand.d.ts +1 -1
- package/dist-types/commands/GetPolicyCommand.d.ts +1 -1
- package/dist-types/commands/GetPolicyGenerationCommand.d.ts +2 -1
- package/dist-types/commands/GetPolicyGenerationSummaryCommand.d.ts +1 -1
- package/dist-types/commands/GetPolicySummaryCommand.d.ts +1 -1
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +1 -1
- package/dist-types/commands/GetTokenVaultCommand.d.ts +1 -1
- package/dist-types/commands/ListAgentRuntimeVersionsByCapacityProviderCommand.d.ts +92 -0
- package/dist-types/commands/ListCapacityProvidersCommand.d.ts +93 -0
- package/dist-types/commands/ListGatewayRateLimitsCommand.d.ts +126 -0
- package/dist-types/commands/ListGatewayTargetsCommand.d.ts +2 -2
- package/dist-types/commands/ListHarnessEndpointsCommand.d.ts +1 -1
- package/dist-types/commands/ListPoliciesCommand.d.ts +1 -1
- package/dist-types/commands/ListPolicyGenerationAssetsCommand.d.ts +1 -1
- package/dist-types/commands/ListPolicyGenerationSummariesCommand.d.ts +1 -1
- package/dist-types/commands/ListPolicyGenerationsCommand.d.ts +1 -1
- package/dist-types/commands/ListPolicySummariesCommand.d.ts +1 -1
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +1 -1
- package/dist-types/commands/StartPolicyGenerationCommand.d.ts +1 -1
- package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +9 -1
- package/dist-types/commands/UpdateAgentRuntimeCommand.d.ts +7 -0
- package/dist-types/commands/UpdateCapacityProviderCommand.d.ts +101 -0
- package/dist-types/commands/UpdateGatewayRateLimitCommand.d.ts +149 -0
- package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +16 -0
- package/dist-types/commands/UpdateHarnessCommand.d.ts +8 -0
- package/dist-types/commands/UpdateHarnessEndpointCommand.d.ts +1 -1
- package/dist-types/commands/UpdatePolicyCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +12 -0
- package/dist-types/models/enums.d.ts +112 -0
- package/dist-types/models/errors.d.ts +13 -0
- package/dist-types/models/models_0.d.ts +2529 -2373
- package/dist-types/models/models_1.d.ts +4418 -4735
- package/dist-types/models/models_2.d.ts +1467 -3
- package/dist-types/pagination/ListAgentRuntimeVersionsByCapacityProviderPaginator.d.ts +7 -0
- package/dist-types/pagination/ListCapacityProvidersPaginator.d.ts +7 -0
- package/dist-types/pagination/ListGatewayRateLimitsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/schemas/schemas_0.d.ts +63 -0
- package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +226 -0
- package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +72 -0
- package/dist-types/ts3.4/commands/BatchPutGatewayRateLimitsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateCapacityProviderCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateGatewayRateLimitCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateHarnessEndpointCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreatePolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteCapacityProviderCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteGatewayRateLimitCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteGatewayTargetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteHarnessEndpointCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetCapacityProviderCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetGatewayRateLimitCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetGatewayTargetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetHarnessEndpointCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetPolicyGenerationCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/GetPolicyGenerationSummaryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetPolicySummaryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetTokenVaultCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAgentRuntimeVersionsByCapacityProviderCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListCapacityProvidersCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListGatewayRateLimitsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListGatewayTargetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListHarnessEndpointsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPoliciesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPolicyGenerationAssetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPolicyGenerationSummariesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPolicyGenerationsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPolicySummariesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartPolicyGenerationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SynchronizeGatewayTargetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateCapacityProviderCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdateGatewayRateLimitCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdateHarnessEndpointCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdatePolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +12 -0
- package/dist-types/ts3.4/models/enums.d.ts +60 -0
- package/dist-types/ts3.4/models/errors.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +363 -369
- package/dist-types/ts3.4/models/models_1.d.ts +371 -410
- package/dist-types/ts3.4/models/models_2.d.ts +410 -13
- package/dist-types/ts3.4/pagination/ListAgentRuntimeVersionsByCapacityProviderPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListCapacityProvidersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListGatewayRateLimitsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +63 -0
- package/package.json +1 -1
|
@@ -25,6 +25,8 @@ const _AR = "AgentRuntime";
|
|
|
25
25
|
const _ARA = "AgentRuntimeArtifact";
|
|
26
26
|
const _ARE = "AgentRuntimeEndpoint";
|
|
27
27
|
const _AREg = "AgentRuntimeEndpoints";
|
|
28
|
+
const _ARVS = "AgentRuntimeVersionSummary";
|
|
29
|
+
const _ARVSL = "AgentRuntimeVersionSummaryList";
|
|
28
30
|
const _ARg = "AgentRuntimes";
|
|
29
31
|
const _ASC = "ApiSchemaConfiguration";
|
|
30
32
|
const _ASD = "AgentSkillsDescriptor";
|
|
@@ -34,6 +36,11 @@ const _BEMC = "BedrockEvaluatorModelConfig";
|
|
|
34
36
|
const _BEP = "BrowserEnterprisePolicy";
|
|
35
37
|
const _BEPr = "BrowserEnterprisePolicies";
|
|
36
38
|
const _BNC = "BrowserNetworkConfiguration";
|
|
39
|
+
const _BPGRL = "BatchPutGatewayRateLimits";
|
|
40
|
+
const _BPGRLR = "BatchPutGatewayRateLimitsRequest";
|
|
41
|
+
const _BPGRLRa = "BatchPutGatewayRateLimitsResponse";
|
|
42
|
+
const _BPLE = "BatchPutLimitEntry";
|
|
43
|
+
const _BPLEa = "BatchPutLimitEntries";
|
|
37
44
|
const _BPS = "BrowserProfileSummary";
|
|
38
45
|
const _BPSr = "BrowserProfileSummaries";
|
|
39
46
|
const _BS = "BrowserSummary";
|
|
@@ -78,10 +85,14 @@ const _CCIRr = "CreateCodeInterpreterResponse";
|
|
|
78
85
|
const _CCIr = "CreateCodeInterpreter";
|
|
79
86
|
const _CCL = "ContentConfigurationList";
|
|
80
87
|
const _CCM = "ComponentConfigurationMap";
|
|
88
|
+
const _CCP = "CreateCapacityProvider";
|
|
89
|
+
const _CCPI = "CreateCapacityProviderInput";
|
|
90
|
+
const _CCPO = "CreateCapacityProviderOutput";
|
|
81
91
|
const _CCVT = "CustomClaimValidationType";
|
|
82
92
|
const _CCVTu = "CustomClaimValidationsType";
|
|
83
93
|
const _CCo = "CodeConfiguration";
|
|
84
94
|
const _CCom = "ComponentConfiguration";
|
|
95
|
+
const _CComp = "ComputeConfiguration";
|
|
85
96
|
const _CCon = "ConnectorConfiguration";
|
|
86
97
|
const _CConn = "ConnectorConfigurations";
|
|
87
98
|
const _CCons = "ConsolidationConfiguration";
|
|
@@ -102,6 +113,9 @@ const _CERr = "CreateEvaluatorResponse";
|
|
|
102
113
|
const _CEr = "CreateEvaluator";
|
|
103
114
|
const _CG = "CreateGateway";
|
|
104
115
|
const _CGR = "CreateGatewayRequest";
|
|
116
|
+
const _CGRL = "CreateGatewayRateLimit";
|
|
117
|
+
const _CGRLR = "CreateGatewayRateLimitRequest";
|
|
118
|
+
const _CGRLRr = "CreateGatewayRateLimitResponse";
|
|
105
119
|
const _CGRR = "CreateGatewayRuleRequest";
|
|
106
120
|
const _CGRRr = "CreateGatewayRuleResponse";
|
|
107
121
|
const _CGRr = "CreateGatewayResponse";
|
|
@@ -135,19 +149,21 @@ const _COECRr = "CreateOnlineEvaluationConfigResponse";
|
|
|
135
149
|
const _COPCI = "CustomOauth2ProviderConfigInput";
|
|
136
150
|
const _COPCO = "CustomOauth2ProviderConfigOutput";
|
|
137
151
|
const _CP = "CedarPolicy";
|
|
138
|
-
const _CPC = "
|
|
152
|
+
const _CPC = "CapacityProviderConfiguration";
|
|
139
153
|
const _CPCP = "CreatePaymentCredentialProvider";
|
|
140
154
|
const _CPCPR = "CreatePaymentCredentialProviderRequest";
|
|
141
155
|
const _CPCPRr = "CreatePaymentCredentialProviderResponse";
|
|
142
156
|
const _CPCR = "CreatePaymentConnectorRequest";
|
|
143
157
|
const _CPCRr = "CreatePaymentConnectorResponse";
|
|
144
|
-
const _CPCr = "
|
|
145
|
-
const _CPCre = "
|
|
158
|
+
const _CPCr = "CredentialProviderConfiguration";
|
|
159
|
+
const _CPCre = "CredentialProviderConfigurations";
|
|
146
160
|
const _CPCrea = "CreatePaymentConnector";
|
|
147
|
-
const _CPCred = "
|
|
161
|
+
const _CPCred = "CredentialsProviderConfigurations";
|
|
162
|
+
const _CPCrede = "CredentialsProviderConfiguration";
|
|
148
163
|
const _CPE = "CreatePolicyEngine";
|
|
149
164
|
const _CPER = "CreatePolicyEngineRequest";
|
|
150
165
|
const _CPERr = "CreatePolicyEngineResponse";
|
|
166
|
+
const _CPL = "CapacityProviderList";
|
|
151
167
|
const _CPM = "CreatePaymentManager";
|
|
152
168
|
const _CPMR = "CreatePaymentManagerRequest";
|
|
153
169
|
const _CPMRr = "CreatePaymentManagerResponse";
|
|
@@ -155,6 +171,8 @@ const _CPO = "ConnectorParameterOverride";
|
|
|
155
171
|
const _CPOo = "ConnectorParameterOverrides";
|
|
156
172
|
const _CPR = "CreatePolicyRequest";
|
|
157
173
|
const _CPRr = "CreatePolicyResponse";
|
|
174
|
+
const _CPS = "CapacityProviderSummary";
|
|
175
|
+
const _CPVC = "CapacityProviderVolumeConfiguration";
|
|
158
176
|
const _CPr = "CredentialProvider";
|
|
159
177
|
const _CPre = "CreatePolicy";
|
|
160
178
|
const _CR = "CreateRegistry";
|
|
@@ -165,6 +183,8 @@ const _CRRR = "CreateRegistryRecordRequest";
|
|
|
165
183
|
const _CRRRr = "CreateRegistryRecordResponse";
|
|
166
184
|
const _CRRr = "CreateRegistryResponse";
|
|
167
185
|
const _CRRre = "CreateRegistryRecord";
|
|
186
|
+
const _CRS = "CapacityReservationSpecification";
|
|
187
|
+
const _CRT = "CapacityReservationTarget";
|
|
168
188
|
const _CS = "ConnectorSource";
|
|
169
189
|
const _CSD = "CategoricalScaleDefinition";
|
|
170
190
|
const _CSDa = "CategoricalScaleDefinitions";
|
|
@@ -205,6 +225,9 @@ const _DCCWST = "DefaultCoinbaseCdpWalletSecretType";
|
|
|
205
225
|
const _DCI = "DeleteCodeInterpreter";
|
|
206
226
|
const _DCIR = "DeleteCodeInterpreterRequest";
|
|
207
227
|
const _DCIRe = "DeleteCodeInterpreterResponse";
|
|
228
|
+
const _DCP = "DeleteCapacityProvider";
|
|
229
|
+
const _DCPI = "DeleteCapacityProviderInput";
|
|
230
|
+
const _DCPO = "DeleteCapacityProviderOutput";
|
|
208
231
|
const _DCST = "DefaultClientSecretType";
|
|
209
232
|
const _DD = "DeleteDataset";
|
|
210
233
|
const _DDE = "DeleteDatasetExamples";
|
|
@@ -219,6 +242,9 @@ const _DERe = "DeleteEvaluatorResponse";
|
|
|
219
242
|
const _DF = "DecryptionFailure";
|
|
220
243
|
const _DG = "DeleteGateway";
|
|
221
244
|
const _DGR = "DeleteGatewayRequest";
|
|
245
|
+
const _DGRL = "DeleteGatewayRateLimit";
|
|
246
|
+
const _DGRLR = "DeleteGatewayRateLimitRequest";
|
|
247
|
+
const _DGRLRe = "DeleteGatewayRateLimitResponse";
|
|
222
248
|
const _DGRR = "DeleteGatewayRuleRequest";
|
|
223
249
|
const _DGRRe = "DeleteGatewayRuleResponse";
|
|
224
250
|
const _DGRe = "DeleteGatewayResponse";
|
|
@@ -282,13 +308,17 @@ const _DWIRe = "DeleteWorkloadIdentityResponse";
|
|
|
282
308
|
const _De = "Description";
|
|
283
309
|
const _Des = "Descriptors";
|
|
284
310
|
const _EAPC = "EfsAccessPointConfiguration";
|
|
285
|
-
const
|
|
311
|
+
const _EBDM = "EphemeralBlockDeviceMapping";
|
|
312
|
+
const _EBDML = "EphemeralBlockDeviceMappingList";
|
|
313
|
+
const _EC = "Ec2Configuration";
|
|
286
314
|
const _ECD = "EvaluationConfigDescription";
|
|
287
315
|
const _ECO = "EpisodicConsolidationOverride";
|
|
316
|
+
const _ECf = "EfsConfiguration";
|
|
288
317
|
const _ECv = "EvaluatorConfig";
|
|
289
318
|
const _ECx = "ExtractionConfig";
|
|
290
319
|
const _ECxt = "ExtractionConfiguration";
|
|
291
320
|
const _ED = "EvaluatorDescription";
|
|
321
|
+
const _EEBSVC = "EphemeralEBSVolumeConfiguration";
|
|
292
322
|
const _EEO = "EpisodicExtractionOverride";
|
|
293
323
|
const _EF = "EncryptionFailure";
|
|
294
324
|
const _EI = "EvaluatorInstructions";
|
|
@@ -306,6 +336,7 @@ const _ERCI = "EpisodicReflectionConfigurationInput";
|
|
|
306
336
|
const _ERO = "EpisodicReflectionOverride";
|
|
307
337
|
const _ES = "EvaluatorSummary";
|
|
308
338
|
const _ESL = "EvaluatorSummaryList";
|
|
339
|
+
const _EVC = "EbsVolumeConfiguration";
|
|
309
340
|
const _EVM = "EnvironmentVariablesMap";
|
|
310
341
|
const _F = "Filter";
|
|
311
342
|
const _FC = "FilesystemConfigurations";
|
|
@@ -340,6 +371,9 @@ const _GCBVRe = "GetConfigurationBundleVersionResponse";
|
|
|
340
371
|
const _GCI = "GetCodeInterpreter";
|
|
341
372
|
const _GCIR = "GetCodeInterpreterRequest";
|
|
342
373
|
const _GCIRe = "GetCodeInterpreterResponse";
|
|
374
|
+
const _GCP = "GetCapacityProvider";
|
|
375
|
+
const _GCPI = "GetCapacityProviderInput";
|
|
376
|
+
const _GCPO = "GetCapacityProviderOutput";
|
|
343
377
|
const _GD = "GatewayDescription";
|
|
344
378
|
const _GDR = "GetDatasetRequest";
|
|
345
379
|
const _GDRe = "GetDatasetResponse";
|
|
@@ -349,6 +383,9 @@ const _GER = "GetEvaluatorRequest";
|
|
|
349
383
|
const _GERe = "GetEvaluatorResponse";
|
|
350
384
|
const _GG = "GetGateway";
|
|
351
385
|
const _GGR = "GetGatewayRequest";
|
|
386
|
+
const _GGRL = "GetGatewayRateLimit";
|
|
387
|
+
const _GGRLR = "GetGatewayRateLimitRequest";
|
|
388
|
+
const _GGRLRe = "GetGatewayRateLimitResponse";
|
|
352
389
|
const _GGRR = "GetGatewayRuleRequest";
|
|
353
390
|
const _GGRRe = "GetGatewayRuleResponse";
|
|
354
391
|
const _GGRe = "GetGatewayResponse";
|
|
@@ -408,6 +445,8 @@ const _GPSR = "GetPolicySummaryRequest";
|
|
|
408
445
|
const _GPSRe = "GetPolicySummaryResponse";
|
|
409
446
|
const _GR = "GatewayRules";
|
|
410
447
|
const _GRD = "GatewayRuleDetail";
|
|
448
|
+
const _GRL = "GatewayRateLimits";
|
|
449
|
+
const _GRLD = "GatewayRateLimitDetail";
|
|
411
450
|
const _GRP = "GetResourcePolicy";
|
|
412
451
|
const _GRPR = "GetResourcePolicyRequest";
|
|
413
452
|
const _GRPRe = "GetResourcePolicyResponse";
|
|
@@ -438,6 +477,8 @@ const _HACRE = "HarnessAgentCoreRuntimeEnvironment";
|
|
|
438
477
|
const _HACRER = "HarnessAgentCoreRuntimeEnvironmentRequest";
|
|
439
478
|
const _HASC = "HttpApiSchemaConfiguration";
|
|
440
479
|
const _HBMC = "HarnessBedrockModelConfig";
|
|
480
|
+
const _HCS = "HttpConnectorSource";
|
|
481
|
+
const _HCTC = "HttpConnectorTargetConfiguration";
|
|
441
482
|
const _HDMC = "HarnessDisabledMemoryConfiguration";
|
|
442
483
|
const _HE = "HarnessEndpoint";
|
|
443
484
|
const _HEA = "HarnessEnvironmentArtifact";
|
|
@@ -492,6 +533,7 @@ const _IIC = "InterceptorInputConfiguration";
|
|
|
492
533
|
const _IK = "IndexedKey";
|
|
493
534
|
const _IKL = "IndexedKeysList";
|
|
494
535
|
const _IL = "InsightList";
|
|
536
|
+
const _ILC = "InstanceLifecycleConfiguration";
|
|
495
537
|
const _IOC = "InferenceOperationConfiguration";
|
|
496
538
|
const _IOCn = "InferenceOperationConfigurations";
|
|
497
539
|
const _IOPCI = "IncludedOauth2ProviderConfigInput";
|
|
@@ -502,6 +544,7 @@ const _IPESL = "InterceptorPayloadExclusionSelectorList";
|
|
|
502
544
|
const _IPF = "InterceptorPayloadFilter";
|
|
503
545
|
const _IPTC = "InferenceProviderTargetConfiguration";
|
|
504
546
|
const _IPa = "IamPrincipal";
|
|
547
|
+
const _IR = "InstanceRequirements";
|
|
505
548
|
const _ISE = "InternalServerException";
|
|
506
549
|
const _ITC = "InferenceTargetConfiguration";
|
|
507
550
|
const _KC = "KmsConfiguration";
|
|
@@ -518,6 +561,9 @@ const _LARERi = "ListAgentRuntimeEndpointsResponse";
|
|
|
518
561
|
const _LARR = "ListAgentRuntimesRequest";
|
|
519
562
|
const _LARRi = "ListAgentRuntimesResponse";
|
|
520
563
|
const _LARV = "ListAgentRuntimeVersions";
|
|
564
|
+
const _LARVBCP = "ListAgentRuntimeVersionsByCapacityProvider";
|
|
565
|
+
const _LARVBCPI = "ListAgentRuntimeVersionsByCapacityProviderInput";
|
|
566
|
+
const _LARVBCPO = "ListAgentRuntimeVersionsByCapacityProviderOutput";
|
|
521
567
|
const _LARVR = "ListAgentRuntimeVersionsRequest";
|
|
522
568
|
const _LARVRi = "ListAgentRuntimeVersionsResponse";
|
|
523
569
|
const _LB = "ListBrowsers";
|
|
@@ -536,6 +582,9 @@ const _LCBVRi = "ListConfigurationBundleVersionsResponse";
|
|
|
536
582
|
const _LCI = "ListCodeInterpreters";
|
|
537
583
|
const _LCIR = "ListCodeInterpretersRequest";
|
|
538
584
|
const _LCIRi = "ListCodeInterpretersResponse";
|
|
585
|
+
const _LCP = "ListCapacityProviders";
|
|
586
|
+
const _LCPI = "ListCapacityProvidersInput";
|
|
587
|
+
const _LCPO = "ListCapacityProvidersOutput";
|
|
539
588
|
const _LD = "ListDatasets";
|
|
540
589
|
const _LDE = "ListDatasetExamples";
|
|
541
590
|
const _LDER = "ListDatasetExamplesRequest";
|
|
@@ -545,14 +594,19 @@ const _LDRi = "ListDatasetsResponse";
|
|
|
545
594
|
const _LDV = "ListDatasetVersions";
|
|
546
595
|
const _LDVR = "ListDatasetVersionsRequest";
|
|
547
596
|
const _LDVRi = "ListDatasetVersionsResponse";
|
|
548
|
-
const _LE = "
|
|
597
|
+
const _LE = "LimitEntry";
|
|
549
598
|
const _LEC = "LambdaEvaluatorConfig";
|
|
550
599
|
const _LECl = "LlmExtractionConfig";
|
|
551
600
|
const _LEI = "LlmExtractionInstruction";
|
|
552
601
|
const _LER = "ListEvaluatorsRequest";
|
|
553
602
|
const _LERi = "ListEvaluatorsResponse";
|
|
603
|
+
const _LEi = "LimitEntries";
|
|
604
|
+
const _LEis = "ListEvaluators";
|
|
554
605
|
const _LG = "ListGateways";
|
|
555
606
|
const _LGR = "ListGatewaysRequest";
|
|
607
|
+
const _LGRL = "ListGatewayRateLimits";
|
|
608
|
+
const _LGRLR = "ListGatewayRateLimitsRequest";
|
|
609
|
+
const _LGRLRi = "ListGatewayRateLimitsResponse";
|
|
556
610
|
const _LGRR = "ListGatewayRulesRequest";
|
|
557
611
|
const _LGRRi = "ListGatewayRulesResponse";
|
|
558
612
|
const _LGRi = "ListGatewaysResponse";
|
|
@@ -581,7 +635,7 @@ const _LOECR = "ListOnlineEvaluationConfigsRequest";
|
|
|
581
635
|
const _LOECRi = "ListOnlineEvaluationConfigsResponse";
|
|
582
636
|
const _LOPCI = "LinkedinOauth2ProviderConfigInput";
|
|
583
637
|
const _LOPCO = "LinkedinOauth2ProviderConfigOutput";
|
|
584
|
-
const _LP = "
|
|
638
|
+
const _LP = "LaunchParameters";
|
|
585
639
|
const _LPC = "ListPaymentConnectors";
|
|
586
640
|
const _LPCP = "ListPaymentCredentialProviders";
|
|
587
641
|
const _LPCPR = "ListPaymentCredentialProvidersRequest";
|
|
@@ -611,16 +665,20 @@ const _LPRi = "ListPoliciesResponse";
|
|
|
611
665
|
const _LPS = "ListPolicySummaries";
|
|
612
666
|
const _LPSR = "ListPolicySummariesRequest";
|
|
613
667
|
const _LPSRi = "ListPolicySummariesResponse";
|
|
668
|
+
const _LPi = "ListPolicies";
|
|
614
669
|
const _LR = "ListRegistries";
|
|
615
670
|
const _LRR = "ListRegistriesRequest";
|
|
616
671
|
const _LRRR = "ListRegistryRecordsRequest";
|
|
617
672
|
const _LRRRi = "ListRegistryRecordsResponse";
|
|
618
673
|
const _LRRi = "ListRegistriesResponse";
|
|
619
674
|
const _LRRis = "ListRegistryRecords";
|
|
675
|
+
const _LS = "LicenseSpecification";
|
|
676
|
+
const _LSL = "LicenseSpecificationList";
|
|
620
677
|
const _LTC = "LambdaTransformConfiguration";
|
|
621
678
|
const _LTFR = "ListTagsForResource";
|
|
622
679
|
const _LTFRR = "ListTagsForResourceRequest";
|
|
623
680
|
const _LTFRRi = "ListTagsForResourceResponse";
|
|
681
|
+
const _LTS = "LaunchTemplateSource";
|
|
624
682
|
const _LWI = "ListWorkloadIdentities";
|
|
625
683
|
const _LWIR = "ListWorkloadIdentitiesRequest";
|
|
626
684
|
const _LWIRi = "ListWorkloadIdentitiesResponse";
|
|
@@ -684,12 +742,13 @@ const _OPCI = "Oauth2ProviderConfigInput";
|
|
|
684
742
|
const _OPCO = "Oauth2ProviderConfigOutput";
|
|
685
743
|
const _OREMC = "OpenResponsesEvaluatorModelConfig";
|
|
686
744
|
const _P = "Prompt";
|
|
687
|
-
const _PC = "
|
|
745
|
+
const _PC = "PermissionsConfiguration";
|
|
688
746
|
const _PCP = "PaymentCredentialProviders";
|
|
689
747
|
const _PCPC = "PaymentCredentialProviderConfiguration";
|
|
690
748
|
const _PCPI = "PaymentCredentialProviderItem";
|
|
691
749
|
const _PCS = "PaymentConnectorSummary";
|
|
692
750
|
const _PCSa = "PaymentConnectorSummaries";
|
|
751
|
+
const _PCr = "ProtocolConfiguration";
|
|
693
752
|
const _PD = "PolicyDefinition";
|
|
694
753
|
const _PE = "PolicyEngine";
|
|
695
754
|
const _PEMR = "PrivateEndpointManagedResources";
|
|
@@ -723,8 +782,11 @@ const _PTC = "PassthroughTargetConfiguration";
|
|
|
723
782
|
const _Po = "Policy";
|
|
724
783
|
const _Pol = "Policies";
|
|
725
784
|
const _R = "Rule";
|
|
726
|
-
const _RC = "
|
|
727
|
-
const
|
|
785
|
+
const _RC = "RateConfig";
|
|
786
|
+
const _RCE = "RetryableConflictException";
|
|
787
|
+
const _RCa = "RateConfigs";
|
|
788
|
+
const _RCe = "ReasoningConfiguration";
|
|
789
|
+
const _RCec = "RecordingConfig";
|
|
728
790
|
const _RCef = "ReflectionConfiguration";
|
|
729
791
|
const _RHC = "RequestHeaderConfiguration";
|
|
730
792
|
const _RL = "ResourceLocation";
|
|
@@ -743,6 +805,7 @@ const _RSL = "RegistrySummaryList";
|
|
|
743
805
|
const _RSa = "RatingScale";
|
|
744
806
|
const _RTC = "RuntimeTargetConfiguration";
|
|
745
807
|
const _RTTA = "RouteToTargetAction";
|
|
808
|
+
const _RVC = "RootVolumeConfiguration";
|
|
746
809
|
const _Re = "Resource";
|
|
747
810
|
const _S = "Secret";
|
|
748
811
|
const _SC = "S3Configuration";
|
|
@@ -855,6 +918,9 @@ const _UCB = "UpdateConfigurationBundle";
|
|
|
855
918
|
const _UCBR = "UpdateConfigurationBundleRequest";
|
|
856
919
|
const _UCBRp = "UpdateConfigurationBundleResponse";
|
|
857
920
|
const _UCD = "UpdatedCustomDescriptor";
|
|
921
|
+
const _UCP = "UpdateCapacityProvider";
|
|
922
|
+
const _UCPI = "UpdateCapacityProviderInput";
|
|
923
|
+
const _UCPO = "UpdateCapacityProviderOutput";
|
|
858
924
|
const _UD = "UpdatedDescription";
|
|
859
925
|
const _UDE = "UpdateDatasetExamples";
|
|
860
926
|
const _UDER = "UpdateDatasetExamplesRequest";
|
|
@@ -870,6 +936,9 @@ const _UERp = "UpdateEvaluatorResponse";
|
|
|
870
936
|
const _UEp = "UpdateEvaluator";
|
|
871
937
|
const _UG = "UpdateGateway";
|
|
872
938
|
const _UGR = "UpdateGatewayRequest";
|
|
939
|
+
const _UGRL = "UpdateGatewayRateLimit";
|
|
940
|
+
const _UGRLR = "UpdateGatewayRateLimitRequest";
|
|
941
|
+
const _UGRLRp = "UpdateGatewayRateLimitResponse";
|
|
873
942
|
const _UGRR = "UpdateGatewayRuleRequest";
|
|
874
943
|
const _UGRRp = "UpdateGatewayRuleResponse";
|
|
875
944
|
const _UGRp = "UpdateGatewayResponse";
|
|
@@ -941,6 +1010,9 @@ const _UWIRp = "UpdateWorkloadIdentityResponse";
|
|
|
941
1010
|
const _V = "Validation";
|
|
942
1011
|
const _VC = "VpcConfig";
|
|
943
1012
|
const _VCBS = "VersionCreatedBySource";
|
|
1013
|
+
const _VCL = "VolumeConfigurationList";
|
|
1014
|
+
const _VCo = "VolumeConfiguration";
|
|
1015
|
+
const _VCp = "VpcConfiguration";
|
|
944
1016
|
const _VE = "ValidationException";
|
|
945
1017
|
const _VEF = "ValidationExceptionField";
|
|
946
1018
|
const _VEFL = "ValidationExceptionFieldList";
|
|
@@ -975,6 +1047,7 @@ const _aGTC = "apiGatewayToolConfiguration";
|
|
|
975
1047
|
const _aHC = "additionalHeaderClaims";
|
|
976
1048
|
const _aI = "actorId";
|
|
977
1049
|
const _aIK = "addIndexedKeys";
|
|
1050
|
+
const _aIT = "allowedInstanceTypes";
|
|
978
1051
|
const _aIp = "appId";
|
|
979
1052
|
const _aIu = "authorizationId";
|
|
980
1053
|
const _aIw = "awsIam";
|
|
@@ -1055,10 +1128,11 @@ const _cB = "createdBy";
|
|
|
1055
1128
|
const _cBN = "createdByName";
|
|
1056
1129
|
const _cBo = "configurationBundle";
|
|
1057
1130
|
const _cBod = "codeBased";
|
|
1058
|
-
const _cC = "
|
|
1131
|
+
const _cC = "computeConfiguration";
|
|
1059
1132
|
const _cCC = "customConsolidationConfiguration";
|
|
1060
1133
|
const _cCCo = "coinbaseCdpConfiguration";
|
|
1061
1134
|
const _cCDP = "coinbaseCDP";
|
|
1135
|
+
const _cCl = "clusteringConfig";
|
|
1062
1136
|
const _cCo = "contentConfigurations";
|
|
1063
1137
|
const _cCod = "codeConfiguration";
|
|
1064
1138
|
const _cCon = "containerConfiguration";
|
|
@@ -1078,14 +1152,25 @@ const _cMV = "claimMatchValue";
|
|
|
1078
1152
|
const _cOPC = "customOauth2ProviderConfig";
|
|
1079
1153
|
const _cP = "credentialProvider";
|
|
1080
1154
|
const _cPA = "credentialProviderArn";
|
|
1081
|
-
const
|
|
1155
|
+
const _cPAa = "capacityProviderArn";
|
|
1156
|
+
const _cPC = "capacityProviderConfiguration";
|
|
1157
|
+
const _cPCr = "credentialProviderConfigurations";
|
|
1158
|
+
const _cPI = "capacityProviderId";
|
|
1082
1159
|
const _cPN = "credentialParameterName";
|
|
1160
|
+
const _cPORA = "capacityProviderOperatorRoleArn";
|
|
1083
1161
|
const _cPT = "credentialProviderType";
|
|
1084
1162
|
const _cPV = "credentialProviderVendor";
|
|
1163
|
+
const _cPVa = "capacityProviderVolume";
|
|
1164
|
+
const _cPa = "capacityProviders";
|
|
1085
1165
|
const _cPr = "credentialPrefix";
|
|
1086
1166
|
const _cPre = "credentialProviders";
|
|
1087
1167
|
const _cPu = "customParameters";
|
|
1088
1168
|
const _cRC = "customReflectionConfiguration";
|
|
1169
|
+
const _cRI = "capacityReservationId";
|
|
1170
|
+
const _cRP = "capacityReservationPreference";
|
|
1171
|
+
const _cRRGA = "capacityReservationResourceGroupArn";
|
|
1172
|
+
const _cRS = "capacityReservationSpecification";
|
|
1173
|
+
const _cRT = "capacityReservationTarget";
|
|
1089
1174
|
const _cS = "clientSecret";
|
|
1090
1175
|
const _cSA = "clientSecretArn";
|
|
1091
1176
|
const _cSC = "clientSecretConfig";
|
|
@@ -1107,7 +1192,8 @@ const _con = "configuration";
|
|
|
1107
1192
|
const _cond = "conditions";
|
|
1108
1193
|
const _conf = "configurations";
|
|
1109
1194
|
const _confi = "config";
|
|
1110
|
-
const _conn = "
|
|
1195
|
+
const _conn = "connections";
|
|
1196
|
+
const _conne = "connector";
|
|
1111
1197
|
const _cons = "consolidation";
|
|
1112
1198
|
const _cont = "content";
|
|
1113
1199
|
const _cu = "custom";
|
|
@@ -1115,9 +1201,11 @@ const _d = "description";
|
|
|
1115
1201
|
const _dA = "datasetArn";
|
|
1116
1202
|
const _dC = "deletedCount";
|
|
1117
1203
|
const _dI = "datasetId";
|
|
1204
|
+
const _dK = "dimensionKeys";
|
|
1118
1205
|
const _dMM = "deleteManagedMemory";
|
|
1119
1206
|
const _dMS = "deleteMemoryStrategies";
|
|
1120
1207
|
const _dN = "datasetName";
|
|
1208
|
+
const _dNe = "deviceName";
|
|
1121
1209
|
const _dRU = "defaultReturnUrl";
|
|
1122
1210
|
const _dS = "draftStatus";
|
|
1123
1211
|
const _dSA = "dataStreamArn";
|
|
@@ -1131,14 +1219,18 @@ const _dVo = "doubleValue";
|
|
|
1131
1219
|
const _da = "datasets";
|
|
1132
1220
|
const _de = "definition";
|
|
1133
1221
|
const _des = "descriptors";
|
|
1134
|
-
const _di = "
|
|
1222
|
+
const _di = "dimensions";
|
|
1223
|
+
const _dis = "disabled";
|
|
1135
1224
|
const _do = "domain";
|
|
1136
1225
|
const _e = "error";
|
|
1137
1226
|
const _eA = "evaluatorArn";
|
|
1138
1227
|
const _eAP = "efsAccessPoint";
|
|
1139
1228
|
const _eAn = "environmentArtifact";
|
|
1140
1229
|
const _eC = "evaluatorConfig";
|
|
1230
|
+
const _eCI = "ebsCardIndex";
|
|
1141
1231
|
const _eCO = "episodicConsolidationOverride";
|
|
1232
|
+
const _eCb = "ebsConfiguration";
|
|
1233
|
+
const _eCc = "ec2Configuration";
|
|
1142
1234
|
const _eCf = "efsConfiguration";
|
|
1143
1235
|
const _eCx = "exampleCount";
|
|
1144
1236
|
const _eCxt = "extractionConfig";
|
|
@@ -1166,8 +1258,12 @@ const _eS = "executionStatus";
|
|
|
1166
1258
|
const _eT = "evaluatorType";
|
|
1167
1259
|
const _eTx = "extractionType";
|
|
1168
1260
|
const _eV = "environmentVariables";
|
|
1261
|
+
const _eVp = "ephemeralVolumes";
|
|
1262
|
+
const _eb = "ebs";
|
|
1169
1263
|
const _ef = "effort";
|
|
1170
|
-
const _en = "
|
|
1264
|
+
const _en = "entries";
|
|
1265
|
+
const _ena = "enabled";
|
|
1266
|
+
const _enc = "encrypted";
|
|
1171
1267
|
const _end = "endpoint";
|
|
1172
1268
|
const _endp = "endpoints";
|
|
1173
1269
|
const _env = "environment";
|
|
@@ -1182,6 +1278,7 @@ const _fM = "failureMode";
|
|
|
1182
1278
|
const _fP = "filterPath";
|
|
1183
1279
|
const _fR = "failureReason";
|
|
1184
1280
|
const _fSA = "fileSystemArn";
|
|
1281
|
+
const _fSGB = "freeSpaceGiB";
|
|
1185
1282
|
const _fU = "fromUrl";
|
|
1186
1283
|
const _fi = "findings";
|
|
1187
1284
|
const _fie = "field";
|
|
@@ -1189,8 +1286,8 @@ const _fil = "filter";
|
|
|
1189
1286
|
const _filt = "filters";
|
|
1190
1287
|
const _g = "git";
|
|
1191
1288
|
const _gA = "gatewayArn";
|
|
1192
|
-
const _gI = "
|
|
1193
|
-
const _gIa = "
|
|
1289
|
+
const _gI = "gatewayIdentifier";
|
|
1290
|
+
const _gIa = "gatewayId";
|
|
1194
1291
|
const _gMC = "geminiModelConfig";
|
|
1195
1292
|
const _gOPC = "googleOauth2ProviderConfig";
|
|
1196
1293
|
const _gOPCi = "githubOauth2ProviderConfig";
|
|
@@ -1220,11 +1317,14 @@ const _iD = "includedData";
|
|
|
1220
1317
|
const _iE = "inlineExamples";
|
|
1221
1318
|
const _iF = "inlineFunction";
|
|
1222
1319
|
const _iI = "insightId";
|
|
1320
|
+
const _iIT = "idleInstanceTimeout";
|
|
1223
1321
|
const _iK = "indexedKeys";
|
|
1224
1322
|
const _iOPC = "includedOauth2ProviderConfig";
|
|
1225
1323
|
const _iP = "interceptionPoints";
|
|
1324
|
+
const _iPA = "instanceProfileArn";
|
|
1226
1325
|
const _iPa = "iamPrincipal";
|
|
1227
1326
|
const _iPn = "inlinePayload";
|
|
1327
|
+
const _iR = "instanceRequirements";
|
|
1228
1328
|
const _iRST = "idleRuntimeSessionTimeout";
|
|
1229
1329
|
const _iS = "inputSchema";
|
|
1230
1330
|
const _iST = "idleSessionTimeout";
|
|
@@ -1236,12 +1336,14 @@ const _in = "insights";
|
|
|
1236
1336
|
const _inf = "inference";
|
|
1237
1337
|
const _ins = "instructions";
|
|
1238
1338
|
const _int = "interceptor";
|
|
1339
|
+
const _io = "iops";
|
|
1239
1340
|
const _is = "issuer";
|
|
1240
1341
|
const _it = "items";
|
|
1241
1342
|
const _jK = "jsonKey";
|
|
1242
1343
|
const _k = "key";
|
|
1243
1344
|
const _kC = "kmsConfiguration";
|
|
1244
1345
|
const _kKA = "kmsKeyArn";
|
|
1346
|
+
const _kKI = "kmsKeyId";
|
|
1245
1347
|
const _kKS = "kmsKeySource";
|
|
1246
1348
|
const _kT = "keyType";
|
|
1247
1349
|
const _ki = "kinesis";
|
|
@@ -1249,6 +1351,7 @@ const _l = "location";
|
|
|
1249
1351
|
const _lA = "lambdaArn";
|
|
1250
1352
|
const _lAAJ = "llmAsAJudge";
|
|
1251
1353
|
const _lC = "lifecycleConfiguration";
|
|
1354
|
+
const _lCA = "licenseConfigurationArn";
|
|
1252
1355
|
const _lCa = "lambdaConfig";
|
|
1253
1356
|
const _lEC = "llmExtractionConfig";
|
|
1254
1357
|
const _lEI = "llmExtractionInstruction";
|
|
@@ -1260,12 +1363,15 @@ const _lM = "lineageMetadata";
|
|
|
1260
1363
|
const _lMD = "lastModifiedDate";
|
|
1261
1364
|
const _lMi = "listingMode";
|
|
1262
1365
|
const _lOPC = "linkedinOauth2ProviderConfig";
|
|
1366
|
+
const _lP = "launchParameters";
|
|
1263
1367
|
const _lPB = "latestPerBranch";
|
|
1368
|
+
const _lS = "licenseSpecifications";
|
|
1264
1369
|
const _lSA = "lastSavedAt";
|
|
1265
1370
|
const _lSAa = "lastSynchronizedAt";
|
|
1266
1371
|
const _lSBI = "lastSavedBrowserId";
|
|
1267
1372
|
const _lSBSI = "lastSavedBrowserSessionId";
|
|
1268
1373
|
const _lTIS = "lambdaTimeoutInSeconds";
|
|
1374
|
+
const _lTS = "launchTemplateSource";
|
|
1269
1375
|
const _lUA = "lastUpdatedAt";
|
|
1270
1376
|
const _lUT = "lastUpdatedTime";
|
|
1271
1377
|
const _lV = "liveVersion";
|
|
@@ -1316,6 +1422,7 @@ const _meta = "metadata";
|
|
|
1316
1422
|
const _mo = "model";
|
|
1317
1423
|
const _mod = "mode";
|
|
1318
1424
|
const _mode = "models";
|
|
1425
|
+
const _mon = "monitoring";
|
|
1319
1426
|
const _n = "name";
|
|
1320
1427
|
const _nC = "networkConfiguration";
|
|
1321
1428
|
const _nM = "networkMode";
|
|
@@ -1340,7 +1447,8 @@ const _oECI = "onlineEvaluationConfigId";
|
|
|
1340
1447
|
const _oECN = "onlineEvaluationConfigName";
|
|
1341
1448
|
const _oPCI = "oauth2ProviderConfigInput";
|
|
1342
1449
|
const _oPCO = "oauth2ProviderConfigOutput";
|
|
1343
|
-
const _oS = "
|
|
1450
|
+
const _oS = "operatingSystem";
|
|
1451
|
+
const _oSu = "outputSchema";
|
|
1344
1452
|
const _oV = "optionalValue";
|
|
1345
1453
|
const _oa = "oauth2";
|
|
1346
1454
|
const _oau = "oauth";
|
|
@@ -1354,6 +1462,7 @@ const _pCI = "paymentConnectorId";
|
|
|
1354
1462
|
const _pCIr = "providerConfigurationInput";
|
|
1355
1463
|
const _pCO = "providerConfigurationOutput";
|
|
1356
1464
|
const _pCa = "paymentConnectors";
|
|
1465
|
+
const _pCe = "permissionsConfiguration";
|
|
1357
1466
|
const _pDBN = "payloadDeliveryBucketName";
|
|
1358
1467
|
const _pE = "privateEndpoint";
|
|
1359
1468
|
const _pEA = "policyEngineArn";
|
|
@@ -1383,11 +1492,14 @@ const _pRH = "passRequestHeaders";
|
|
|
1383
1492
|
const _pRM = "preserveRecentMessages";
|
|
1384
1493
|
const _pS = "profileSummaries";
|
|
1385
1494
|
const _pT = "protocolType";
|
|
1495
|
+
const _pTr = "propagatedTags";
|
|
1386
1496
|
const _pV = "parameterValues";
|
|
1387
1497
|
const _pVI = "parentVersionIds";
|
|
1388
1498
|
const _pVr = "protocolVersion";
|
|
1389
1499
|
const _pa = "paths";
|
|
1500
|
+
const _par = "parameters";
|
|
1390
1501
|
const _pas = "passthrough";
|
|
1502
|
+
const _pe = "period";
|
|
1391
1503
|
const _po = "policy";
|
|
1392
1504
|
const _pol = "policies";
|
|
1393
1505
|
const _pr = "priority";
|
|
@@ -1414,6 +1526,8 @@ const _rHC = "requestHeaderConfiguration";
|
|
|
1414
1526
|
const _rI = "ruleId";
|
|
1415
1527
|
const _rIe = "registryId";
|
|
1416
1528
|
const _rIec = "recordId";
|
|
1529
|
+
const _rL = "rateLimits";
|
|
1530
|
+
const _rLI = "rateLimitId";
|
|
1417
1531
|
const _rM = "remoteMcp";
|
|
1418
1532
|
const _rMMDSV = "requireMMDSV2";
|
|
1419
1533
|
const _rP = "resourcePriority";
|
|
@@ -1426,12 +1540,15 @@ const _rTF = "rawTextFragment";
|
|
|
1426
1540
|
const _rTT = "routeToTarget";
|
|
1427
1541
|
const _rTa = "rawText";
|
|
1428
1542
|
const _rV = "recordVersion";
|
|
1543
|
+
const _rVo = "rootVolume";
|
|
1544
|
+
const _ra = "rate";
|
|
1429
1545
|
const _re = "recording";
|
|
1430
1546
|
const _rea = "reasoning";
|
|
1431
1547
|
const _ref = "reflection";
|
|
1432
1548
|
const _reg = "region";
|
|
1433
1549
|
const _regi = "registries";
|
|
1434
|
-
const _req = "
|
|
1550
|
+
const _req = "requests";
|
|
1551
|
+
const _requ = "required";
|
|
1435
1552
|
const _res = "resource";
|
|
1436
1553
|
const _reso = "resources";
|
|
1437
1554
|
const _ru = "runtime";
|
|
@@ -1445,18 +1562,22 @@ const _sCOu = "summaryConsolidationOverride";
|
|
|
1445
1562
|
const _sCa = "samplingConfig";
|
|
1446
1563
|
const _sCe = "sessionConfiguration";
|
|
1447
1564
|
const _sCes = "sessionConfig";
|
|
1448
|
-
const _sCt = "
|
|
1565
|
+
const _sCt = "statusCode";
|
|
1449
1566
|
const _sCti = "stickinessConfiguration";
|
|
1567
|
+
const _sCtr = "streamingConfiguration";
|
|
1450
1568
|
const _sD = "skillDefinition";
|
|
1451
1569
|
const _sDR = "streamDeliveryResources";
|
|
1452
1570
|
const _sEO = "semanticExtractionOverride";
|
|
1453
1571
|
const _sFAP = "s3FilesAccessPoint";
|
|
1454
1572
|
const _sFC = "s3FilesConfiguration";
|
|
1455
1573
|
const _sG = "securityGroups";
|
|
1574
|
+
const _sGB = "sizeGiB";
|
|
1456
1575
|
const _sGI = "securityGroupIds";
|
|
1457
|
-
const _sI = "
|
|
1576
|
+
const _sI = "snapshotId";
|
|
1458
1577
|
const _sIe = "secretId";
|
|
1578
|
+
const _sIt = "strategyId";
|
|
1459
1579
|
const _sIu = "subnetIds";
|
|
1580
|
+
const _sKN = "sshKeyName";
|
|
1460
1581
|
const _sL = "s3Location";
|
|
1461
1582
|
const _sLV = "stringListValidation";
|
|
1462
1583
|
const _sM = "skillMd";
|
|
@@ -1544,8 +1665,10 @@ const _ta = "tags";
|
|
|
1544
1665
|
const _tar = "targets";
|
|
1545
1666
|
const _te = "temperature";
|
|
1546
1667
|
const _tex = "text";
|
|
1668
|
+
const _th = "throughput";
|
|
1547
1669
|
const _ti = "timeout";
|
|
1548
1670
|
const _to = "tools";
|
|
1671
|
+
const _tok = "tokens";
|
|
1549
1672
|
const _tr = "truncation";
|
|
1550
1673
|
const _u = "url";
|
|
1551
1674
|
const _uA = "updatedAt";
|
|
@@ -1560,14 +1683,21 @@ const _us = "username";
|
|
|
1560
1683
|
const _v = "visible";
|
|
1561
1684
|
const _vC = "vpcConfig";
|
|
1562
1685
|
const _vCA = "versionCreatedAt";
|
|
1686
|
+
const _vCp = "vpcConfiguration";
|
|
1563
1687
|
const _vI = "versionId";
|
|
1688
|
+
const _vIR = "volumeInitializationRate";
|
|
1564
1689
|
const _vIp = "vpcIdentifier";
|
|
1565
1690
|
const _vM = "validationMode";
|
|
1691
|
+
const _vN = "volumeName";
|
|
1692
|
+
const _vNi = "virtualName";
|
|
1693
|
+
const _vS = "volumeSize";
|
|
1694
|
+
const _vT = "volumeType";
|
|
1566
1695
|
const _va = "value";
|
|
1567
1696
|
const _val = "validation";
|
|
1568
1697
|
const _ve = "version";
|
|
1569
1698
|
const _ver = "versions";
|
|
1570
1699
|
const _vi = "view";
|
|
1700
|
+
const _vo = "volumes";
|
|
1571
1701
|
const _w = "weight";
|
|
1572
1702
|
const _wAA = "webAclArn";
|
|
1573
1703
|
const _wC = "wafConfiguration";
|
|
@@ -1584,7 +1714,7 @@ const _wSS = "walletSecretSource";
|
|
|
1584
1714
|
const n0 = "com.amazonaws.bedrockagentcorecontrol";
|
|
1585
1715
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
1586
1716
|
import { BedrockAgentCoreControlServiceException } from "../models/BedrockAgentCoreControlServiceException";
|
|
1587
|
-
import { AccessDeniedException, ConcurrentModificationException, ConflictException, DecryptionFailure, EncryptionFailure, InternalServerException, ResourceLimitExceededException, ResourceNotFoundException, ServiceException, ServiceQuotaExceededException, ThrottledException, ThrottlingException, UnauthorizedException, ValidationException, } from "../models/errors";
|
|
1717
|
+
import { AccessDeniedException, ConcurrentModificationException, ConflictException, DecryptionFailure, EncryptionFailure, InternalServerException, ResourceLimitExceededException, ResourceNotFoundException, RetryableConflictException, ServiceException, ServiceQuotaExceededException, ThrottledException, ThrottlingException, UnauthorizedException, ValidationException, } from "../models/errors";
|
|
1588
1718
|
const _s_registry = TypeRegistry.for(_s);
|
|
1589
1719
|
export var BedrockAgentCoreControlServiceException$ = [-3, _s, "BedrockAgentCoreControlServiceException", 0, [], []];
|
|
1590
1720
|
_s_registry.registerError(BedrockAgentCoreControlServiceException$, BedrockAgentCoreControlServiceException);
|
|
@@ -1637,6 +1767,12 @@ export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
|
1637
1767
|
[0]
|
|
1638
1768
|
];
|
|
1639
1769
|
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1770
|
+
export var RetryableConflictException$ = [-3, n0, _RCE,
|
|
1771
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
1772
|
+
[_m],
|
|
1773
|
+
[0], 1
|
|
1774
|
+
];
|
|
1775
|
+
n0_registry.registerError(RetryableConflictException$, RetryableConflictException);
|
|
1640
1776
|
export var ServiceException$ = [-3, n0, _SE,
|
|
1641
1777
|
{ [_e]: _se, [_hE]: 500 },
|
|
1642
1778
|
[_m],
|
|
@@ -1735,6 +1871,11 @@ export var AgentRuntimeEndpoint$ = [3, n0, _ARE,
|
|
|
1735
1871
|
[_n, _aREA, _aRA, _st, _i, _cA, _lUA, _lV, _tV, _d],
|
|
1736
1872
|
[[() => EndpointName, 0], 0, 0, 0, 0, 5, 5, 0, 0, 0], 7
|
|
1737
1873
|
];
|
|
1874
|
+
export var AgentRuntimeVersionSummary$ = [3, n0, _ARVS,
|
|
1875
|
+
0,
|
|
1876
|
+
[_aRA, _aRV, _st],
|
|
1877
|
+
[0, 0, 0], 3
|
|
1878
|
+
];
|
|
1738
1879
|
export var AgentSkillsDescriptor$ = [3, n0, _ASD,
|
|
1739
1880
|
0,
|
|
1740
1881
|
[_sM, _sD],
|
|
@@ -1790,6 +1931,21 @@ export var AuthorizingClaimMatchValueType$ = [3, n0, _ACMVT,
|
|
|
1790
1931
|
[_cMV, _cMO],
|
|
1791
1932
|
[() => ClaimMatchValueType$, 0], 2
|
|
1792
1933
|
];
|
|
1934
|
+
export var BatchPutGatewayRateLimitsRequest$ = [3, n0, _BPGRLR,
|
|
1935
|
+
0,
|
|
1936
|
+
[_gI, _rL, _cT],
|
|
1937
|
+
[[0, 1], () => BatchPutLimitEntries, [0, 4]], 2
|
|
1938
|
+
];
|
|
1939
|
+
export var BatchPutGatewayRateLimitsResponse$ = [3, n0, _BPGRLRa,
|
|
1940
|
+
0,
|
|
1941
|
+
[_rL],
|
|
1942
|
+
[() => GatewayRateLimits], 1
|
|
1943
|
+
];
|
|
1944
|
+
export var BatchPutLimitEntry$ = [3, n0, _BPLE,
|
|
1945
|
+
0,
|
|
1946
|
+
[_dK, _en, _rLI, _d],
|
|
1947
|
+
[64 | 0, () => LimitEntries, 0, 0], 2
|
|
1948
|
+
];
|
|
1793
1949
|
export var BedrockEvaluatorModelConfig$ = [3, n0, _BEMC,
|
|
1794
1950
|
0,
|
|
1795
1951
|
[_mI, _iCn, _aMRF],
|
|
@@ -1812,12 +1968,12 @@ export var BrowserProfileSummary$ = [3, n0, _BPS,
|
|
|
1812
1968
|
];
|
|
1813
1969
|
export var BrowserSigningConfigInput$ = [3, n0, _BSCI,
|
|
1814
1970
|
0,
|
|
1815
|
-
[
|
|
1971
|
+
[_ena],
|
|
1816
1972
|
[2], 1
|
|
1817
1973
|
];
|
|
1818
1974
|
export var BrowserSigningConfigOutput$ = [3, n0, _BSCO,
|
|
1819
1975
|
0,
|
|
1820
|
-
[
|
|
1976
|
+
[_ena],
|
|
1821
1977
|
[2], 1
|
|
1822
1978
|
];
|
|
1823
1979
|
export var BrowserSummary$ = [3, n0, _BS,
|
|
@@ -1825,6 +1981,31 @@ export var BrowserSummary$ = [3, n0, _BS,
|
|
|
1825
1981
|
[_bI, _bA, _st, _cA, _n, _d, _lUA],
|
|
1826
1982
|
[0, 0, 0, 5, 0, [() => Description, 0], 5], 4
|
|
1827
1983
|
];
|
|
1984
|
+
export var CapacityProviderConfiguration$ = [3, n0, _CPC,
|
|
1985
|
+
0,
|
|
1986
|
+
[_cPAa],
|
|
1987
|
+
[0]
|
|
1988
|
+
];
|
|
1989
|
+
export var CapacityProviderSummary$ = [3, n0, _CPS,
|
|
1990
|
+
0,
|
|
1991
|
+
[_cPI, _cPAa, _n, _st, _lUA],
|
|
1992
|
+
[0, 0, 0, 0, 4], 5
|
|
1993
|
+
];
|
|
1994
|
+
export var CapacityProviderVolumeConfiguration$ = [3, n0, _CPVC,
|
|
1995
|
+
0,
|
|
1996
|
+
[_vN, _mP],
|
|
1997
|
+
[0, 0], 2
|
|
1998
|
+
];
|
|
1999
|
+
export var CapacityReservationSpecification$ = [3, n0, _CRS,
|
|
2000
|
+
0,
|
|
2001
|
+
[_cRP, _cRT],
|
|
2002
|
+
[0, () => CapacityReservationTarget$]
|
|
2003
|
+
];
|
|
2004
|
+
export var CapacityReservationTarget$ = [3, n0, _CRT,
|
|
2005
|
+
0,
|
|
2006
|
+
[_cRI, _cRRGA],
|
|
2007
|
+
[0, 0]
|
|
2008
|
+
];
|
|
1828
2009
|
export var CategoricalScaleDefinition$ = [3, n0, _CSD,
|
|
1829
2010
|
0,
|
|
1830
2011
|
[_de, _la],
|
|
@@ -1917,7 +2098,7 @@ export var ConnectorSource$ = [3, n0, _CS,
|
|
|
1917
2098
|
];
|
|
1918
2099
|
export var ConnectorTargetConfiguration$ = [3, n0, _CTC,
|
|
1919
2100
|
0,
|
|
1920
|
-
[_so,
|
|
2101
|
+
[_so, _ena, _conf],
|
|
1921
2102
|
[() => ConnectorSource$, 64 | 0, () => ConnectorConfigurations], 1
|
|
1922
2103
|
];
|
|
1923
2104
|
export var ContainerConfiguration$ = [3, n0, _CCont,
|
|
@@ -1942,8 +2123,8 @@ export var CreateAgentRuntimeEndpointResponse$ = [3, n0, _CARERr,
|
|
|
1942
2123
|
];
|
|
1943
2124
|
export var CreateAgentRuntimeRequest$ = [3, n0, _CARR,
|
|
1944
2125
|
0,
|
|
1945
|
-
[_aRN, _aRAg, _rA, _nC, _cT, _d, _aCu, _rHC, _pC, _lC, _eV, _fC, _ta],
|
|
1946
|
-
[0, () => AgentRuntimeArtifact$, 0, () => NetworkConfiguration$, [0, 4], [() => Description, 0], () => AuthorizerConfiguration$, () => RequestHeaderConfiguration$, () => ProtocolConfiguration$, () => LifecycleConfiguration$, [() => EnvironmentVariablesMap, 0], () => FilesystemConfigurations, 128 | 0],
|
|
2126
|
+
[_aRN, _aRAg, _rA, _nC, _cT, _d, _aCu, _rHC, _pC, _lC, _eV, _fC, _cPC, _ta],
|
|
2127
|
+
[0, () => AgentRuntimeArtifact$, 0, () => NetworkConfiguration$, [0, 4], [() => Description, 0], () => AuthorizerConfiguration$, () => RequestHeaderConfiguration$, () => ProtocolConfiguration$, () => LifecycleConfiguration$, [() => EnvironmentVariablesMap, 0], () => FilesystemConfigurations, () => CapacityProviderConfiguration$, 128 | 0], 3
|
|
1947
2128
|
];
|
|
1948
2129
|
export var CreateAgentRuntimeResponse$ = [3, n0, _CARRr,
|
|
1949
2130
|
0,
|
|
@@ -1980,6 +2161,16 @@ export var CreateBrowserResponse$ = [3, n0, _CBRre,
|
|
|
1980
2161
|
[_bI, _bA, _cA, _st],
|
|
1981
2162
|
[0, 0, 5, 0], 4
|
|
1982
2163
|
];
|
|
2164
|
+
export var CreateCapacityProviderInput$ = [3, n0, _CCPI,
|
|
2165
|
+
0,
|
|
2166
|
+
[_n, _pCe, _cC, _d, _cT, _ta],
|
|
2167
|
+
[0, () => PermissionsConfiguration$, () => ComputeConfiguration$, [() => Description, 0], [0, 4], 128 | 0], 3
|
|
2168
|
+
];
|
|
2169
|
+
export var CreateCapacityProviderOutput$ = [3, n0, _CCPO,
|
|
2170
|
+
0,
|
|
2171
|
+
[_cPI, _cPAa, _n, _st],
|
|
2172
|
+
[0, 0, 0, 0], 4
|
|
2173
|
+
];
|
|
1983
2174
|
export var CreateCodeInterpreterRequest$ = [3, n0, _CCIR,
|
|
1984
2175
|
0,
|
|
1985
2176
|
[_n, _nC, _d, _eRA, _ce, _fC, _cT, _ta],
|
|
@@ -2030,6 +2221,16 @@ export var CreateEvaluatorResponse$ = [3, n0, _CERr,
|
|
|
2030
2221
|
[_eA, _eIv, _cA, _st],
|
|
2031
2222
|
[0, 0, 4, 0], 4
|
|
2032
2223
|
];
|
|
2224
|
+
export var CreateGatewayRateLimitRequest$ = [3, n0, _CGRLR,
|
|
2225
|
+
0,
|
|
2226
|
+
[_gI, _dK, _en, _cT, _rLI, _d],
|
|
2227
|
+
[[0, 1], 64 | 0, () => LimitEntries, [0, 4], 0, 0], 3
|
|
2228
|
+
];
|
|
2229
|
+
export var CreateGatewayRateLimitResponse$ = [3, n0, _CGRLRr,
|
|
2230
|
+
0,
|
|
2231
|
+
[_rLI, _gI, _dK, _en, _st, _cA, _uA, _d],
|
|
2232
|
+
[0, 0, 64 | 0, () => LimitEntries, 0, 5, 5, 0], 7
|
|
2233
|
+
];
|
|
2033
2234
|
export var CreateGatewayRequest$ = [3, n0, _CGR,
|
|
2034
2235
|
0,
|
|
2035
2236
|
[_n, _rA, _aT, _d, _cT, _pT, _pC, _aCu, _kKA, _iCnt, _pEC, _eL, _ta],
|
|
@@ -2037,12 +2238,12 @@ export var CreateGatewayRequest$ = [3, n0, _CGR,
|
|
|
2037
2238
|
];
|
|
2038
2239
|
export var CreateGatewayResponse$ = [3, n0, _CGRr,
|
|
2039
2240
|
0,
|
|
2040
|
-
[_gA,
|
|
2241
|
+
[_gA, _gIa, _cA, _uA, _st, _n, _aT, _gU, _sR, _d, _rA, _pT, _pC, _aCu, _kKA, _cTC, _iCnt, _pEC, _wID, _eL, _wAA, _wC],
|
|
2041
2242
|
[0, 0, 5, 5, 0, 0, 0, 0, 64 | 0, [() => GatewayDescription, 0], 0, 0, [() => GatewayProtocolConfiguration$, 0], () => AuthorizerConfiguration$, 0, () => CustomTransformConfiguration$, () => GatewayInterceptorConfigurations, () => GatewayPolicyEngineConfiguration$, () => WorkloadIdentityDetails$, 0, 0, () => WafConfiguration$], 7
|
|
2042
2243
|
];
|
|
2043
2244
|
export var CreateGatewayRuleRequest$ = [3, n0, _CGRR,
|
|
2044
2245
|
0,
|
|
2045
|
-
[
|
|
2246
|
+
[_gI, _pr, _a, _cT, _cond, _d],
|
|
2046
2247
|
[[0, 1], 1, [() => Actions, 0], [0, 4], () => Conditions, 0], 3
|
|
2047
2248
|
];
|
|
2048
2249
|
export var CreateGatewayRuleResponse$ = [3, n0, _CGRRr,
|
|
@@ -2052,12 +2253,12 @@ export var CreateGatewayRuleResponse$ = [3, n0, _CGRRr,
|
|
|
2052
2253
|
];
|
|
2053
2254
|
export var CreateGatewayTargetRequest$ = [3, n0, _CGTR,
|
|
2054
2255
|
0,
|
|
2055
|
-
[
|
|
2256
|
+
[_gI, _tC, _n, _d, _cT, _cPCr, _mC, _pE],
|
|
2056
2257
|
[[0, 1], [() => TargetConfiguration$, 0], [() => TargetName, 0], [() => TargetDescription, 0], [0, 4], [() => CredentialProviderConfigurations, 0], () => MetadataConfiguration$, () => PrivateEndpoint$], 2
|
|
2057
2258
|
];
|
|
2058
2259
|
export var CreateGatewayTargetResponse$ = [3, n0, _CGTRr,
|
|
2059
2260
|
0,
|
|
2060
|
-
[_gA, _tI, _cA, _uA, _st, _n, _tC,
|
|
2261
|
+
[_gA, _tI, _cA, _uA, _st, _n, _tC, _cPCr, _sR, _d, _lSAa, _mC, _pE, _pEMR, _aD, _pT],
|
|
2061
2262
|
[0, 0, 5, 5, 0, [() => TargetName, 0], [() => TargetConfiguration$, 0], [() => CredentialProviderConfigurations, 0], 64 | 0, [() => TargetDescription, 0], 5, () => MetadataConfiguration$, () => PrivateEndpoint$, () => PrivateEndpointManagedResources, () => AuthorizationData$, 0], 8
|
|
2062
2263
|
];
|
|
2063
2264
|
export var CreateHarnessEndpointRequest$ = [3, n0, _CHER,
|
|
@@ -2102,7 +2303,7 @@ export var CreateOauth2CredentialProviderResponse$ = [3, n0, _COCPRr,
|
|
|
2102
2303
|
];
|
|
2103
2304
|
export var CreateOnlineEvaluationConfigRequest$ = [3, n0, _COECR,
|
|
2104
2305
|
0,
|
|
2105
|
-
[_oECN, _rul, _dSC, _eERA, _eOC, _cT, _d, _ev, _in,
|
|
2306
|
+
[_oECN, _rul, _dSC, _eERA, _eOC, _cT, _d, _ev, _in, _cCl, _ta],
|
|
2106
2307
|
[0, () => Rule$, () => DataSourceConfig$, 0, 2, [0, 4], [() => EvaluationConfigDescription, 0], () => EvaluatorList, () => InsightList, () => ClusteringConfig$, 128 | 0], 5
|
|
2107
2308
|
];
|
|
2108
2309
|
export var CreateOnlineEvaluationConfigResponse$ = [3, n0, _COECRr,
|
|
@@ -2112,12 +2313,12 @@ export var CreateOnlineEvaluationConfigResponse$ = [3, n0, _COECRr,
|
|
|
2112
2313
|
];
|
|
2113
2314
|
export var CreatePaymentConnectorRequest$ = [3, n0, _CPCR,
|
|
2114
2315
|
0,
|
|
2115
|
-
[_pMI, _n, _t,
|
|
2316
|
+
[_pMI, _n, _t, _cPCr, _d, _cT],
|
|
2116
2317
|
[[0, 1], 0, 0, () => CredentialsProviderConfigurations, 0, [0, 4]], 4
|
|
2117
2318
|
];
|
|
2118
2319
|
export var CreatePaymentConnectorResponse$ = [3, n0, _CPCRr,
|
|
2119
2320
|
0,
|
|
2120
|
-
[_pCI, _pMI, _n, _t,
|
|
2321
|
+
[_pCI, _pMI, _n, _t, _cPCr, _cA, _st],
|
|
2121
2322
|
[0, 0, 0, 0, () => CredentialsProviderConfigurations, 5, 0], 7
|
|
2122
2323
|
];
|
|
2123
2324
|
export var CreatePaymentCredentialProviderRequest$ = [3, n0, _CPCPR,
|
|
@@ -2190,7 +2391,7 @@ export var CreateWorkloadIdentityResponse$ = [3, n0, _CWIRr,
|
|
|
2190
2391
|
[_n, _wIA, _aRORU],
|
|
2191
2392
|
[0, 0, 64 | 0], 2
|
|
2192
2393
|
];
|
|
2193
|
-
export var CredentialProviderConfiguration$ = [3, n0,
|
|
2394
|
+
export var CredentialProviderConfiguration$ = [3, n0, _CPCr,
|
|
2194
2395
|
0,
|
|
2195
2396
|
[_cPT, _cP],
|
|
2196
2397
|
[0, [() => CredentialProvider$, 0]], 1
|
|
@@ -2252,13 +2453,13 @@ export var DeleteAgentRuntimeEndpointResponse$ = [3, n0, _DARERe,
|
|
|
2252
2453
|
];
|
|
2253
2454
|
export var DeleteAgentRuntimeRequest$ = [3, n0, _DARR,
|
|
2254
2455
|
0,
|
|
2255
|
-
[_aRI, _cT],
|
|
2256
|
-
[[0, 1], [0, { [_hQ]: _cT, [_iT]: 1 }]], 1
|
|
2456
|
+
[_aRI, _aRV, _cT],
|
|
2457
|
+
[[0, 1], [0, { [_hQ]: _ve }], [0, { [_hQ]: _cT, [_iT]: 1 }]], 1
|
|
2257
2458
|
];
|
|
2258
2459
|
export var DeleteAgentRuntimeResponse$ = [3, n0, _DARRe,
|
|
2259
2460
|
0,
|
|
2260
|
-
[_st, _aRI],
|
|
2261
|
-
[0, 0], 1
|
|
2461
|
+
[_st, _aRI, _aRV],
|
|
2462
|
+
[0, 0, 0], 1
|
|
2262
2463
|
];
|
|
2263
2464
|
export var DeleteApiKeyCredentialProviderRequest$ = [3, n0, _DAKCPR,
|
|
2264
2465
|
0,
|
|
@@ -2290,6 +2491,16 @@ export var DeleteBrowserResponse$ = [3, n0, _DBRe,
|
|
|
2290
2491
|
[_bI, _st, _lUA],
|
|
2291
2492
|
[0, 0, 5], 3
|
|
2292
2493
|
];
|
|
2494
|
+
export var DeleteCapacityProviderInput$ = [3, n0, _DCPI,
|
|
2495
|
+
0,
|
|
2496
|
+
[_cPI, _cT],
|
|
2497
|
+
[[0, 1], [0, { [_hQ]: _cT, [_iT]: 1 }]], 1
|
|
2498
|
+
];
|
|
2499
|
+
export var DeleteCapacityProviderOutput$ = [3, n0, _DCPO,
|
|
2500
|
+
0,
|
|
2501
|
+
[_cPI, _st],
|
|
2502
|
+
[0, 0], 2
|
|
2503
|
+
];
|
|
2293
2504
|
export var DeleteCodeInterpreterRequest$ = [3, n0, _DCIR,
|
|
2294
2505
|
0,
|
|
2295
2506
|
[_cII, _cT],
|
|
@@ -2340,19 +2551,29 @@ export var DeleteEvaluatorResponse$ = [3, n0, _DERe,
|
|
|
2340
2551
|
[_eA, _eIv, _st],
|
|
2341
2552
|
[0, 0, 0], 3
|
|
2342
2553
|
];
|
|
2554
|
+
export var DeleteGatewayRateLimitRequest$ = [3, n0, _DGRLR,
|
|
2555
|
+
0,
|
|
2556
|
+
[_gI, _rLI],
|
|
2557
|
+
[[0, 1], [0, 1]], 2
|
|
2558
|
+
];
|
|
2559
|
+
export var DeleteGatewayRateLimitResponse$ = [3, n0, _DGRLRe,
|
|
2560
|
+
0,
|
|
2561
|
+
[_rLI, _st],
|
|
2562
|
+
[0, 0], 2
|
|
2563
|
+
];
|
|
2343
2564
|
export var DeleteGatewayRequest$ = [3, n0, _DGR,
|
|
2344
2565
|
0,
|
|
2345
|
-
[
|
|
2566
|
+
[_gI],
|
|
2346
2567
|
[[0, 1]], 1
|
|
2347
2568
|
];
|
|
2348
2569
|
export var DeleteGatewayResponse$ = [3, n0, _DGRe,
|
|
2349
2570
|
0,
|
|
2350
|
-
[
|
|
2571
|
+
[_gIa, _st, _sR],
|
|
2351
2572
|
[0, 0, 64 | 0], 2
|
|
2352
2573
|
];
|
|
2353
2574
|
export var DeleteGatewayRuleRequest$ = [3, n0, _DGRR,
|
|
2354
2575
|
0,
|
|
2355
|
-
[
|
|
2576
|
+
[_gI, _rI],
|
|
2356
2577
|
[[0, 1], [0, 1]], 2
|
|
2357
2578
|
];
|
|
2358
2579
|
export var DeleteGatewayRuleResponse$ = [3, n0, _DGRRe,
|
|
@@ -2362,7 +2583,7 @@ export var DeleteGatewayRuleResponse$ = [3, n0, _DGRRe,
|
|
|
2362
2583
|
];
|
|
2363
2584
|
export var DeleteGatewayTargetRequest$ = [3, n0, _DGTR,
|
|
2364
2585
|
0,
|
|
2365
|
-
[
|
|
2586
|
+
[_gI, _tI],
|
|
2366
2587
|
[[0, 1], [0, 1]], 2
|
|
2367
2588
|
];
|
|
2368
2589
|
export var DeleteGatewayTargetResponse$ = [3, n0, _DGTRe,
|
|
@@ -2520,16 +2741,36 @@ export var Descriptors$ = [3, n0, _Des,
|
|
|
2520
2741
|
[_mc, _aa, _cu, _aSg],
|
|
2521
2742
|
[() => McpDescriptor$, () => A2aDescriptor$, () => CustomDescriptor$, () => AgentSkillsDescriptor$]
|
|
2522
2743
|
];
|
|
2744
|
+
export var EbsVolumeConfiguration$ = [3, n0, _EVC,
|
|
2745
|
+
0,
|
|
2746
|
+
[_n, _sGB, _vT, _io, _th, _enc, _kKI, _sI],
|
|
2747
|
+
[0, 1, 0, 1, 1, 2, 0, 0], 2
|
|
2748
|
+
];
|
|
2749
|
+
export var Ec2Configuration$ = [3, n0, _EC,
|
|
2750
|
+
0,
|
|
2751
|
+
[_lTS, _vCp, _vo, _lC, _rVo],
|
|
2752
|
+
[() => LaunchTemplateSource$, () => VpcConfiguration$, () => VolumeConfigurationList, () => InstanceLifecycleConfiguration$, () => RootVolumeConfiguration$], 2
|
|
2753
|
+
];
|
|
2523
2754
|
export var EfsAccessPointConfiguration$ = [3, n0, _EAPC,
|
|
2524
2755
|
0,
|
|
2525
2756
|
[_aPA, _mP],
|
|
2526
2757
|
[0, 0], 2
|
|
2527
2758
|
];
|
|
2528
|
-
export var EfsConfiguration$ = [3, n0,
|
|
2759
|
+
export var EfsConfiguration$ = [3, n0, _ECf,
|
|
2529
2760
|
0,
|
|
2530
2761
|
[_aPA, _mP, _fSA],
|
|
2531
2762
|
[0, 0, 0], 3
|
|
2532
2763
|
];
|
|
2764
|
+
export var EphemeralBlockDeviceMapping$ = [3, n0, _EBDM,
|
|
2765
|
+
0,
|
|
2766
|
+
[_dNe, _vNi, _eb],
|
|
2767
|
+
[0, 0, () => EphemeralEBSVolumeConfiguration$]
|
|
2768
|
+
];
|
|
2769
|
+
export var EphemeralEBSVolumeConfiguration$ = [3, n0, _EEBSVC,
|
|
2770
|
+
0,
|
|
2771
|
+
[_vT, _io, _th, _enc, _kKI, _sI, _vS, _vIR, _eCI],
|
|
2772
|
+
[0, 1, 1, 2, 0, 0, 1, 1, 1]
|
|
2773
|
+
];
|
|
2533
2774
|
export var EpisodicConsolidationOverride$ = [3, n0, _ECO,
|
|
2534
2775
|
0,
|
|
2535
2776
|
[_aTP, _mI],
|
|
@@ -2597,7 +2838,7 @@ export var Finding$ = [3, n0, _Fi,
|
|
|
2597
2838
|
];
|
|
2598
2839
|
export var FromUrlSynchronizationConfiguration$ = [3, n0, _FUSC,
|
|
2599
2840
|
0,
|
|
2600
|
-
[_u,
|
|
2841
|
+
[_u, _cPCr],
|
|
2601
2842
|
[0, () => RegistryRecordCredentialProviderConfigurationList], 1
|
|
2602
2843
|
];
|
|
2603
2844
|
export var GatewayApiKeyCredentialProvider$ = [3, n0, _GAKCP,
|
|
@@ -2615,6 +2856,11 @@ export var GatewayPolicyEngineConfiguration$ = [3, n0, _GPEC,
|
|
|
2615
2856
|
[_ar, _mod],
|
|
2616
2857
|
[0, 0], 2
|
|
2617
2858
|
];
|
|
2859
|
+
export var GatewayRateLimitDetail$ = [3, n0, _GRLD,
|
|
2860
|
+
0,
|
|
2861
|
+
[_rLI, _gI, _dK, _en, _st, _cA, _uA, _d],
|
|
2862
|
+
[0, 0, 64 | 0, () => LimitEntries, 0, 5, 5, 0], 7
|
|
2863
|
+
];
|
|
2618
2864
|
export var GatewayRuleDetail$ = [3, n0, _GRD,
|
|
2619
2865
|
0,
|
|
2620
2866
|
[_rI, _gA, _pr, _a, _cA, _st, _cond, _d, _sy, _uA],
|
|
@@ -2622,12 +2868,12 @@ export var GatewayRuleDetail$ = [3, n0, _GRD,
|
|
|
2622
2868
|
];
|
|
2623
2869
|
export var GatewaySummary$ = [3, n0, _GS,
|
|
2624
2870
|
0,
|
|
2625
|
-
[
|
|
2871
|
+
[_gIa, _n, _st, _cA, _uA, _aT, _d, _pT],
|
|
2626
2872
|
[0, 0, 0, 5, 5, 0, [() => GatewayDescription, 0], 0], 6
|
|
2627
2873
|
];
|
|
2628
2874
|
export var GatewayTarget$ = [3, n0, _GT,
|
|
2629
2875
|
0,
|
|
2630
|
-
[_gA, _tI, _cA, _uA, _st, _n, _tC,
|
|
2876
|
+
[_gA, _tI, _cA, _uA, _st, _n, _tC, _cPCr, _sR, _d, _lSAa, _mC, _pE, _pEMR, _aD, _pT],
|
|
2631
2877
|
[0, 0, 5, 5, 0, [() => TargetName, 0], [() => TargetConfiguration$, 0], [() => CredentialProviderConfigurations, 0], 64 | 0, [() => TargetDescription, 0], 5, () => MetadataConfiguration$, () => PrivateEndpoint$, () => PrivateEndpointManagedResources, () => AuthorizationData$, 0], 8
|
|
2632
2878
|
];
|
|
2633
2879
|
export var GetAgentRuntimeEndpointRequest$ = [3, n0, _GARER,
|
|
@@ -2647,8 +2893,8 @@ export var GetAgentRuntimeRequest$ = [3, n0, _GARR,
|
|
|
2647
2893
|
];
|
|
2648
2894
|
export var GetAgentRuntimeResponse$ = [3, n0, _GARRe,
|
|
2649
2895
|
0,
|
|
2650
|
-
[_aRA, _aRN, _aRI, _aRV, _cA, _lUA, _rA, _nC, _st, _lC, _fR, _d, _wID, _aRAg, _pC, _eV, _aCu, _rHC, _mC, _fC],
|
|
2651
|
-
[0, 0, 0, 0, 5, 5, 0, () => NetworkConfiguration$, 0, () => LifecycleConfiguration$, 0, [() => Description, 0], () => WorkloadIdentityDetails$, () => AgentRuntimeArtifact$, () => ProtocolConfiguration$, [() => EnvironmentVariablesMap, 0], () => AuthorizerConfiguration$, () => RequestHeaderConfiguration$, () => RuntimeMetadataConfiguration$, () => FilesystemConfigurations], 10
|
|
2896
|
+
[_aRA, _aRN, _aRI, _aRV, _cA, _lUA, _rA, _nC, _st, _lC, _fR, _d, _wID, _aRAg, _pC, _eV, _aCu, _rHC, _mC, _fC, _cPC],
|
|
2897
|
+
[0, 0, 0, 0, 5, 5, 0, () => NetworkConfiguration$, 0, () => LifecycleConfiguration$, 0, [() => Description, 0], () => WorkloadIdentityDetails$, () => AgentRuntimeArtifact$, () => ProtocolConfiguration$, [() => EnvironmentVariablesMap, 0], () => AuthorizerConfiguration$, () => RequestHeaderConfiguration$, () => RuntimeMetadataConfiguration$, () => FilesystemConfigurations, () => CapacityProviderConfiguration$], 10
|
|
2652
2898
|
];
|
|
2653
2899
|
export var GetApiKeyCredentialProviderRequest$ = [3, n0, _GAKCPR,
|
|
2654
2900
|
0,
|
|
@@ -2680,6 +2926,16 @@ export var GetBrowserResponse$ = [3, n0, _GBRe,
|
|
|
2680
2926
|
[_bI, _bA, _n, _nC, _st, _cA, _lUA, _d, _eRA, _re, _bS, _ePn, _ce, _fC, _fR],
|
|
2681
2927
|
[0, 0, 0, () => BrowserNetworkConfiguration$, 0, 5, 5, [() => Description, 0], 0, () => RecordingConfig$, () => BrowserSigningConfigOutput$, () => BrowserEnterprisePolicies, () => Certificates, () => ToolsFileSystemConfigurations, 0], 7
|
|
2682
2928
|
];
|
|
2929
|
+
export var GetCapacityProviderInput$ = [3, n0, _GCPI,
|
|
2930
|
+
0,
|
|
2931
|
+
[_cPI],
|
|
2932
|
+
[[0, 1]], 1
|
|
2933
|
+
];
|
|
2934
|
+
export var GetCapacityProviderOutput$ = [3, n0, _GCPO,
|
|
2935
|
+
0,
|
|
2936
|
+
[_cPI, _cPAa, _n, _st, _pCe, _cC, _cA, _lUA, _d, _sCt, _sRt],
|
|
2937
|
+
[0, 0, 0, 0, () => PermissionsConfiguration$, () => ComputeConfiguration$, 5, 5, [() => Description, 0], 0, 0], 8
|
|
2938
|
+
];
|
|
2683
2939
|
export var GetCodeInterpreterRequest$ = [3, n0, _GCIR,
|
|
2684
2940
|
0,
|
|
2685
2941
|
[_cII],
|
|
@@ -2730,19 +2986,29 @@ export var GetEvaluatorResponse$ = [3, n0, _GERe,
|
|
|
2730
2986
|
[_eA, _eIv, _eNv, _eC, _le, _st, _cA, _uA, _d, _lFM, _kKA],
|
|
2731
2987
|
[0, 0, 0, [() => EvaluatorConfig$, 0], 0, 0, 4, 4, [() => EvaluatorDescription, 0], 2, 0], 8
|
|
2732
2988
|
];
|
|
2989
|
+
export var GetGatewayRateLimitRequest$ = [3, n0, _GGRLR,
|
|
2990
|
+
0,
|
|
2991
|
+
[_gI, _rLI],
|
|
2992
|
+
[[0, 1], [0, 1]], 2
|
|
2993
|
+
];
|
|
2994
|
+
export var GetGatewayRateLimitResponse$ = [3, n0, _GGRLRe,
|
|
2995
|
+
0,
|
|
2996
|
+
[_rLI, _gI, _dK, _en, _st, _cA, _uA, _d],
|
|
2997
|
+
[0, 0, 64 | 0, () => LimitEntries, 0, 5, 5, 0], 7
|
|
2998
|
+
];
|
|
2733
2999
|
export var GetGatewayRequest$ = [3, n0, _GGR,
|
|
2734
3000
|
0,
|
|
2735
|
-
[
|
|
3001
|
+
[_gI],
|
|
2736
3002
|
[[0, 1]], 1
|
|
2737
3003
|
];
|
|
2738
3004
|
export var GetGatewayResponse$ = [3, n0, _GGRe,
|
|
2739
3005
|
0,
|
|
2740
|
-
[_gA,
|
|
3006
|
+
[_gA, _gIa, _cA, _uA, _st, _n, _aT, _gU, _sR, _d, _rA, _pT, _pC, _aCu, _kKA, _cTC, _iCnt, _pEC, _wID, _eL, _wAA, _wC],
|
|
2741
3007
|
[0, 0, 5, 5, 0, 0, 0, 0, 64 | 0, [() => GatewayDescription, 0], 0, 0, [() => GatewayProtocolConfiguration$, 0], () => AuthorizerConfiguration$, 0, () => CustomTransformConfiguration$, () => GatewayInterceptorConfigurations, () => GatewayPolicyEngineConfiguration$, () => WorkloadIdentityDetails$, 0, 0, () => WafConfiguration$], 7
|
|
2742
3008
|
];
|
|
2743
3009
|
export var GetGatewayRuleRequest$ = [3, n0, _GGRR,
|
|
2744
3010
|
0,
|
|
2745
|
-
[
|
|
3011
|
+
[_gI, _rI],
|
|
2746
3012
|
[[0, 1], [0, 1]], 2
|
|
2747
3013
|
];
|
|
2748
3014
|
export var GetGatewayRuleResponse$ = [3, n0, _GGRRe,
|
|
@@ -2752,12 +3018,12 @@ export var GetGatewayRuleResponse$ = [3, n0, _GGRRe,
|
|
|
2752
3018
|
];
|
|
2753
3019
|
export var GetGatewayTargetRequest$ = [3, n0, _GGTR,
|
|
2754
3020
|
0,
|
|
2755
|
-
[
|
|
3021
|
+
[_gI, _tI],
|
|
2756
3022
|
[[0, 1], [0, 1]], 2
|
|
2757
3023
|
];
|
|
2758
3024
|
export var GetGatewayTargetResponse$ = [3, n0, _GGTRe,
|
|
2759
3025
|
0,
|
|
2760
|
-
[_gA, _tI, _cA, _uA, _st, _n, _tC,
|
|
3026
|
+
[_gA, _tI, _cA, _uA, _st, _n, _tC, _cPCr, _sR, _d, _lSAa, _mC, _pE, _pEMR, _aD, _pT],
|
|
2761
3027
|
[0, 0, 5, 5, 0, [() => TargetName, 0], [() => TargetConfiguration$, 0], [() => CredentialProviderConfigurations, 0], 64 | 0, [() => TargetDescription, 0], 5, () => MetadataConfiguration$, () => PrivateEndpoint$, () => PrivateEndpointManagedResources, () => AuthorizationData$, 0], 8
|
|
2762
3028
|
];
|
|
2763
3029
|
export var GetHarnessEndpointRequest$ = [3, n0, _GHER,
|
|
@@ -2807,7 +3073,7 @@ export var GetOnlineEvaluationConfigRequest$ = [3, n0, _GOECR,
|
|
|
2807
3073
|
];
|
|
2808
3074
|
export var GetOnlineEvaluationConfigResponse$ = [3, n0, _GOECRe,
|
|
2809
3075
|
0,
|
|
2810
|
-
[_oECA, _oECI, _oECN, _rul, _dSC, _st, _eS, _cA, _uA, _d, _ev, _in,
|
|
3076
|
+
[_oECA, _oECI, _oECN, _rul, _dSC, _st, _eS, _cA, _uA, _d, _ev, _in, _cCl, _oC, _eERA, _fR],
|
|
2811
3077
|
[0, 0, 0, () => Rule$, () => DataSourceConfig$, 0, 0, 4, 4, [() => EvaluationConfigDescription, 0], () => EvaluatorList, () => InsightList, () => ClusteringConfig$, () => OutputConfig$, 0, 0], 9
|
|
2812
3078
|
];
|
|
2813
3079
|
export var GetPaymentConnectorRequest$ = [3, n0, _GPCR,
|
|
@@ -2817,7 +3083,7 @@ export var GetPaymentConnectorRequest$ = [3, n0, _GPCR,
|
|
|
2817
3083
|
];
|
|
2818
3084
|
export var GetPaymentConnectorResponse$ = [3, n0, _GPCRe,
|
|
2819
3085
|
0,
|
|
2820
|
-
[_pCI, _n, _t,
|
|
3086
|
+
[_pCI, _n, _t, _cPCr, _cA, _lUA, _st, _d],
|
|
2821
3087
|
[0, 0, 0, () => CredentialsProviderConfigurations, 5, 5, 0, 0], 7
|
|
2822
3088
|
];
|
|
2823
3089
|
export var GetPaymentCredentialProviderRequest$ = [3, n0, _GPCPR,
|
|
@@ -2997,7 +3263,7 @@ export var HarnessAgentCoreMemoryConfiguration$ = [3, n0, _HACMC,
|
|
|
2997
3263
|
];
|
|
2998
3264
|
export var HarnessAgentCoreMemoryRetrievalConfig$ = [3, n0, _HACMRC,
|
|
2999
3265
|
0,
|
|
3000
|
-
[_tK, _rS,
|
|
3266
|
+
[_tK, _rS, _sIt],
|
|
3001
3267
|
[1, 1, 0]
|
|
3002
3268
|
];
|
|
3003
3269
|
export var HarnessAgentCoreRuntimeEnvironment$ = [3, n0, _HACRE,
|
|
@@ -3115,6 +3381,16 @@ export var HttpApiSchemaConfiguration$ = [3, n0, _HASC,
|
|
|
3115
3381
|
[_so],
|
|
3116
3382
|
[[() => ApiSchemaConfiguration$, 0]], 1
|
|
3117
3383
|
];
|
|
3384
|
+
export var HttpConnectorSource$ = [3, n0, _HCS,
|
|
3385
|
+
0,
|
|
3386
|
+
[_cIo],
|
|
3387
|
+
[0], 1
|
|
3388
|
+
];
|
|
3389
|
+
export var HttpConnectorTargetConfiguration$ = [3, n0, _HCTC,
|
|
3390
|
+
0,
|
|
3391
|
+
[_so, _par],
|
|
3392
|
+
[() => HttpConnectorSource$, 128 | 0], 1
|
|
3393
|
+
];
|
|
3118
3394
|
export var IamCredentialProvider$ = [3, n0, _ICP,
|
|
3119
3395
|
0,
|
|
3120
3396
|
[_ser, _reg],
|
|
@@ -3175,6 +3451,16 @@ export var Insight$ = [3, n0, _I,
|
|
|
3175
3451
|
[_iI],
|
|
3176
3452
|
[0], 1
|
|
3177
3453
|
];
|
|
3454
|
+
export var InstanceLifecycleConfiguration$ = [3, n0, _ILC,
|
|
3455
|
+
0,
|
|
3456
|
+
[_iIT, _mL],
|
|
3457
|
+
[1, 1]
|
|
3458
|
+
];
|
|
3459
|
+
export var InstanceRequirements$ = [3, n0, _IR,
|
|
3460
|
+
0,
|
|
3461
|
+
[_aIT],
|
|
3462
|
+
[64 | 0], 1
|
|
3463
|
+
];
|
|
3178
3464
|
export var InterceptorInputConfiguration$ = [3, n0, _IIC,
|
|
3179
3465
|
0,
|
|
3180
3466
|
[_pRH, _pF],
|
|
@@ -3225,11 +3511,26 @@ export var LambdaTransformConfiguration$ = [3, n0, _LTC,
|
|
|
3225
3511
|
[_ar],
|
|
3226
3512
|
[0]
|
|
3227
3513
|
];
|
|
3514
|
+
export var LaunchParameters$ = [3, n0, _LP,
|
|
3515
|
+
0,
|
|
3516
|
+
[_oS, _iR, _eVp, _mon, _lS, _cRS, _sKN, _iPA, _pTr],
|
|
3517
|
+
[0, () => InstanceRequirements$, () => EphemeralBlockDeviceMappingList, 0, () => LicenseSpecificationList, () => CapacityReservationSpecification$, 0, 0, 128 | 0], 2
|
|
3518
|
+
];
|
|
3519
|
+
export var LicenseSpecification$ = [3, n0, _LS,
|
|
3520
|
+
0,
|
|
3521
|
+
[_lCA],
|
|
3522
|
+
[0], 1
|
|
3523
|
+
];
|
|
3228
3524
|
export var LifecycleConfiguration$ = [3, n0, _LC,
|
|
3229
3525
|
0,
|
|
3230
3526
|
[_iRST, _mL],
|
|
3231
3527
|
[1, 1]
|
|
3232
3528
|
];
|
|
3529
|
+
export var LimitEntry$ = [3, n0, _LE,
|
|
3530
|
+
0,
|
|
3531
|
+
[_di, _req, _tok, _conn],
|
|
3532
|
+
[128 | 0, () => RateConfigs, () => RateConfigs, () => RateConfigs], 1
|
|
3533
|
+
];
|
|
3233
3534
|
export var LinkedinOauth2ProviderConfigInput$ = [3, n0, _LOPCI,
|
|
3234
3535
|
0,
|
|
3235
3536
|
[_cI, _cS, _cSC, _cSS],
|
|
@@ -3260,6 +3561,16 @@ export var ListAgentRuntimesResponse$ = [3, n0, _LARRi,
|
|
|
3260
3561
|
[_aR, _nTe],
|
|
3261
3562
|
[[() => AgentRuntimes, 0], 0], 1
|
|
3262
3563
|
];
|
|
3564
|
+
export var ListAgentRuntimeVersionsByCapacityProviderInput$ = [3, n0, _LARVBCPI,
|
|
3565
|
+
0,
|
|
3566
|
+
[_cPI, _mR, _nTe],
|
|
3567
|
+
[[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nTe }]], 1
|
|
3568
|
+
];
|
|
3569
|
+
export var ListAgentRuntimeVersionsByCapacityProviderOutput$ = [3, n0, _LARVBCPO,
|
|
3570
|
+
0,
|
|
3571
|
+
[_aR, _nTe],
|
|
3572
|
+
[() => AgentRuntimeVersionSummaryList, 0], 1
|
|
3573
|
+
];
|
|
3263
3574
|
export var ListAgentRuntimeVersionsRequest$ = [3, n0, _LARVR,
|
|
3264
3575
|
0,
|
|
3265
3576
|
[_aRI, _mR, _nTe],
|
|
@@ -3300,6 +3611,16 @@ export var ListBrowsersResponse$ = [3, n0, _LBRi,
|
|
|
3300
3611
|
[_bSr, _nTe],
|
|
3301
3612
|
[[() => BrowserSummaries, 0], 0], 1
|
|
3302
3613
|
];
|
|
3614
|
+
export var ListCapacityProvidersInput$ = [3, n0, _LCPI,
|
|
3615
|
+
0,
|
|
3616
|
+
[_mR, _nTe],
|
|
3617
|
+
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nTe }]]
|
|
3618
|
+
];
|
|
3619
|
+
export var ListCapacityProvidersOutput$ = [3, n0, _LCPO,
|
|
3620
|
+
0,
|
|
3621
|
+
[_cPa, _nTe],
|
|
3622
|
+
[() => CapacityProviderList, 0], 1
|
|
3623
|
+
];
|
|
3303
3624
|
export var ListCodeInterpretersRequest$ = [3, n0, _LCIR,
|
|
3304
3625
|
0,
|
|
3305
3626
|
[_mR, _nTe, _t],
|
|
@@ -3370,9 +3691,19 @@ export var ListEvaluatorsResponse$ = [3, n0, _LERi,
|
|
|
3370
3691
|
[_ev, _nTe],
|
|
3371
3692
|
[[() => EvaluatorSummaryList, 0], 0], 1
|
|
3372
3693
|
];
|
|
3694
|
+
export var ListGatewayRateLimitsRequest$ = [3, n0, _LGRLR,
|
|
3695
|
+
0,
|
|
3696
|
+
[_gI, _mR, _nTe],
|
|
3697
|
+
[[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nTe }]], 1
|
|
3698
|
+
];
|
|
3699
|
+
export var ListGatewayRateLimitsResponse$ = [3, n0, _LGRLRi,
|
|
3700
|
+
0,
|
|
3701
|
+
[_rL, _nTe],
|
|
3702
|
+
[() => GatewayRateLimits, 0], 1
|
|
3703
|
+
];
|
|
3373
3704
|
export var ListGatewayRulesRequest$ = [3, n0, _LGRR,
|
|
3374
3705
|
0,
|
|
3375
|
-
[
|
|
3706
|
+
[_gI, _mR, _nTe],
|
|
3376
3707
|
[[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nTe }]], 1
|
|
3377
3708
|
];
|
|
3378
3709
|
export var ListGatewayRulesResponse$ = [3, n0, _LGRRi,
|
|
@@ -3392,7 +3723,7 @@ export var ListGatewaysResponse$ = [3, n0, _LGRi,
|
|
|
3392
3723
|
];
|
|
3393
3724
|
export var ListGatewayTargetsRequest$ = [3, n0, _LGTR,
|
|
3394
3725
|
0,
|
|
3395
|
-
[
|
|
3726
|
+
[_gI, _mR, _nTe],
|
|
3396
3727
|
[[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nTe }]], 1
|
|
3397
3728
|
];
|
|
3398
3729
|
export var ListGatewayTargetsResponse$ = [3, n0, _LGTRi,
|
|
@@ -3637,7 +3968,7 @@ export var McpDescriptor$ = [3, n0, _MD,
|
|
|
3637
3968
|
];
|
|
3638
3969
|
export var MCPGatewayConfiguration$ = [3, n0, _MCPGC,
|
|
3639
3970
|
0,
|
|
3640
|
-
[_sVu, _ins, _sTe, _sCe,
|
|
3971
|
+
[_sVu, _ins, _sTe, _sCe, _sCtr],
|
|
3641
3972
|
[64 | 0, [() => McpInstructions, 0], 0, () => SessionConfiguration$, () => StreamingConfiguration$]
|
|
3642
3973
|
];
|
|
3643
3974
|
export var McpLambdaTargetConfiguration$ = [3, n0, _MLTC,
|
|
@@ -3662,7 +3993,7 @@ export var MemoryRecordSchema$ = [3, n0, _MRS,
|
|
|
3662
3993
|
];
|
|
3663
3994
|
export var MemoryStrategy$ = [3, n0, _MS,
|
|
3664
3995
|
0,
|
|
3665
|
-
[
|
|
3996
|
+
[_sIt, _n, _t, _na, _nT, _d, _con, _cA, _uA, _st, _mRS],
|
|
3666
3997
|
[0, 0, 0, 64 | 0, 64 | 0, [() => Description, 0], [() => StrategyConfiguration$, 0], 4, 4, 0, [() => MemoryRecordSchema$, 0]], 5
|
|
3667
3998
|
];
|
|
3668
3999
|
export var MemorySummary$ = [3, n0, _MSe,
|
|
@@ -3777,7 +4108,7 @@ export var OnBehalfOfTokenExchangeConfigType$ = [3, n0, _OBOTECT,
|
|
|
3777
4108
|
];
|
|
3778
4109
|
export var OnlineEvaluationConfigSummary$ = [3, n0, _OECS,
|
|
3779
4110
|
0,
|
|
3780
|
-
[_oECA, _oECI, _oECN, _st, _eS, _cA, _uA, _d, _fR, _in,
|
|
4111
|
+
[_oECA, _oECI, _oECN, _st, _eS, _cA, _uA, _d, _fR, _in, _cCl],
|
|
3781
4112
|
[0, 0, 0, 0, 0, 4, 4, [() => EvaluationConfigDescription, 0], 0, () => InsightList, () => ClusteringConfig$], 7
|
|
3782
4113
|
];
|
|
3783
4114
|
export var OpenResponsesEvaluatorModelConfig$ = [3, n0, _OREMC,
|
|
@@ -3815,6 +4146,11 @@ export var PaymentManagerSummary$ = [3, n0, _PMS,
|
|
|
3815
4146
|
[_pMA, _pMI, _n, _aT, _rA, _st, _lUA, _d, _cA],
|
|
3816
4147
|
[0, 0, 0, 0, 0, 0, 5, 0, 5], 7
|
|
3817
4148
|
];
|
|
4149
|
+
export var PermissionsConfiguration$ = [3, n0, _PC,
|
|
4150
|
+
0,
|
|
4151
|
+
[_cPORA],
|
|
4152
|
+
[0], 1
|
|
4153
|
+
];
|
|
3818
4154
|
export var Policy$ = [3, n0, _Po,
|
|
3819
4155
|
0,
|
|
3820
4156
|
[_pIo, _n, _pEI, _cA, _uA, _pAo, _st, _de, _sR, _eM, _d],
|
|
@@ -3870,7 +4206,7 @@ export var PrivateKeyJwtConfig$ = [3, n0, _PKJC,
|
|
|
3870
4206
|
[_pKS, _sA, _aHC, _aPC],
|
|
3871
4207
|
[() => PrivateKeySource$, 0, [() => AdditionalClaims, 0], [() => AdditionalClaims, 0]]
|
|
3872
4208
|
];
|
|
3873
|
-
export var ProtocolConfiguration$ = [3, n0,
|
|
4209
|
+
export var ProtocolConfiguration$ = [3, n0, _PCr,
|
|
3874
4210
|
0,
|
|
3875
4211
|
[_sPe],
|
|
3876
4212
|
[0], 1
|
|
@@ -3890,14 +4226,19 @@ export var PutResourcePolicyResponse$ = [3, n0, _PRPRu,
|
|
|
3890
4226
|
[_po],
|
|
3891
4227
|
[0], 1
|
|
3892
4228
|
];
|
|
3893
|
-
export var
|
|
4229
|
+
export var RateConfig$ = [3, n0, _RC,
|
|
4230
|
+
0,
|
|
4231
|
+
[_ra, _pe],
|
|
4232
|
+
[1, 0], 2
|
|
4233
|
+
];
|
|
4234
|
+
export var ReasoningConfiguration$ = [3, n0, _RCe,
|
|
3894
4235
|
0,
|
|
3895
4236
|
[_ef],
|
|
3896
4237
|
[0]
|
|
3897
4238
|
];
|
|
3898
|
-
export var RecordingConfig$ = [3, n0,
|
|
4239
|
+
export var RecordingConfig$ = [3, n0, _RCec,
|
|
3899
4240
|
0,
|
|
3900
|
-
[
|
|
4241
|
+
[_ena, _sL],
|
|
3901
4242
|
[2, () => S3Location$]
|
|
3902
4243
|
];
|
|
3903
4244
|
export var RegistryRecordCredentialProviderConfiguration$ = [3, n0, _RRCPC,
|
|
@@ -3925,6 +4266,11 @@ export var RegistrySummary$ = [3, n0, _RS,
|
|
|
3925
4266
|
[_n, _rIe, _rAeg, _st, _cA, _uA, _d, _aT, _sRt],
|
|
3926
4267
|
[0, 0, 0, 0, 5, 5, [() => Description, 0], 0, 0], 6
|
|
3927
4268
|
];
|
|
4269
|
+
export var RootVolumeConfiguration$ = [3, n0, _RVC,
|
|
4270
|
+
0,
|
|
4271
|
+
[_vT, _io, _th, _enc, _kKI, _fSGB],
|
|
4272
|
+
[0, 1, 1, 2, 0, 1]
|
|
4273
|
+
];
|
|
3928
4274
|
export var Rule$ = [3, n0, _R,
|
|
3929
4275
|
0,
|
|
3930
4276
|
[_sCa, _filt, _sCes],
|
|
@@ -3982,7 +4328,7 @@ export var SamplingConfig$ = [3, n0, _SCa,
|
|
|
3982
4328
|
];
|
|
3983
4329
|
export var SchemaDefinition$ = [3, n0, _SD,
|
|
3984
4330
|
0,
|
|
3985
|
-
[_t, _pro,
|
|
4331
|
+
[_t, _pro, _requ, _it, _d],
|
|
3986
4332
|
[0, () => SchemaProperties, 64 | 0, () => SchemaDefinition$, 0], 1
|
|
3987
4333
|
];
|
|
3988
4334
|
export var Secret$ = [3, n0, _S,
|
|
@@ -4187,7 +4533,7 @@ export var SynchronizationConfiguration$ = [3, n0, _SCy,
|
|
|
4187
4533
|
];
|
|
4188
4534
|
export var SynchronizeGatewayTargetsRequest$ = [3, n0, _SGTR,
|
|
4189
4535
|
0,
|
|
4190
|
-
[
|
|
4536
|
+
[_gI, _tIL],
|
|
4191
4537
|
[[0, 1], 64 | 0], 2
|
|
4192
4538
|
];
|
|
4193
4539
|
export var SynchronizeGatewayTargetsResponse$ = [3, n0, _SGTRy,
|
|
@@ -4247,7 +4593,7 @@ export var TokenExchangeGrantTypeConfigType$ = [3, n0, _TEGTCT,
|
|
|
4247
4593
|
];
|
|
4248
4594
|
export var ToolDefinition$ = [3, n0, _TDo,
|
|
4249
4595
|
8,
|
|
4250
|
-
[_n, _d, _iS,
|
|
4596
|
+
[_n, _d, _iS, _oSu],
|
|
4251
4597
|
[0, 0, () => SchemaDefinition$, () => SchemaDefinition$], 3
|
|
4252
4598
|
];
|
|
4253
4599
|
export var ToolsDefinition$ = [3, n0, _TDoo,
|
|
@@ -4282,8 +4628,8 @@ export var UpdateAgentRuntimeEndpointResponse$ = [3, n0, _UARERp,
|
|
|
4282
4628
|
];
|
|
4283
4629
|
export var UpdateAgentRuntimeRequest$ = [3, n0, _UARR,
|
|
4284
4630
|
0,
|
|
4285
|
-
[_aRI, _aRAg, _rA, _nC, _d, _aCu, _rHC, _pC, _lC, _mC, _eV, _fC, _cT],
|
|
4286
|
-
[[0, 1], () => AgentRuntimeArtifact$, 0, () => NetworkConfiguration$, [() => Description, 0], () => AuthorizerConfiguration$, () => RequestHeaderConfiguration$, () => ProtocolConfiguration$, () => LifecycleConfiguration$, () => RuntimeMetadataConfiguration$, [() => EnvironmentVariablesMap, 0], () => FilesystemConfigurations, [0, 4]],
|
|
4631
|
+
[_aRI, _aRAg, _rA, _nC, _d, _aCu, _rHC, _pC, _lC, _mC, _eV, _fC, _cPC, _cT],
|
|
4632
|
+
[[0, 1], () => AgentRuntimeArtifact$, 0, () => NetworkConfiguration$, [() => Description, 0], () => AuthorizerConfiguration$, () => RequestHeaderConfiguration$, () => ProtocolConfiguration$, () => LifecycleConfiguration$, () => RuntimeMetadataConfiguration$, [() => EnvironmentVariablesMap, 0], () => FilesystemConfigurations, () => CapacityProviderConfiguration$, [0, 4]], 3
|
|
4287
4633
|
];
|
|
4288
4634
|
export var UpdateAgentRuntimeResponse$ = [3, n0, _UARRp,
|
|
4289
4635
|
0,
|
|
@@ -4300,6 +4646,16 @@ export var UpdateApiKeyCredentialProviderResponse$ = [3, n0, _UAKCPRp,
|
|
|
4300
4646
|
[_aKSA, _n, _cPA, _cTr, _lUT, _aKSJK, _aKSS],
|
|
4301
4647
|
[() => Secret$, 0, 0, 4, 4, 0, 0], 5
|
|
4302
4648
|
];
|
|
4649
|
+
export var UpdateCapacityProviderInput$ = [3, n0, _UCPI,
|
|
4650
|
+
0,
|
|
4651
|
+
[_cPI, _d, _cT],
|
|
4652
|
+
[[0, 1], [() => UpdatedDescription$, 0], [0, 4]], 1
|
|
4653
|
+
];
|
|
4654
|
+
export var UpdateCapacityProviderOutput$ = [3, n0, _UCPO,
|
|
4655
|
+
0,
|
|
4656
|
+
[_cPI, _cPAa, _n, _st, _cA, _lUA],
|
|
4657
|
+
[0, 0, 0, 0, 5, 5], 6
|
|
4658
|
+
];
|
|
4303
4659
|
export var UpdateConfigurationBundleRequest$ = [3, n0, _UCBR,
|
|
4304
4660
|
0,
|
|
4305
4661
|
[_bIu, _cT, _bN, _d, _com, _pVI, _bNr, _cM, _cB, _kKA],
|
|
@@ -4435,19 +4791,29 @@ export var UpdateEvaluatorResponse$ = [3, n0, _UERp,
|
|
|
4435
4791
|
[_eA, _eIv, _uA, _st],
|
|
4436
4792
|
[0, 0, 4, 0], 4
|
|
4437
4793
|
];
|
|
4794
|
+
export var UpdateGatewayRateLimitRequest$ = [3, n0, _UGRLR,
|
|
4795
|
+
0,
|
|
4796
|
+
[_gI, _rLI, _en, _d],
|
|
4797
|
+
[[0, 1], [0, 1], () => LimitEntries, 0], 3
|
|
4798
|
+
];
|
|
4799
|
+
export var UpdateGatewayRateLimitResponse$ = [3, n0, _UGRLRp,
|
|
4800
|
+
0,
|
|
4801
|
+
[_rLI, _gI, _dK, _en, _st, _cA, _uA, _d],
|
|
4802
|
+
[0, 0, 64 | 0, () => LimitEntries, 0, 5, 5, 0], 7
|
|
4803
|
+
];
|
|
4438
4804
|
export var UpdateGatewayRequest$ = [3, n0, _UGR,
|
|
4439
4805
|
0,
|
|
4440
|
-
[
|
|
4806
|
+
[_gI, _n, _rA, _aT, _d, _pT, _pC, _aCu, _kKA, _cTC, _iCnt, _pEC, _eL, _wC],
|
|
4441
4807
|
[[0, 1], 0, 0, 0, [() => GatewayDescription, 0], 0, [() => GatewayProtocolConfiguration$, 0], () => AuthorizerConfiguration$, 0, () => CustomTransformConfiguration$, () => GatewayInterceptorConfigurations, () => GatewayPolicyEngineConfiguration$, 0, () => WafConfiguration$], 4
|
|
4442
4808
|
];
|
|
4443
4809
|
export var UpdateGatewayResponse$ = [3, n0, _UGRp,
|
|
4444
4810
|
0,
|
|
4445
|
-
[_gA,
|
|
4811
|
+
[_gA, _gIa, _cA, _uA, _st, _n, _aT, _gU, _sR, _d, _rA, _pT, _pC, _aCu, _kKA, _cTC, _iCnt, _pEC, _wID, _eL, _wAA, _wC],
|
|
4446
4812
|
[0, 0, 5, 5, 0, 0, 0, 0, 64 | 0, [() => GatewayDescription, 0], 0, 0, [() => GatewayProtocolConfiguration$, 0], () => AuthorizerConfiguration$, 0, () => CustomTransformConfiguration$, () => GatewayInterceptorConfigurations, () => GatewayPolicyEngineConfiguration$, () => WorkloadIdentityDetails$, 0, 0, () => WafConfiguration$], 7
|
|
4447
4813
|
];
|
|
4448
4814
|
export var UpdateGatewayRuleRequest$ = [3, n0, _UGRR,
|
|
4449
4815
|
0,
|
|
4450
|
-
[
|
|
4816
|
+
[_gI, _rI, _pr, _cond, _a, _d],
|
|
4451
4817
|
[[0, 1], [0, 1], 1, () => Conditions, [() => Actions, 0], 0], 2
|
|
4452
4818
|
];
|
|
4453
4819
|
export var UpdateGatewayRuleResponse$ = [3, n0, _UGRRp,
|
|
@@ -4457,12 +4823,12 @@ export var UpdateGatewayRuleResponse$ = [3, n0, _UGRRp,
|
|
|
4457
4823
|
];
|
|
4458
4824
|
export var UpdateGatewayTargetRequest$ = [3, n0, _UGTR,
|
|
4459
4825
|
0,
|
|
4460
|
-
[
|
|
4826
|
+
[_gI, _tI, _tC, _n, _d, _cPCr, _mC, _pE],
|
|
4461
4827
|
[[0, 1], [0, 1], [() => TargetConfiguration$, 0], [() => TargetName, 0], [() => TargetDescription, 0], [() => CredentialProviderConfigurations, 0], () => MetadataConfiguration$, () => PrivateEndpoint$], 3
|
|
4462
4828
|
];
|
|
4463
4829
|
export var UpdateGatewayTargetResponse$ = [3, n0, _UGTRp,
|
|
4464
4830
|
0,
|
|
4465
|
-
[_gA, _tI, _cA, _uA, _st, _n, _tC,
|
|
4831
|
+
[_gA, _tI, _cA, _uA, _st, _n, _tC, _cPCr, _sR, _d, _lSAa, _mC, _pE, _pEMR, _aD, _pT],
|
|
4466
4832
|
[0, 0, 5, 5, 0, [() => TargetName, 0], [() => TargetConfiguration$, 0], [() => CredentialProviderConfigurations, 0], 64 | 0, [() => TargetDescription, 0], 5, () => MetadataConfiguration$, () => PrivateEndpoint$, () => PrivateEndpointManagedResources, () => AuthorizationData$, 0], 8
|
|
4467
4833
|
];
|
|
4468
4834
|
export var UpdateHarnessEndpointRequest$ = [3, n0, _UHER,
|
|
@@ -4507,7 +4873,7 @@ export var UpdateOauth2CredentialProviderResponse$ = [3, n0, _UOCPRp,
|
|
|
4507
4873
|
];
|
|
4508
4874
|
export var UpdateOnlineEvaluationConfigRequest$ = [3, n0, _UOECR,
|
|
4509
4875
|
0,
|
|
4510
|
-
[_oECI, _cT, _d, _rul, _dSC, _ev, _in,
|
|
4876
|
+
[_oECI, _cT, _d, _rul, _dSC, _ev, _in, _cCl, _eERA, _eS],
|
|
4511
4877
|
[[0, 1], [0, 4], [() => EvaluationConfigDescription, 0], () => Rule$, () => DataSourceConfig$, () => EvaluatorList, () => InsightList, () => ClusteringConfig$, 0, 0], 1
|
|
4512
4878
|
];
|
|
4513
4879
|
export var UpdateOnlineEvaluationConfigResponse$ = [3, n0, _UOECRp,
|
|
@@ -4517,12 +4883,12 @@ export var UpdateOnlineEvaluationConfigResponse$ = [3, n0, _UOECRp,
|
|
|
4517
4883
|
];
|
|
4518
4884
|
export var UpdatePaymentConnectorRequest$ = [3, n0, _UPCR,
|
|
4519
4885
|
0,
|
|
4520
|
-
[_pMI, _pCI, _d, _t,
|
|
4886
|
+
[_pMI, _pCI, _d, _t, _cPCr, _cT],
|
|
4521
4887
|
[[0, 1], [0, 1], 0, 0, () => CredentialsProviderConfigurations, [0, 4]], 2
|
|
4522
4888
|
];
|
|
4523
4889
|
export var UpdatePaymentConnectorResponse$ = [3, n0, _UPCRp,
|
|
4524
4890
|
0,
|
|
4525
|
-
[_pCI, _pMI, _n, _t,
|
|
4891
|
+
[_pCI, _pMI, _n, _t, _cPCr, _lUA, _st],
|
|
4526
4892
|
[0, 0, 0, 0, () => CredentialsProviderConfigurations, 5, 0], 7
|
|
4527
4893
|
];
|
|
4528
4894
|
export var UpdatePaymentCredentialProviderRequest$ = [3, n0, _UPCPR,
|
|
@@ -4660,6 +5026,11 @@ export var VpcConfig$ = [3, n0, _VC,
|
|
|
4660
5026
|
[_sG, _su, _rSSE],
|
|
4661
5027
|
[64 | 0, 64 | 0, 2], 2
|
|
4662
5028
|
];
|
|
5029
|
+
export var VpcConfiguration$ = [3, n0, _VCp,
|
|
5030
|
+
0,
|
|
5031
|
+
[_su, _sG],
|
|
5032
|
+
[64 | 0, 64 | 0], 2
|
|
5033
|
+
];
|
|
4663
5034
|
export var WafConfiguration$ = [3, n0, _WC,
|
|
4664
5035
|
0,
|
|
4665
5036
|
[_fM],
|
|
@@ -4698,6 +5069,9 @@ var AgentRuntimes = [1, n0, _ARg,
|
|
|
4698
5069
|
0, [() => AgentRuntime$,
|
|
4699
5070
|
0]
|
|
4700
5071
|
];
|
|
5072
|
+
var AgentRuntimeVersionSummaryList = [1, n0, _ARVSL,
|
|
5073
|
+
0, () => AgentRuntimeVersionSummary$
|
|
5074
|
+
];
|
|
4701
5075
|
var AllowedAudienceList = 64 | 0;
|
|
4702
5076
|
var AllowedClientsList = 64 | 0;
|
|
4703
5077
|
var AllowedQueryParameters = 64 | 0;
|
|
@@ -4715,6 +5089,9 @@ var ApiGatewayToolOverrides = [1, n0, _AGTOp,
|
|
|
4715
5089
|
var ApiKeyCredentialProviders = [1, n0, _AKCP,
|
|
4716
5090
|
0, () => ApiKeyCredentialProviderItem$
|
|
4717
5091
|
];
|
|
5092
|
+
var BatchPutLimitEntries = [1, n0, _BPLEa,
|
|
5093
|
+
0, () => BatchPutLimitEntry$
|
|
5094
|
+
];
|
|
4718
5095
|
var BrowserEnterprisePolicies = [1, n0, _BEPr,
|
|
4719
5096
|
0, () => BrowserEnterprisePolicy$
|
|
4720
5097
|
];
|
|
@@ -4726,6 +5103,9 @@ var BrowserSummaries = [1, n0, _BSr,
|
|
|
4726
5103
|
0, [() => BrowserSummary$,
|
|
4727
5104
|
0]
|
|
4728
5105
|
];
|
|
5106
|
+
var CapacityProviderList = [1, n0, _CPL,
|
|
5107
|
+
0, () => CapacityProviderSummary$
|
|
5108
|
+
];
|
|
4729
5109
|
var CategoricalScaleDefinitions = [1, n0, _CSDa,
|
|
4730
5110
|
0, () => CategoricalScaleDefinition$
|
|
4731
5111
|
];
|
|
@@ -4757,11 +5137,11 @@ var ConnectorParameterOverrides = [1, n0, _CPOo,
|
|
|
4757
5137
|
var ContentConfigurationList = [1, n0, _CCL,
|
|
4758
5138
|
0, () => ContentConfiguration$
|
|
4759
5139
|
];
|
|
4760
|
-
var CredentialProviderConfigurations = [1, n0,
|
|
5140
|
+
var CredentialProviderConfigurations = [1, n0, _CPCre,
|
|
4761
5141
|
0, [() => CredentialProviderConfiguration$,
|
|
4762
5142
|
0]
|
|
4763
5143
|
];
|
|
4764
|
-
var CredentialsProviderConfigurations = [1, n0,
|
|
5144
|
+
var CredentialsProviderConfigurations = [1, n0, _CPCred,
|
|
4765
5145
|
0, () => CredentialsProviderConfiguration$
|
|
4766
5146
|
];
|
|
4767
5147
|
var CustomClaimValidationsType = [1, n0, _CCVTu,
|
|
@@ -4780,8 +5160,12 @@ var DatasetVersionSummaryList = [1, n0, _DVSL,
|
|
|
4780
5160
|
var DeleteMemoryStrategiesList = [1, n0, _DMSL,
|
|
4781
5161
|
0, () => DeleteMemoryStrategyInput$
|
|
4782
5162
|
];
|
|
5163
|
+
var DimensionKeys = 64 | 0;
|
|
4783
5164
|
var EnabledConnectors = 64 | 0;
|
|
4784
5165
|
var EntryPoints = 64 | 0;
|
|
5166
|
+
var EphemeralBlockDeviceMappingList = [1, n0, _EBDML,
|
|
5167
|
+
0, () => EphemeralBlockDeviceMapping$
|
|
5168
|
+
];
|
|
4785
5169
|
var EvaluatorList = [1, n0, _EL,
|
|
4786
5170
|
0, () => EvaluatorReference$
|
|
4787
5171
|
];
|
|
@@ -4803,6 +5187,9 @@ var GatewayInterceptionPoints = 64 | 0;
|
|
|
4803
5187
|
var GatewayInterceptorConfigurations = [1, n0, _GICa,
|
|
4804
5188
|
0, () => GatewayInterceptorConfiguration$
|
|
4805
5189
|
];
|
|
5190
|
+
var GatewayRateLimits = [1, n0, _GRL,
|
|
5191
|
+
0, () => GatewayRateLimitDetail$
|
|
5192
|
+
];
|
|
4806
5193
|
var GatewayRules = [1, n0, _GR,
|
|
4807
5194
|
0, [() => GatewayRuleDetail$,
|
|
4808
5195
|
0]
|
|
@@ -4850,9 +5237,16 @@ var InferenceOperationConfigurations = [1, n0, _IOCn,
|
|
|
4850
5237
|
var InsightList = [1, n0, _IL,
|
|
4851
5238
|
0, () => Insight$
|
|
4852
5239
|
];
|
|
5240
|
+
var InstanceTypeList = 64 | 0;
|
|
4853
5241
|
var InterceptorPayloadExclusionSelectorList = [1, n0, _IPESL,
|
|
4854
5242
|
0, () => InterceptorPayloadExclusionSelector$
|
|
4855
5243
|
];
|
|
5244
|
+
var LicenseSpecificationList = [1, n0, _LSL,
|
|
5245
|
+
0, () => LicenseSpecification$
|
|
5246
|
+
];
|
|
5247
|
+
var LimitEntries = [1, n0, _LEi,
|
|
5248
|
+
0, () => LimitEntry$
|
|
5249
|
+
];
|
|
4856
5250
|
var LogGroupNamesList = 64 | 0;
|
|
4857
5251
|
var MatchPathPatterns = 64 | 0;
|
|
4858
5252
|
var MatchPrincipalEntries = [1, n0, _MPE,
|
|
@@ -4934,6 +5328,9 @@ var PrivateEndpointManagedResources = [1, n0, _PEMR,
|
|
|
4934
5328
|
var PrivateEndpointOverrides = [1, n0, _PEOr,
|
|
4935
5329
|
0, () => PrivateEndpointOverride$
|
|
4936
5330
|
];
|
|
5331
|
+
var RateConfigs = [1, n0, _RCa,
|
|
5332
|
+
0, () => RateConfig$
|
|
5333
|
+
];
|
|
4937
5334
|
var RegistryRecordCredentialProviderConfigurationList = [1, n0, _RRCPCL,
|
|
4938
5335
|
0, () => RegistryRecordCredentialProviderConfiguration$
|
|
4939
5336
|
];
|
|
@@ -4952,6 +5349,7 @@ var ResponseListType = 64 | 0;
|
|
|
4952
5349
|
var RestApiMethods = 64 | 0;
|
|
4953
5350
|
var ScopeList = 64 | 0;
|
|
4954
5351
|
var ScopesListType = 64 | 0;
|
|
5352
|
+
var SecurityGroupIdList = 64 | 0;
|
|
4955
5353
|
var SecurityGroupIds = 64 | 0;
|
|
4956
5354
|
var SecurityGroups = 64 | 0;
|
|
4957
5355
|
var ServiceNamesList = 64 | 0;
|
|
@@ -4959,6 +5357,7 @@ var StatusReasons = 64 | 0;
|
|
|
4959
5357
|
var StreamDeliveryResourcesList = [1, n0, _SDRL,
|
|
4960
5358
|
0, () => StreamDeliveryResource$
|
|
4961
5359
|
];
|
|
5360
|
+
var SubnetIdList = 64 | 0;
|
|
4962
5361
|
var SubnetIds = 64 | 0;
|
|
4963
5362
|
var Subnets = 64 | 0;
|
|
4964
5363
|
var TagKeyList = 64 | 0;
|
|
@@ -4991,6 +5390,9 @@ var TriggerConditionsList = [1, n0, _TCL,
|
|
|
4991
5390
|
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
4992
5391
|
0, () => ValidationExceptionField$
|
|
4993
5392
|
];
|
|
5393
|
+
var VolumeConfigurationList = [1, n0, _VCL,
|
|
5394
|
+
0, () => VolumeConfiguration$
|
|
5395
|
+
];
|
|
4994
5396
|
var WorkloadIdentityList = [1, n0, _WIL,
|
|
4995
5397
|
0, () => WorkloadIdentityType$
|
|
4996
5398
|
];
|
|
@@ -5009,12 +5411,14 @@ var ComponentConfigurationMap = [2, n0, _CCM,
|
|
|
5009
5411
|
0]
|
|
5010
5412
|
];
|
|
5011
5413
|
var CustomParameterMap = 128 | 0;
|
|
5414
|
+
var Dimensions = 128 | 0;
|
|
5012
5415
|
var EnvironmentVariablesMap = [2, n0, _EVM,
|
|
5013
5416
|
8, 0, 0
|
|
5014
5417
|
];
|
|
5015
5418
|
var HarnessAgentCoreMemoryRetrievalConfigs = [2, n0, _HACMRCa,
|
|
5016
5419
|
0, 0, () => HarnessAgentCoreMemoryRetrievalConfig$
|
|
5017
5420
|
];
|
|
5421
|
+
var HttpConnectorParameters = 128 | 0;
|
|
5018
5422
|
var HttpHeadersMap = [2, n0, _HHM,
|
|
5019
5423
|
8, 0, 0
|
|
5020
5424
|
];
|
|
@@ -5074,6 +5478,11 @@ export var CodeBasedEvaluatorConfig$ = [4, n0, _CBEC,
|
|
|
5074
5478
|
[_lCa],
|
|
5075
5479
|
[() => LambdaEvaluatorConfig$]
|
|
5076
5480
|
];
|
|
5481
|
+
export var ComputeConfiguration$ = [4, n0, _CComp,
|
|
5482
|
+
0,
|
|
5483
|
+
[_eCc],
|
|
5484
|
+
[() => Ec2Configuration$]
|
|
5485
|
+
];
|
|
5077
5486
|
export var Condition$ = [4, n0, _Con,
|
|
5078
5487
|
0,
|
|
5079
5488
|
[_mPa, _mPat],
|
|
@@ -5099,7 +5508,7 @@ export var CredentialProvider$ = [4, n0, _CPr,
|
|
|
5099
5508
|
[_oCP, _aKCP, _iCP],
|
|
5100
5509
|
[[() => OAuthCredentialProvider$, 0], () => GatewayApiKeyCredentialProvider$, () => IamCredentialProvider$]
|
|
5101
5510
|
];
|
|
5102
|
-
export var CredentialsProviderConfiguration$ = [4, n0,
|
|
5511
|
+
export var CredentialsProviderConfiguration$ = [4, n0, _CPCrede,
|
|
5103
5512
|
0,
|
|
5104
5513
|
[_cCDP, _sPt],
|
|
5105
5514
|
[() => PaymentCredentialProviderConfiguration$, () => PaymentCredentialProviderConfiguration$]
|
|
@@ -5176,8 +5585,8 @@ export var ExtractionConfiguration$ = [4, n0, _ECxt,
|
|
|
5176
5585
|
];
|
|
5177
5586
|
export var FilesystemConfiguration$ = [4, n0, _FCi,
|
|
5178
5587
|
0,
|
|
5179
|
-
[_sSe, _sFAP, _eAP],
|
|
5180
|
-
[() => SessionStorageConfiguration$, () => S3FilesAccessPointConfiguration$, () => EfsAccessPointConfiguration$]
|
|
5588
|
+
[_sSe, _sFAP, _eAP, _cPVa],
|
|
5589
|
+
[() => SessionStorageConfiguration$, () => S3FilesAccessPointConfiguration$, () => EfsAccessPointConfiguration$, () => CapacityProviderVolumeConfiguration$]
|
|
5181
5590
|
];
|
|
5182
5591
|
export var FilterValue$ = [4, n0, _FV,
|
|
5183
5592
|
0,
|
|
@@ -5211,7 +5620,7 @@ export var HarnessGatewayOutboundAuth$ = [4, n0, _HGOA,
|
|
|
5211
5620
|
];
|
|
5212
5621
|
export var HarnessMemoryConfiguration$ = [4, n0, _HMC,
|
|
5213
5622
|
0,
|
|
5214
|
-
[_aCMC, _mMC,
|
|
5623
|
+
[_aCMC, _mMC, _dis],
|
|
5215
5624
|
[() => HarnessAgentCoreMemoryConfiguration$, () => HarnessManagedMemoryConfiguration$, () => HarnessDisabledMemoryConfiguration$]
|
|
5216
5625
|
];
|
|
5217
5626
|
export var HarnessModelConfiguration$ = [4, n0, _HMCa,
|
|
@@ -5241,12 +5650,12 @@ export var HarnessTruncationStrategyConfiguration$ = [4, n0, _HTSC,
|
|
|
5241
5650
|
];
|
|
5242
5651
|
export var HttpTargetConfiguration$ = [4, n0, _HTCt,
|
|
5243
5652
|
0,
|
|
5244
|
-
[_aRg, _pas],
|
|
5245
|
-
[[() => RuntimeTargetConfiguration$, 0], [() => PassthroughTargetConfiguration$, 0]]
|
|
5653
|
+
[_aRg, _pas, _conne],
|
|
5654
|
+
[[() => RuntimeTargetConfiguration$, 0], [() => PassthroughTargetConfiguration$, 0], () => HttpConnectorTargetConfiguration$]
|
|
5246
5655
|
];
|
|
5247
5656
|
export var InferenceTargetConfiguration$ = [4, n0, _ITC,
|
|
5248
5657
|
0,
|
|
5249
|
-
[
|
|
5658
|
+
[_conne, _prov],
|
|
5250
5659
|
[() => InferenceConnectorTargetConfiguration$, () => InferenceProviderTargetConfiguration$]
|
|
5251
5660
|
];
|
|
5252
5661
|
export var InterceptorConfiguration$ = [4, n0, _ICnt,
|
|
@@ -5259,6 +5668,11 @@ export var InterceptorPayloadExclusionSelector$ = [4, n0, _IPES,
|
|
|
5259
5668
|
[_fie],
|
|
5260
5669
|
[0]
|
|
5261
5670
|
];
|
|
5671
|
+
export var LaunchTemplateSource$ = [4, n0, _LTS,
|
|
5672
|
+
0,
|
|
5673
|
+
[_lP],
|
|
5674
|
+
[() => LaunchParameters$]
|
|
5675
|
+
];
|
|
5262
5676
|
export var MatchPrincipalEntry$ = [4, n0, _MPEa,
|
|
5263
5677
|
0,
|
|
5264
5678
|
[_iPa],
|
|
@@ -5266,7 +5680,7 @@ export var MatchPrincipalEntry$ = [4, n0, _MPEa,
|
|
|
5266
5680
|
];
|
|
5267
5681
|
export var McpTargetConfiguration$ = [4, n0, _MTC,
|
|
5268
5682
|
0,
|
|
5269
|
-
[_oAS, _sMm, _lam, _mSc, _aG,
|
|
5683
|
+
[_oAS, _sMm, _lam, _mSc, _aG, _conne],
|
|
5270
5684
|
[[() => ApiSchemaConfiguration$, 0], [() => ApiSchemaConfiguration$, 0], [() => McpLambdaTargetConfiguration$, 0], [() => McpServerTargetConfiguration$, 0], () => ApiGatewayTargetConfiguration$, () => ConnectorTargetConfiguration$]
|
|
5271
5685
|
];
|
|
5272
5686
|
export var McpToolSchemaConfiguration$ = [4, n0, _MTSC,
|
|
@@ -5409,9 +5823,17 @@ export var Validation$ = [4, n0, _V,
|
|
|
5409
5823
|
[_sVtr, _sLV, _nV],
|
|
5410
5824
|
[() => StringValidation$, () => StringListValidation$, () => NumberValidation$]
|
|
5411
5825
|
];
|
|
5826
|
+
export var VolumeConfiguration$ = [4, n0, _VCo,
|
|
5827
|
+
0,
|
|
5828
|
+
[_eCb],
|
|
5829
|
+
[() => EbsVolumeConfiguration$]
|
|
5830
|
+
];
|
|
5412
5831
|
export var AddDatasetExamples$ = [9, n0, _ADEd,
|
|
5413
5832
|
{ [_ht]: ["POST", "/datasets/{datasetId}/examples/add", 202] }, () => AddDatasetExamplesRequest$, () => AddDatasetExamplesResponse$
|
|
5414
5833
|
];
|
|
5834
|
+
export var BatchPutGatewayRateLimits$ = [9, n0, _BPGRL,
|
|
5835
|
+
{ [_ht]: ["PUT", "/gateways/{gatewayIdentifier}/rate-limits/batch", 200] }, () => BatchPutGatewayRateLimitsRequest$, () => BatchPutGatewayRateLimitsResponse$
|
|
5836
|
+
];
|
|
5415
5837
|
export var CreateAgentRuntime$ = [9, n0, _CAR,
|
|
5416
5838
|
{ [_ht]: ["PUT", "/runtimes/", 202] }, () => CreateAgentRuntimeRequest$, () => CreateAgentRuntimeResponse$
|
|
5417
5839
|
];
|
|
@@ -5427,6 +5849,9 @@ export var CreateBrowser$ = [9, n0, _CB,
|
|
|
5427
5849
|
export var CreateBrowserProfile$ = [9, n0, _CBP,
|
|
5428
5850
|
{ [_ht]: ["PUT", "/browser-profiles", 200] }, () => CreateBrowserProfileRequest$, () => CreateBrowserProfileResponse$
|
|
5429
5851
|
];
|
|
5852
|
+
export var CreateCapacityProvider$ = [9, n0, _CCP,
|
|
5853
|
+
{ [_ht]: ["PUT", "/capacity-providers", 202] }, () => CreateCapacityProviderInput$, () => CreateCapacityProviderOutput$
|
|
5854
|
+
];
|
|
5430
5855
|
export var CreateCodeInterpreter$ = [9, n0, _CCIr,
|
|
5431
5856
|
{ [_ht]: ["PUT", "/code-interpreters", 202] }, () => CreateCodeInterpreterRequest$, () => CreateCodeInterpreterResponse$
|
|
5432
5857
|
];
|
|
@@ -5445,6 +5870,9 @@ export var CreateEvaluator$ = [9, n0, _CEr,
|
|
|
5445
5870
|
export var CreateGateway$ = [9, n0, _CG,
|
|
5446
5871
|
{ [_ht]: ["POST", "/gateways/", 202] }, () => CreateGatewayRequest$, () => CreateGatewayResponse$
|
|
5447
5872
|
];
|
|
5873
|
+
export var CreateGatewayRateLimit$ = [9, n0, _CGRL,
|
|
5874
|
+
{ [_ht]: ["POST", "/gateways/{gatewayIdentifier}/rate-limits", 201] }, () => CreateGatewayRateLimitRequest$, () => CreateGatewayRateLimitResponse$
|
|
5875
|
+
];
|
|
5448
5876
|
export var CreateGatewayRule$ = [9, n0, _CGRre,
|
|
5449
5877
|
{ [_ht]: ["POST", "/gateways/{gatewayIdentifier}/rules", 202] }, () => CreateGatewayRuleRequest$, () => CreateGatewayRuleResponse$
|
|
5450
5878
|
];
|
|
@@ -5505,6 +5933,9 @@ export var DeleteBrowser$ = [9, n0, _DB,
|
|
|
5505
5933
|
export var DeleteBrowserProfile$ = [9, n0, _DBP,
|
|
5506
5934
|
{ [_ht]: ["DELETE", "/browser-profiles/{profileId}", 200] }, () => DeleteBrowserProfileRequest$, () => DeleteBrowserProfileResponse$
|
|
5507
5935
|
];
|
|
5936
|
+
export var DeleteCapacityProvider$ = [9, n0, _DCP,
|
|
5937
|
+
{ [_ht]: ["DELETE", "/capacity-providers/{capacityProviderId}", 202] }, () => DeleteCapacityProviderInput$, () => DeleteCapacityProviderOutput$
|
|
5938
|
+
];
|
|
5508
5939
|
export var DeleteCodeInterpreter$ = [9, n0, _DCI,
|
|
5509
5940
|
{ [_ht]: ["DELETE", "/code-interpreters/{codeInterpreterId}", 202] }, () => DeleteCodeInterpreterRequest$, () => DeleteCodeInterpreterResponse$
|
|
5510
5941
|
];
|
|
@@ -5523,6 +5954,9 @@ export var DeleteEvaluator$ = [9, n0, _DE,
|
|
|
5523
5954
|
export var DeleteGateway$ = [9, n0, _DG,
|
|
5524
5955
|
{ [_ht]: ["DELETE", "/gateways/{gatewayIdentifier}/", 202] }, () => DeleteGatewayRequest$, () => DeleteGatewayResponse$
|
|
5525
5956
|
];
|
|
5957
|
+
export var DeleteGatewayRateLimit$ = [9, n0, _DGRL,
|
|
5958
|
+
{ [_ht]: ["DELETE", "/gateways/{gatewayIdentifier}/rate-limits/{rateLimitId}", 200] }, () => DeleteGatewayRateLimitRequest$, () => DeleteGatewayRateLimitResponse$
|
|
5959
|
+
];
|
|
5526
5960
|
export var DeleteGatewayRule$ = [9, n0, _DGRel,
|
|
5527
5961
|
{ [_ht]: ["DELETE", "/gateways/{gatewayIdentifier}/rules/{ruleId}", 202] }, () => DeleteGatewayRuleRequest$, () => DeleteGatewayRuleResponse$
|
|
5528
5962
|
];
|
|
@@ -5586,6 +6020,9 @@ export var GetBrowser$ = [9, n0, _GB,
|
|
|
5586
6020
|
export var GetBrowserProfile$ = [9, n0, _GBP,
|
|
5587
6021
|
{ [_ht]: ["GET", "/browser-profiles/{profileId}", 200] }, () => GetBrowserProfileRequest$, () => GetBrowserProfileResponse$
|
|
5588
6022
|
];
|
|
6023
|
+
export var GetCapacityProvider$ = [9, n0, _GCP,
|
|
6024
|
+
{ [_ht]: ["GET", "/capacity-providers/{capacityProviderId}", 200] }, () => GetCapacityProviderInput$, () => GetCapacityProviderOutput$
|
|
6025
|
+
];
|
|
5589
6026
|
export var GetCodeInterpreter$ = [9, n0, _GCI,
|
|
5590
6027
|
{ [_ht]: ["GET", "/code-interpreters/{codeInterpreterId}", 200] }, () => GetCodeInterpreterRequest$, () => GetCodeInterpreterResponse$
|
|
5591
6028
|
];
|
|
@@ -5604,6 +6041,9 @@ export var GetEvaluator$ = [9, n0, _GE,
|
|
|
5604
6041
|
export var GetGateway$ = [9, n0, _GG,
|
|
5605
6042
|
{ [_ht]: ["GET", "/gateways/{gatewayIdentifier}/", 200] }, () => GetGatewayRequest$, () => GetGatewayResponse$
|
|
5606
6043
|
];
|
|
6044
|
+
export var GetGatewayRateLimit$ = [9, n0, _GGRL,
|
|
6045
|
+
{ [_ht]: ["GET", "/gateways/{gatewayIdentifier}/rate-limits/{rateLimitId}", 200] }, () => GetGatewayRateLimitRequest$, () => GetGatewayRateLimitResponse$
|
|
6046
|
+
];
|
|
5607
6047
|
export var GetGatewayRule$ = [9, n0, _GGRet,
|
|
5608
6048
|
{ [_ht]: ["GET", "/gateways/{gatewayIdentifier}/rules/{ruleId}", 200] }, () => GetGatewayRuleRequest$, () => GetGatewayRuleResponse$
|
|
5609
6049
|
];
|
|
@@ -5676,6 +6116,9 @@ export var ListAgentRuntimes$ = [9, n0, _LAR,
|
|
|
5676
6116
|
export var ListAgentRuntimeVersions$ = [9, n0, _LARV,
|
|
5677
6117
|
{ [_ht]: ["POST", "/runtimes/{agentRuntimeId}/versions/", 200] }, () => ListAgentRuntimeVersionsRequest$, () => ListAgentRuntimeVersionsResponse$
|
|
5678
6118
|
];
|
|
6119
|
+
export var ListAgentRuntimeVersionsByCapacityProvider$ = [9, n0, _LARVBCP,
|
|
6120
|
+
{ [_ht]: ["POST", "/capacity-providers/{capacityProviderId}/runtime-versions", 200] }, () => ListAgentRuntimeVersionsByCapacityProviderInput$, () => ListAgentRuntimeVersionsByCapacityProviderOutput$
|
|
6121
|
+
];
|
|
5679
6122
|
export var ListApiKeyCredentialProviders$ = [9, n0, _LAKCP,
|
|
5680
6123
|
{ [_ht]: ["POST", "/identities/ListApiKeyCredentialProviders", 200] }, () => ListApiKeyCredentialProvidersRequest$, () => ListApiKeyCredentialProvidersResponse$
|
|
5681
6124
|
];
|
|
@@ -5685,6 +6128,9 @@ export var ListBrowserProfiles$ = [9, n0, _LBP,
|
|
|
5685
6128
|
export var ListBrowsers$ = [9, n0, _LB,
|
|
5686
6129
|
{ [_ht]: ["POST", "/browsers", 200] }, () => ListBrowsersRequest$, () => ListBrowsersResponse$
|
|
5687
6130
|
];
|
|
6131
|
+
export var ListCapacityProviders$ = [9, n0, _LCP,
|
|
6132
|
+
{ [_ht]: ["POST", "/capacity-providers", 200] }, () => ListCapacityProvidersInput$, () => ListCapacityProvidersOutput$
|
|
6133
|
+
];
|
|
5688
6134
|
export var ListCodeInterpreters$ = [9, n0, _LCI,
|
|
5689
6135
|
{ [_ht]: ["POST", "/code-interpreters", 200] }, () => ListCodeInterpretersRequest$, () => ListCodeInterpretersResponse$
|
|
5690
6136
|
];
|
|
@@ -5703,9 +6149,12 @@ export var ListDatasets$ = [9, n0, _LD,
|
|
|
5703
6149
|
export var ListDatasetVersions$ = [9, n0, _LDV,
|
|
5704
6150
|
{ [_ht]: ["GET", "/datasets/{datasetId}/versions", 200] }, () => ListDatasetVersionsRequest$, () => ListDatasetVersionsResponse$
|
|
5705
6151
|
];
|
|
5706
|
-
export var ListEvaluators$ = [9, n0,
|
|
6152
|
+
export var ListEvaluators$ = [9, n0, _LEis,
|
|
5707
6153
|
{ [_ht]: ["POST", "/evaluators", 200] }, () => ListEvaluatorsRequest$, () => ListEvaluatorsResponse$
|
|
5708
6154
|
];
|
|
6155
|
+
export var ListGatewayRateLimits$ = [9, n0, _LGRL,
|
|
6156
|
+
{ [_ht]: ["GET", "/gateways/{gatewayIdentifier}/rate-limits", 200] }, () => ListGatewayRateLimitsRequest$, () => ListGatewayRateLimitsResponse$
|
|
6157
|
+
];
|
|
5709
6158
|
export var ListGatewayRules$ = [9, n0, _LGRis,
|
|
5710
6159
|
{ [_ht]: ["GET", "/gateways/{gatewayIdentifier}/rules", 200] }, () => ListGatewayRulesRequest$, () => ListGatewayRulesResponse$
|
|
5711
6160
|
];
|
|
@@ -5742,7 +6191,7 @@ export var ListPaymentCredentialProviders$ = [9, n0, _LPCP,
|
|
|
5742
6191
|
export var ListPaymentManagers$ = [9, n0, _LPM,
|
|
5743
6192
|
{ [_ht]: ["POST", "/payments/managers-list", 200] }, () => ListPaymentManagersRequest$, () => ListPaymentManagersResponse$
|
|
5744
6193
|
];
|
|
5745
|
-
export var ListPolicies$ = [9, n0,
|
|
6194
|
+
export var ListPolicies$ = [9, n0, _LPi,
|
|
5746
6195
|
{ [_ht]: ["GET", "/policy-engines/{policyEngineId}/policies", 200] }, () => ListPoliciesRequest$, () => ListPoliciesResponse$
|
|
5747
6196
|
];
|
|
5748
6197
|
export var ListPolicyEngines$ = [9, n0, _LPE,
|
|
@@ -5805,6 +6254,9 @@ export var UpdateAgentRuntimeEndpoint$ = [9, n0, _UARE,
|
|
|
5805
6254
|
export var UpdateApiKeyCredentialProvider$ = [9, n0, _UAKCP,
|
|
5806
6255
|
{ [_ht]: ["POST", "/identities/UpdateApiKeyCredentialProvider", 200] }, () => UpdateApiKeyCredentialProviderRequest$, () => UpdateApiKeyCredentialProviderResponse$
|
|
5807
6256
|
];
|
|
6257
|
+
export var UpdateCapacityProvider$ = [9, n0, _UCP,
|
|
6258
|
+
{ [_ht]: ["PUT", "/capacity-providers/{capacityProviderId}", 202] }, () => UpdateCapacityProviderInput$, () => UpdateCapacityProviderOutput$
|
|
6259
|
+
];
|
|
5808
6260
|
export var UpdateConfigurationBundle$ = [9, n0, _UCB,
|
|
5809
6261
|
{ [_ht]: ["PUT", "/configuration-bundles/{bundleId}", 200] }, () => UpdateConfigurationBundleRequest$, () => UpdateConfigurationBundleResponse$
|
|
5810
6262
|
];
|
|
@@ -5820,6 +6272,9 @@ export var UpdateEvaluator$ = [9, n0, _UEp,
|
|
|
5820
6272
|
export var UpdateGateway$ = [9, n0, _UG,
|
|
5821
6273
|
{ [_ht]: ["PUT", "/gateways/{gatewayIdentifier}/", 202] }, () => UpdateGatewayRequest$, () => UpdateGatewayResponse$
|
|
5822
6274
|
];
|
|
6275
|
+
export var UpdateGatewayRateLimit$ = [9, n0, _UGRL,
|
|
6276
|
+
{ [_ht]: ["PATCH", "/gateways/{gatewayIdentifier}/rate-limits/{rateLimitId}", 200] }, () => UpdateGatewayRateLimitRequest$, () => UpdateGatewayRateLimitResponse$
|
|
6277
|
+
];
|
|
5823
6278
|
export var UpdateGatewayRule$ = [9, n0, _UGRpd,
|
|
5824
6279
|
{ [_ht]: ["PATCH", "/gateways/{gatewayIdentifier}/rules/{ruleId}", 202] }, () => UpdateGatewayRuleRequest$, () => UpdateGatewayRuleResponse$
|
|
5825
6280
|
];
|