@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
|
@@ -14,6 +14,7 @@ export declare var EncryptionFailure$: StaticErrorSchema;
|
|
|
14
14
|
export declare var InternalServerException$: StaticErrorSchema;
|
|
15
15
|
export declare var ResourceLimitExceededException$: StaticErrorSchema;
|
|
16
16
|
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
17
|
+
export declare var RetryableConflictException$: StaticErrorSchema;
|
|
17
18
|
export declare var ServiceException$: StaticErrorSchema;
|
|
18
19
|
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
19
20
|
export declare var ThrottledException$: StaticErrorSchema;
|
|
@@ -27,6 +28,7 @@ export declare var AddDatasetExamplesResponse$: StaticStructureSchema;
|
|
|
27
28
|
export declare var AgentCardDefinition$: StaticStructureSchema;
|
|
28
29
|
export declare var AgentRuntime$: StaticStructureSchema;
|
|
29
30
|
export declare var AgentRuntimeEndpoint$: StaticStructureSchema;
|
|
31
|
+
export declare var AgentRuntimeVersionSummary$: StaticStructureSchema;
|
|
30
32
|
export declare var AgentSkillsDescriptor$: StaticStructureSchema;
|
|
31
33
|
export declare var AllowedWorkloadConfiguration$: StaticStructureSchema;
|
|
32
34
|
export declare var ApiGatewayTargetConfiguration$: StaticStructureSchema;
|
|
@@ -38,6 +40,9 @@ export declare var ApprovalConfiguration$: StaticStructureSchema;
|
|
|
38
40
|
export declare var AtlassianOauth2ProviderConfigInput$: StaticStructureSchema;
|
|
39
41
|
export declare var AtlassianOauth2ProviderConfigOutput$: StaticStructureSchema;
|
|
40
42
|
export declare var AuthorizingClaimMatchValueType$: StaticStructureSchema;
|
|
43
|
+
export declare var BatchPutGatewayRateLimitsRequest$: StaticStructureSchema;
|
|
44
|
+
export declare var BatchPutGatewayRateLimitsResponse$: StaticStructureSchema;
|
|
45
|
+
export declare var BatchPutLimitEntry$: StaticStructureSchema;
|
|
41
46
|
export declare var BedrockEvaluatorModelConfig$: StaticStructureSchema;
|
|
42
47
|
export declare var BrowserEnterprisePolicy$: StaticStructureSchema;
|
|
43
48
|
export declare var BrowserNetworkConfiguration$: StaticStructureSchema;
|
|
@@ -45,6 +50,11 @@ export declare var BrowserProfileSummary$: StaticStructureSchema;
|
|
|
45
50
|
export declare var BrowserSigningConfigInput$: StaticStructureSchema;
|
|
46
51
|
export declare var BrowserSigningConfigOutput$: StaticStructureSchema;
|
|
47
52
|
export declare var BrowserSummary$: StaticStructureSchema;
|
|
53
|
+
export declare var CapacityProviderConfiguration$: StaticStructureSchema;
|
|
54
|
+
export declare var CapacityProviderSummary$: StaticStructureSchema;
|
|
55
|
+
export declare var CapacityProviderVolumeConfiguration$: StaticStructureSchema;
|
|
56
|
+
export declare var CapacityReservationSpecification$: StaticStructureSchema;
|
|
57
|
+
export declare var CapacityReservationTarget$: StaticStructureSchema;
|
|
48
58
|
export declare var CategoricalScaleDefinition$: StaticStructureSchema;
|
|
49
59
|
export declare var CedarPolicy$: StaticStructureSchema;
|
|
50
60
|
export declare var Certificate$: StaticStructureSchema;
|
|
@@ -76,6 +86,8 @@ export declare var CreateBrowserProfileRequest$: StaticStructureSchema;
|
|
|
76
86
|
export declare var CreateBrowserProfileResponse$: StaticStructureSchema;
|
|
77
87
|
export declare var CreateBrowserRequest$: StaticStructureSchema;
|
|
78
88
|
export declare var CreateBrowserResponse$: StaticStructureSchema;
|
|
89
|
+
export declare var CreateCapacityProviderInput$: StaticStructureSchema;
|
|
90
|
+
export declare var CreateCapacityProviderOutput$: StaticStructureSchema;
|
|
79
91
|
export declare var CreateCodeInterpreterRequest$: StaticStructureSchema;
|
|
80
92
|
export declare var CreateCodeInterpreterResponse$: StaticStructureSchema;
|
|
81
93
|
export declare var CreateConfigurationBundleRequest$: StaticStructureSchema;
|
|
@@ -86,6 +98,8 @@ export declare var CreateDatasetVersionRequest$: StaticStructureSchema;
|
|
|
86
98
|
export declare var CreateDatasetVersionResponse$: StaticStructureSchema;
|
|
87
99
|
export declare var CreateEvaluatorRequest$: StaticStructureSchema;
|
|
88
100
|
export declare var CreateEvaluatorResponse$: StaticStructureSchema;
|
|
101
|
+
export declare var CreateGatewayRateLimitRequest$: StaticStructureSchema;
|
|
102
|
+
export declare var CreateGatewayRateLimitResponse$: StaticStructureSchema;
|
|
89
103
|
export declare var CreateGatewayRequest$: StaticStructureSchema;
|
|
90
104
|
export declare var CreateGatewayResponse$: StaticStructureSchema;
|
|
91
105
|
export declare var CreateGatewayRuleRequest$: StaticStructureSchema;
|
|
@@ -138,6 +152,8 @@ export declare var DeleteBrowserProfileRequest$: StaticStructureSchema;
|
|
|
138
152
|
export declare var DeleteBrowserProfileResponse$: StaticStructureSchema;
|
|
139
153
|
export declare var DeleteBrowserRequest$: StaticStructureSchema;
|
|
140
154
|
export declare var DeleteBrowserResponse$: StaticStructureSchema;
|
|
155
|
+
export declare var DeleteCapacityProviderInput$: StaticStructureSchema;
|
|
156
|
+
export declare var DeleteCapacityProviderOutput$: StaticStructureSchema;
|
|
141
157
|
export declare var DeleteCodeInterpreterRequest$: StaticStructureSchema;
|
|
142
158
|
export declare var DeleteCodeInterpreterResponse$: StaticStructureSchema;
|
|
143
159
|
export declare var DeleteConfigurationBundleRequest$: StaticStructureSchema;
|
|
@@ -148,6 +164,8 @@ export declare var DeleteDatasetRequest$: StaticStructureSchema;
|
|
|
148
164
|
export declare var DeleteDatasetResponse$: StaticStructureSchema;
|
|
149
165
|
export declare var DeleteEvaluatorRequest$: StaticStructureSchema;
|
|
150
166
|
export declare var DeleteEvaluatorResponse$: StaticStructureSchema;
|
|
167
|
+
export declare var DeleteGatewayRateLimitRequest$: StaticStructureSchema;
|
|
168
|
+
export declare var DeleteGatewayRateLimitResponse$: StaticStructureSchema;
|
|
151
169
|
export declare var DeleteGatewayRequest$: StaticStructureSchema;
|
|
152
170
|
export declare var DeleteGatewayResponse$: StaticStructureSchema;
|
|
153
171
|
export declare var DeleteGatewayRuleRequest$: StaticStructureSchema;
|
|
@@ -184,8 +202,12 @@ export declare var DeleteResourcePolicyResponse$: StaticStructureSchema;
|
|
|
184
202
|
export declare var DeleteWorkloadIdentityRequest$: StaticStructureSchema;
|
|
185
203
|
export declare var DeleteWorkloadIdentityResponse$: StaticStructureSchema;
|
|
186
204
|
export declare var Descriptors$: StaticStructureSchema;
|
|
205
|
+
export declare var EbsVolumeConfiguration$: StaticStructureSchema;
|
|
206
|
+
export declare var Ec2Configuration$: StaticStructureSchema;
|
|
187
207
|
export declare var EfsAccessPointConfiguration$: StaticStructureSchema;
|
|
188
208
|
export declare var EfsConfiguration$: StaticStructureSchema;
|
|
209
|
+
export declare var EphemeralBlockDeviceMapping$: StaticStructureSchema;
|
|
210
|
+
export declare var EphemeralEBSVolumeConfiguration$: StaticStructureSchema;
|
|
189
211
|
export declare var EpisodicConsolidationOverride$: StaticStructureSchema;
|
|
190
212
|
export declare var EpisodicExtractionOverride$: StaticStructureSchema;
|
|
191
213
|
export declare var EpisodicMemoryStrategyInput$: StaticStructureSchema;
|
|
@@ -203,6 +225,7 @@ export declare var FromUrlSynchronizationConfiguration$: StaticStructureSchema;
|
|
|
203
225
|
export declare var GatewayApiKeyCredentialProvider$: StaticStructureSchema;
|
|
204
226
|
export declare var GatewayInterceptorConfiguration$: StaticStructureSchema;
|
|
205
227
|
export declare var GatewayPolicyEngineConfiguration$: StaticStructureSchema;
|
|
228
|
+
export declare var GatewayRateLimitDetail$: StaticStructureSchema;
|
|
206
229
|
export declare var GatewayRuleDetail$: StaticStructureSchema;
|
|
207
230
|
export declare var GatewaySummary$: StaticStructureSchema;
|
|
208
231
|
export declare var GatewayTarget$: StaticStructureSchema;
|
|
@@ -216,6 +239,8 @@ export declare var GetBrowserProfileRequest$: StaticStructureSchema;
|
|
|
216
239
|
export declare var GetBrowserProfileResponse$: StaticStructureSchema;
|
|
217
240
|
export declare var GetBrowserRequest$: StaticStructureSchema;
|
|
218
241
|
export declare var GetBrowserResponse$: StaticStructureSchema;
|
|
242
|
+
export declare var GetCapacityProviderInput$: StaticStructureSchema;
|
|
243
|
+
export declare var GetCapacityProviderOutput$: StaticStructureSchema;
|
|
219
244
|
export declare var GetCodeInterpreterRequest$: StaticStructureSchema;
|
|
220
245
|
export declare var GetCodeInterpreterResponse$: StaticStructureSchema;
|
|
221
246
|
export declare var GetConfigurationBundleRequest$: StaticStructureSchema;
|
|
@@ -226,6 +251,8 @@ export declare var GetDatasetRequest$: StaticStructureSchema;
|
|
|
226
251
|
export declare var GetDatasetResponse$: StaticStructureSchema;
|
|
227
252
|
export declare var GetEvaluatorRequest$: StaticStructureSchema;
|
|
228
253
|
export declare var GetEvaluatorResponse$: StaticStructureSchema;
|
|
254
|
+
export declare var GetGatewayRateLimitRequest$: StaticStructureSchema;
|
|
255
|
+
export declare var GetGatewayRateLimitResponse$: StaticStructureSchema;
|
|
229
256
|
export declare var GetGatewayRequest$: StaticStructureSchema;
|
|
230
257
|
export declare var GetGatewayResponse$: StaticStructureSchema;
|
|
231
258
|
export declare var GetGatewayRuleRequest$: StaticStructureSchema;
|
|
@@ -303,6 +330,8 @@ export declare var HarnessTruncationConfiguration$: StaticStructureSchema;
|
|
|
303
330
|
export declare var HarnessVersionSummary$: StaticStructureSchema;
|
|
304
331
|
export declare var HostingEnvironment$: StaticStructureSchema;
|
|
305
332
|
export declare var HttpApiSchemaConfiguration$: StaticStructureSchema;
|
|
333
|
+
export declare var HttpConnectorSource$: StaticStructureSchema;
|
|
334
|
+
export declare var HttpConnectorTargetConfiguration$: StaticStructureSchema;
|
|
306
335
|
export declare var IamCredentialProvider$: StaticStructureSchema;
|
|
307
336
|
export declare var IamPrincipal$: StaticStructureSchema;
|
|
308
337
|
export declare var IncludedOauth2ProviderConfigInput$: StaticStructureSchema;
|
|
@@ -315,6 +344,8 @@ export declare var InferenceOperationConfiguration$: StaticStructureSchema;
|
|
|
315
344
|
export declare var InferenceProviderTargetConfiguration$: StaticStructureSchema;
|
|
316
345
|
export declare var InlineExamplesSource$: StaticStructureSchema;
|
|
317
346
|
export declare var Insight$: StaticStructureSchema;
|
|
347
|
+
export declare var InstanceLifecycleConfiguration$: StaticStructureSchema;
|
|
348
|
+
export declare var InstanceRequirements$: StaticStructureSchema;
|
|
318
349
|
export declare var InterceptorInputConfiguration$: StaticStructureSchema;
|
|
319
350
|
export declare var InterceptorPayloadFilter$: StaticStructureSchema;
|
|
320
351
|
export declare var InvocationConfiguration$: StaticStructureSchema;
|
|
@@ -325,13 +356,18 @@ export declare var KmsKeySourceType$: StaticStructureSchema;
|
|
|
325
356
|
export declare var LambdaEvaluatorConfig$: StaticStructureSchema;
|
|
326
357
|
export declare var LambdaInterceptorConfiguration$: StaticStructureSchema;
|
|
327
358
|
export declare var LambdaTransformConfiguration$: StaticStructureSchema;
|
|
359
|
+
export declare var LaunchParameters$: StaticStructureSchema;
|
|
360
|
+
export declare var LicenseSpecification$: StaticStructureSchema;
|
|
328
361
|
export declare var LifecycleConfiguration$: StaticStructureSchema;
|
|
362
|
+
export declare var LimitEntry$: StaticStructureSchema;
|
|
329
363
|
export declare var LinkedinOauth2ProviderConfigInput$: StaticStructureSchema;
|
|
330
364
|
export declare var LinkedinOauth2ProviderConfigOutput$: StaticStructureSchema;
|
|
331
365
|
export declare var ListAgentRuntimeEndpointsRequest$: StaticStructureSchema;
|
|
332
366
|
export declare var ListAgentRuntimeEndpointsResponse$: StaticStructureSchema;
|
|
333
367
|
export declare var ListAgentRuntimesRequest$: StaticStructureSchema;
|
|
334
368
|
export declare var ListAgentRuntimesResponse$: StaticStructureSchema;
|
|
369
|
+
export declare var ListAgentRuntimeVersionsByCapacityProviderInput$: StaticStructureSchema;
|
|
370
|
+
export declare var ListAgentRuntimeVersionsByCapacityProviderOutput$: StaticStructureSchema;
|
|
335
371
|
export declare var ListAgentRuntimeVersionsRequest$: StaticStructureSchema;
|
|
336
372
|
export declare var ListAgentRuntimeVersionsResponse$: StaticStructureSchema;
|
|
337
373
|
export declare var ListApiKeyCredentialProvidersRequest$: StaticStructureSchema;
|
|
@@ -340,6 +376,8 @@ export declare var ListBrowserProfilesRequest$: StaticStructureSchema;
|
|
|
340
376
|
export declare var ListBrowserProfilesResponse$: StaticStructureSchema;
|
|
341
377
|
export declare var ListBrowsersRequest$: StaticStructureSchema;
|
|
342
378
|
export declare var ListBrowsersResponse$: StaticStructureSchema;
|
|
379
|
+
export declare var ListCapacityProvidersInput$: StaticStructureSchema;
|
|
380
|
+
export declare var ListCapacityProvidersOutput$: StaticStructureSchema;
|
|
343
381
|
export declare var ListCodeInterpretersRequest$: StaticStructureSchema;
|
|
344
382
|
export declare var ListCodeInterpretersResponse$: StaticStructureSchema;
|
|
345
383
|
export declare var ListConfigurationBundlesRequest$: StaticStructureSchema;
|
|
@@ -354,6 +392,8 @@ export declare var ListDatasetVersionsRequest$: StaticStructureSchema;
|
|
|
354
392
|
export declare var ListDatasetVersionsResponse$: StaticStructureSchema;
|
|
355
393
|
export declare var ListEvaluatorsRequest$: StaticStructureSchema;
|
|
356
394
|
export declare var ListEvaluatorsResponse$: StaticStructureSchema;
|
|
395
|
+
export declare var ListGatewayRateLimitsRequest$: StaticStructureSchema;
|
|
396
|
+
export declare var ListGatewayRateLimitsResponse$: StaticStructureSchema;
|
|
357
397
|
export declare var ListGatewayRulesRequest$: StaticStructureSchema;
|
|
358
398
|
export declare var ListGatewayRulesResponse$: StaticStructureSchema;
|
|
359
399
|
export declare var ListGatewaysRequest$: StaticStructureSchema;
|
|
@@ -443,6 +483,7 @@ export declare var PaymentConnectorSummary$: StaticStructureSchema;
|
|
|
443
483
|
export declare var PaymentCredentialProviderConfiguration$: StaticStructureSchema;
|
|
444
484
|
export declare var PaymentCredentialProviderItem$: StaticStructureSchema;
|
|
445
485
|
export declare var PaymentManagerSummary$: StaticStructureSchema;
|
|
486
|
+
export declare var PermissionsConfiguration$: StaticStructureSchema;
|
|
446
487
|
export declare var Policy$: StaticStructureSchema;
|
|
447
488
|
export declare var PolicyEngine$: StaticStructureSchema;
|
|
448
489
|
export declare var PolicyEngineSummary$: StaticStructureSchema;
|
|
@@ -458,6 +499,7 @@ export declare var ProtocolConfiguration$: StaticStructureSchema;
|
|
|
458
499
|
export declare var ProviderPrefix$: StaticStructureSchema;
|
|
459
500
|
export declare var PutResourcePolicyRequest$: StaticStructureSchema;
|
|
460
501
|
export declare var PutResourcePolicyResponse$: StaticStructureSchema;
|
|
502
|
+
export declare var RateConfig$: StaticStructureSchema;
|
|
461
503
|
export declare var ReasoningConfiguration$: StaticStructureSchema;
|
|
462
504
|
export declare var RecordingConfig$: StaticStructureSchema;
|
|
463
505
|
export declare var RegistryRecordCredentialProviderConfiguration$: StaticStructureSchema;
|
|
@@ -465,6 +507,7 @@ export declare var RegistryRecordIamCredentialProvider$: StaticStructureSchema;
|
|
|
465
507
|
export declare var RegistryRecordOAuthCredentialProvider$: StaticStructureSchema;
|
|
466
508
|
export declare var RegistryRecordSummary$: StaticStructureSchema;
|
|
467
509
|
export declare var RegistrySummary$: StaticStructureSchema;
|
|
510
|
+
export declare var RootVolumeConfiguration$: StaticStructureSchema;
|
|
468
511
|
export declare var Rule$: StaticStructureSchema;
|
|
469
512
|
export declare var RuntimeMetadataConfiguration$: StaticStructureSchema;
|
|
470
513
|
export declare var RuntimeTargetConfiguration$: StaticStructureSchema;
|
|
@@ -540,6 +583,8 @@ export declare var UpdateAgentRuntimeRequest$: StaticStructureSchema;
|
|
|
540
583
|
export declare var UpdateAgentRuntimeResponse$: StaticStructureSchema;
|
|
541
584
|
export declare var UpdateApiKeyCredentialProviderRequest$: StaticStructureSchema;
|
|
542
585
|
export declare var UpdateApiKeyCredentialProviderResponse$: StaticStructureSchema;
|
|
586
|
+
export declare var UpdateCapacityProviderInput$: StaticStructureSchema;
|
|
587
|
+
export declare var UpdateCapacityProviderOutput$: StaticStructureSchema;
|
|
543
588
|
export declare var UpdateConfigurationBundleRequest$: StaticStructureSchema;
|
|
544
589
|
export declare var UpdateConfigurationBundleResponse$: StaticStructureSchema;
|
|
545
590
|
export declare var UpdatedA2aDescriptor$: StaticStructureSchema;
|
|
@@ -567,6 +612,8 @@ export declare var UpdatedSynchronizationType$: StaticStructureSchema;
|
|
|
567
612
|
export declare var UpdatedToolsDefinition$: StaticStructureSchema;
|
|
568
613
|
export declare var UpdateEvaluatorRequest$: StaticStructureSchema;
|
|
569
614
|
export declare var UpdateEvaluatorResponse$: StaticStructureSchema;
|
|
615
|
+
export declare var UpdateGatewayRateLimitRequest$: StaticStructureSchema;
|
|
616
|
+
export declare var UpdateGatewayRateLimitResponse$: StaticStructureSchema;
|
|
570
617
|
export declare var UpdateGatewayRequest$: StaticStructureSchema;
|
|
571
618
|
export declare var UpdateGatewayResponse$: StaticStructureSchema;
|
|
572
619
|
export declare var UpdateGatewayRuleRequest$: StaticStructureSchema;
|
|
@@ -612,6 +659,7 @@ export declare var VersionCreatedBySource$: StaticStructureSchema;
|
|
|
612
659
|
export declare var VersionFilter$: StaticStructureSchema;
|
|
613
660
|
export declare var VersionLineageMetadata$: StaticStructureSchema;
|
|
614
661
|
export declare var VpcConfig$: StaticStructureSchema;
|
|
662
|
+
export declare var VpcConfiguration$: StaticStructureSchema;
|
|
615
663
|
export declare var WafConfiguration$: StaticStructureSchema;
|
|
616
664
|
export declare var WeightedOverride$: StaticStructureSchema;
|
|
617
665
|
export declare var WeightedRoute$: StaticStructureSchema;
|
|
@@ -626,6 +674,7 @@ export declare var CertificateLocation$: StaticUnionSchema;
|
|
|
626
674
|
export declare var ClaimMatchValueType$: StaticUnionSchema;
|
|
627
675
|
export declare var Code$: StaticUnionSchema;
|
|
628
676
|
export declare var CodeBasedEvaluatorConfig$: StaticUnionSchema;
|
|
677
|
+
export declare var ComputeConfiguration$: StaticUnionSchema;
|
|
629
678
|
export declare var Condition$: StaticUnionSchema;
|
|
630
679
|
export declare var ConfigurationBundleAction$: StaticUnionSchema;
|
|
631
680
|
export declare var ConsolidationConfiguration$: StaticUnionSchema;
|
|
@@ -663,6 +712,7 @@ export declare var HttpTargetConfiguration$: StaticUnionSchema;
|
|
|
663
712
|
export declare var InferenceTargetConfiguration$: StaticUnionSchema;
|
|
664
713
|
export declare var InterceptorConfiguration$: StaticUnionSchema;
|
|
665
714
|
export declare var InterceptorPayloadExclusionSelector$: StaticUnionSchema;
|
|
715
|
+
export declare var LaunchTemplateSource$: StaticUnionSchema;
|
|
666
716
|
export declare var MatchPrincipalEntry$: StaticUnionSchema;
|
|
667
717
|
export declare var McpTargetConfiguration$: StaticUnionSchema;
|
|
668
718
|
export declare var McpToolSchemaConfiguration$: StaticUnionSchema;
|
|
@@ -693,18 +743,22 @@ export declare var ToolsFileSystemConfiguration$: StaticUnionSchema;
|
|
|
693
743
|
export declare var TriggerCondition$: StaticUnionSchema;
|
|
694
744
|
export declare var TriggerConditionInput$: StaticUnionSchema;
|
|
695
745
|
export declare var Validation$: StaticUnionSchema;
|
|
746
|
+
export declare var VolumeConfiguration$: StaticUnionSchema;
|
|
696
747
|
export declare var AddDatasetExamples$: StaticOperationSchema;
|
|
748
|
+
export declare var BatchPutGatewayRateLimits$: StaticOperationSchema;
|
|
697
749
|
export declare var CreateAgentRuntime$: StaticOperationSchema;
|
|
698
750
|
export declare var CreateAgentRuntimeEndpoint$: StaticOperationSchema;
|
|
699
751
|
export declare var CreateApiKeyCredentialProvider$: StaticOperationSchema;
|
|
700
752
|
export declare var CreateBrowser$: StaticOperationSchema;
|
|
701
753
|
export declare var CreateBrowserProfile$: StaticOperationSchema;
|
|
754
|
+
export declare var CreateCapacityProvider$: StaticOperationSchema;
|
|
702
755
|
export declare var CreateCodeInterpreter$: StaticOperationSchema;
|
|
703
756
|
export declare var CreateConfigurationBundle$: StaticOperationSchema;
|
|
704
757
|
export declare var CreateDataset$: StaticOperationSchema;
|
|
705
758
|
export declare var CreateDatasetVersion$: StaticOperationSchema;
|
|
706
759
|
export declare var CreateEvaluator$: StaticOperationSchema;
|
|
707
760
|
export declare var CreateGateway$: StaticOperationSchema;
|
|
761
|
+
export declare var CreateGatewayRateLimit$: StaticOperationSchema;
|
|
708
762
|
export declare var CreateGatewayRule$: StaticOperationSchema;
|
|
709
763
|
export declare var CreateGatewayTarget$: StaticOperationSchema;
|
|
710
764
|
export declare var CreateHarness$: StaticOperationSchema;
|
|
@@ -725,12 +779,14 @@ export declare var DeleteAgentRuntimeEndpoint$: StaticOperationSchema;
|
|
|
725
779
|
export declare var DeleteApiKeyCredentialProvider$: StaticOperationSchema;
|
|
726
780
|
export declare var DeleteBrowser$: StaticOperationSchema;
|
|
727
781
|
export declare var DeleteBrowserProfile$: StaticOperationSchema;
|
|
782
|
+
export declare var DeleteCapacityProvider$: StaticOperationSchema;
|
|
728
783
|
export declare var DeleteCodeInterpreter$: StaticOperationSchema;
|
|
729
784
|
export declare var DeleteConfigurationBundle$: StaticOperationSchema;
|
|
730
785
|
export declare var DeleteDataset$: StaticOperationSchema;
|
|
731
786
|
export declare var DeleteDatasetExamples$: StaticOperationSchema;
|
|
732
787
|
export declare var DeleteEvaluator$: StaticOperationSchema;
|
|
733
788
|
export declare var DeleteGateway$: StaticOperationSchema;
|
|
789
|
+
export declare var DeleteGatewayRateLimit$: StaticOperationSchema;
|
|
734
790
|
export declare var DeleteGatewayRule$: StaticOperationSchema;
|
|
735
791
|
export declare var DeleteGatewayTarget$: StaticOperationSchema;
|
|
736
792
|
export declare var DeleteHarness$: StaticOperationSchema;
|
|
@@ -752,12 +808,14 @@ export declare var GetAgentRuntimeEndpoint$: StaticOperationSchema;
|
|
|
752
808
|
export declare var GetApiKeyCredentialProvider$: StaticOperationSchema;
|
|
753
809
|
export declare var GetBrowser$: StaticOperationSchema;
|
|
754
810
|
export declare var GetBrowserProfile$: StaticOperationSchema;
|
|
811
|
+
export declare var GetCapacityProvider$: StaticOperationSchema;
|
|
755
812
|
export declare var GetCodeInterpreter$: StaticOperationSchema;
|
|
756
813
|
export declare var GetConfigurationBundle$: StaticOperationSchema;
|
|
757
814
|
export declare var GetConfigurationBundleVersion$: StaticOperationSchema;
|
|
758
815
|
export declare var GetDataset$: StaticOperationSchema;
|
|
759
816
|
export declare var GetEvaluator$: StaticOperationSchema;
|
|
760
817
|
export declare var GetGateway$: StaticOperationSchema;
|
|
818
|
+
export declare var GetGatewayRateLimit$: StaticOperationSchema;
|
|
761
819
|
export declare var GetGatewayRule$: StaticOperationSchema;
|
|
762
820
|
export declare var GetGatewayTarget$: StaticOperationSchema;
|
|
763
821
|
export declare var GetHarness$: StaticOperationSchema;
|
|
@@ -782,9 +840,11 @@ export declare var GetWorkloadIdentity$: StaticOperationSchema;
|
|
|
782
840
|
export declare var ListAgentRuntimeEndpoints$: StaticOperationSchema;
|
|
783
841
|
export declare var ListAgentRuntimes$: StaticOperationSchema;
|
|
784
842
|
export declare var ListAgentRuntimeVersions$: StaticOperationSchema;
|
|
843
|
+
export declare var ListAgentRuntimeVersionsByCapacityProvider$: StaticOperationSchema;
|
|
785
844
|
export declare var ListApiKeyCredentialProviders$: StaticOperationSchema;
|
|
786
845
|
export declare var ListBrowserProfiles$: StaticOperationSchema;
|
|
787
846
|
export declare var ListBrowsers$: StaticOperationSchema;
|
|
847
|
+
export declare var ListCapacityProviders$: StaticOperationSchema;
|
|
788
848
|
export declare var ListCodeInterpreters$: StaticOperationSchema;
|
|
789
849
|
export declare var ListConfigurationBundles$: StaticOperationSchema;
|
|
790
850
|
export declare var ListConfigurationBundleVersions$: StaticOperationSchema;
|
|
@@ -792,6 +852,7 @@ export declare var ListDatasetExamples$: StaticOperationSchema;
|
|
|
792
852
|
export declare var ListDatasets$: StaticOperationSchema;
|
|
793
853
|
export declare var ListDatasetVersions$: StaticOperationSchema;
|
|
794
854
|
export declare var ListEvaluators$: StaticOperationSchema;
|
|
855
|
+
export declare var ListGatewayRateLimits$: StaticOperationSchema;
|
|
795
856
|
export declare var ListGatewayRules$: StaticOperationSchema;
|
|
796
857
|
export declare var ListGateways$: StaticOperationSchema;
|
|
797
858
|
export declare var ListGatewayTargets$: StaticOperationSchema;
|
|
@@ -825,11 +886,13 @@ export declare var UntagResource$: StaticOperationSchema;
|
|
|
825
886
|
export declare var UpdateAgentRuntime$: StaticOperationSchema;
|
|
826
887
|
export declare var UpdateAgentRuntimeEndpoint$: StaticOperationSchema;
|
|
827
888
|
export declare var UpdateApiKeyCredentialProvider$: StaticOperationSchema;
|
|
889
|
+
export declare var UpdateCapacityProvider$: StaticOperationSchema;
|
|
828
890
|
export declare var UpdateConfigurationBundle$: StaticOperationSchema;
|
|
829
891
|
export declare var UpdateDataset$: StaticOperationSchema;
|
|
830
892
|
export declare var UpdateDatasetExamples$: StaticOperationSchema;
|
|
831
893
|
export declare var UpdateEvaluator$: StaticOperationSchema;
|
|
832
894
|
export declare var UpdateGateway$: StaticOperationSchema;
|
|
895
|
+
export declare var UpdateGatewayRateLimit$: StaticOperationSchema;
|
|
833
896
|
export declare var UpdateGatewayRule$: StaticOperationSchema;
|
|
834
897
|
export declare var UpdateGatewayTarget$: StaticOperationSchema;
|
|
835
898
|
export declare var UpdateHarness$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-bedrock-agentcore-control",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1105.0",
|
|
4
4
|
"description": "AWS SDK for JavaScript Bedrock Agentcore Control Client for Node.js, Browser and React Native",
|
|
5
5
|
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-bedrock-agentcore-control",
|
|
6
6
|
"license": "Apache-2.0",
|