@aws-sdk/client-bedrock-agentcore-control 3.1037.0 → 3.1039.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 +217 -2
- package/dist-cjs/schemas/schemas_0.js +529 -98
- package/dist-es/BedrockAgentCoreControl.js +30 -0
- package/dist-es/commands/CreateConfigurationBundleCommand.js +16 -0
- package/dist-es/commands/CreateGatewayRuleCommand.js +16 -0
- package/dist-es/commands/DeleteConfigurationBundleCommand.js +16 -0
- package/dist-es/commands/DeleteGatewayRuleCommand.js +16 -0
- package/dist-es/commands/GetConfigurationBundleCommand.js +16 -0
- package/dist-es/commands/GetConfigurationBundleVersionCommand.js +16 -0
- package/dist-es/commands/GetGatewayRuleCommand.js +16 -0
- package/dist-es/commands/ListConfigurationBundleVersionsCommand.js +16 -0
- package/dist-es/commands/ListConfigurationBundlesCommand.js +16 -0
- package/dist-es/commands/ListGatewayRulesCommand.js +16 -0
- package/dist-es/commands/UpdateConfigurationBundleCommand.js +16 -0
- package/dist-es/commands/UpdateGatewayRuleCommand.js +16 -0
- package/dist-es/commands/index.js +12 -0
- package/dist-es/models/enums.js +30 -0
- package/dist-es/pagination/ListConfigurationBundleVersionsPaginator.js +4 -0
- package/dist-es/pagination/ListConfigurationBundlesPaginator.js +4 -0
- package/dist-es/pagination/ListGatewayRulesPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +516 -86
- package/dist-es/waiters/waitForMemoryCreated.js +1 -1
- package/dist-es/waiters/waitForPolicyActive.js +1 -1
- package/dist-es/waiters/waitForPolicyDeleted.js +2 -2
- package/dist-es/waiters/waitForPolicyEngineActive.js +1 -1
- package/dist-es/waiters/waitForPolicyEngineDeleted.js +2 -2
- package/dist-types/BedrockAgentCoreControl.d.ts +113 -6
- package/dist-types/BedrockAgentCoreControlClient.d.ts +14 -2
- package/dist-types/commands/CreateConfigurationBundleCommand.d.ts +111 -0
- package/dist-types/commands/CreateEvaluatorCommand.d.ts +1 -0
- package/dist-types/commands/CreateGatewayCommand.d.ts +4 -4
- package/dist-types/commands/CreateGatewayRuleCommand.d.ts +232 -0
- package/dist-types/commands/CreateGatewayTargetCommand.d.ts +17 -4
- package/dist-types/commands/CreateMemoryCommand.d.ts +2 -1
- package/dist-types/commands/DeleteConfigurationBundleCommand.d.ts +93 -0
- package/dist-types/commands/DeleteGatewayRuleCommand.d.ts +94 -0
- package/dist-types/commands/DeleteMemoryCommand.d.ts +1 -1
- package/dist-types/commands/GetConfigurationBundleCommand.d.ts +112 -0
- package/dist-types/commands/GetConfigurationBundleVersionCommand.d.ts +112 -0
- package/dist-types/commands/GetEvaluatorCommand.d.ts +2 -0
- package/dist-types/commands/GetGatewayCommand.d.ts +2 -2
- package/dist-types/commands/GetGatewayRuleCommand.d.ts +162 -0
- package/dist-types/commands/GetGatewayTargetCommand.d.ts +9 -2
- package/dist-types/commands/GetMemoryCommand.d.ts +1 -1
- package/dist-types/commands/ListConfigurationBundleVersionsCommand.d.ts +115 -0
- package/dist-types/commands/ListConfigurationBundlesCommand.d.ts +95 -0
- package/dist-types/commands/ListEvaluatorsCommand.d.ts +1 -0
- package/dist-types/commands/ListGatewayRulesCommand.d.ts +168 -0
- package/dist-types/commands/ListGatewaysCommand.d.ts +2 -2
- package/dist-types/commands/ListMemoriesCommand.d.ts +1 -1
- package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +9 -2
- package/dist-types/commands/UpdateConfigurationBundleCommand.d.ts +112 -0
- package/dist-types/commands/UpdateEvaluatorCommand.d.ts +1 -0
- package/dist-types/commands/UpdateGatewayCommand.d.ts +4 -4
- package/dist-types/commands/UpdateGatewayRuleCommand.d.ts +230 -0
- package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +17 -4
- package/dist-types/commands/UpdateMemoryCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +12 -0
- package/dist-types/models/enums.d.ts +70 -0
- package/dist-types/models/models_0.d.ts +2866 -2901
- package/dist-types/models/models_1.d.ts +1406 -4
- package/dist-types/pagination/ListConfigurationBundleVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListConfigurationBundlesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListGatewayRulesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/schemas/schemas_0.d.ts +61 -0
- package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +233 -6
- package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +72 -0
- package/dist-types/ts3.4/commands/CreateConfigurationBundleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateGatewayRuleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateMemoryCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/DeleteConfigurationBundleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteGatewayRuleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteMemoryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetConfigurationBundleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetConfigurationBundleVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetGatewayRuleCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetMemoryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListConfigurationBundleVersionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListConfigurationBundlesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListGatewayRulesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListMemoriesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateConfigurationBundleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateGatewayRuleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateMemoryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +12 -0
- package/dist-types/ts3.4/models/enums.d.ts +39 -0
- package/dist-types/ts3.4/models/models_0.d.ts +405 -571
- package/dist-types/ts3.4/models/models_1.d.ts +592 -7
- package/dist-types/ts3.4/pagination/ListConfigurationBundleVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListConfigurationBundlesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListGatewayRulesPaginator.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 +61 -0
- package/dist-types/ts3.4/waiters/waitForMemoryCreated.d.ts +9 -3
- package/dist-types/ts3.4/waiters/waitForPolicyActive.d.ts +9 -3
- package/dist-types/ts3.4/waiters/waitForPolicyDeleted.d.ts +10 -3
- package/dist-types/ts3.4/waiters/waitForPolicyEngineActive.d.ts +11 -3
- package/dist-types/ts3.4/waiters/waitForPolicyEngineDeleted.d.ts +12 -3
- package/dist-types/ts3.4/waiters/waitForPolicyGenerationCompleted.d.ts +11 -3
- package/dist-types/waiters/waitForMemoryCreated.d.ts +4 -3
- package/dist-types/waiters/waitForPolicyActive.d.ts +4 -3
- package/dist-types/waiters/waitForPolicyDeleted.d.ts +5 -3
- package/dist-types/waiters/waitForPolicyEngineActive.d.ts +4 -3
- package/dist-types/waiters/waitForPolicyEngineDeleted.d.ts +5 -3
- package/dist-types/waiters/waitForPolicyGenerationCompleted.d.ts +4 -3
- package/package.json +8 -8
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListGatewayRulesCommandInput,
|
|
4
|
+
ListGatewayRulesCommandOutput,
|
|
5
|
+
} from "../commands/ListGatewayRulesCommand";
|
|
6
|
+
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListGatewayRules: (
|
|
8
|
+
config: BedrockAgentCoreControlPaginationConfiguration,
|
|
9
|
+
input: ListGatewayRulesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListGatewayRulesCommandOutput>;
|
|
@@ -6,7 +6,10 @@ export * from "./ListApiKeyCredentialProvidersPaginator";
|
|
|
6
6
|
export * from "./ListBrowserProfilesPaginator";
|
|
7
7
|
export * from "./ListBrowsersPaginator";
|
|
8
8
|
export * from "./ListCodeInterpretersPaginator";
|
|
9
|
+
export * from "./ListConfigurationBundlesPaginator";
|
|
10
|
+
export * from "./ListConfigurationBundleVersionsPaginator";
|
|
9
11
|
export * from "./ListEvaluatorsPaginator";
|
|
12
|
+
export * from "./ListGatewayRulesPaginator";
|
|
10
13
|
export * from "./ListGatewaysPaginator";
|
|
11
14
|
export * from "./ListGatewayTargetsPaginator";
|
|
12
15
|
export * from "./ListHarnessesPaginator";
|
|
@@ -50,6 +50,10 @@ export declare var CloudWatchOutputConfig$: StaticStructureSchema;
|
|
|
50
50
|
export declare var CodeConfiguration$: StaticStructureSchema;
|
|
51
51
|
export declare var CodeInterpreterNetworkConfiguration$: StaticStructureSchema;
|
|
52
52
|
export declare var CodeInterpreterSummary$: StaticStructureSchema;
|
|
53
|
+
export declare var ComponentConfiguration$: StaticStructureSchema;
|
|
54
|
+
export declare var ConfigurationBundleReference$: StaticStructureSchema;
|
|
55
|
+
export declare var ConfigurationBundleSummary$: StaticStructureSchema;
|
|
56
|
+
export declare var ConfigurationBundleVersionSummary$: StaticStructureSchema;
|
|
53
57
|
export declare var ContainerConfiguration$: StaticStructureSchema;
|
|
54
58
|
export declare var ContentConfiguration$: StaticStructureSchema;
|
|
55
59
|
export declare var CreateAgentRuntimeEndpointRequest$: StaticStructureSchema;
|
|
@@ -64,10 +68,14 @@ export declare var CreateBrowserRequest$: StaticStructureSchema;
|
|
|
64
68
|
export declare var CreateBrowserResponse$: StaticStructureSchema;
|
|
65
69
|
export declare var CreateCodeInterpreterRequest$: StaticStructureSchema;
|
|
66
70
|
export declare var CreateCodeInterpreterResponse$: StaticStructureSchema;
|
|
71
|
+
export declare var CreateConfigurationBundleRequest$: StaticStructureSchema;
|
|
72
|
+
export declare var CreateConfigurationBundleResponse$: StaticStructureSchema;
|
|
67
73
|
export declare var CreateEvaluatorRequest$: StaticStructureSchema;
|
|
68
74
|
export declare var CreateEvaluatorResponse$: StaticStructureSchema;
|
|
69
75
|
export declare var CreateGatewayRequest$: StaticStructureSchema;
|
|
70
76
|
export declare var CreateGatewayResponse$: StaticStructureSchema;
|
|
77
|
+
export declare var CreateGatewayRuleRequest$: StaticStructureSchema;
|
|
78
|
+
export declare var CreateGatewayRuleResponse$: StaticStructureSchema;
|
|
71
79
|
export declare var CreateGatewayTargetRequest$: StaticStructureSchema;
|
|
72
80
|
export declare var CreateGatewayTargetResponse$: StaticStructureSchema;
|
|
73
81
|
export declare var CreateHarnessRequest$: StaticStructureSchema;
|
|
@@ -107,10 +115,14 @@ export declare var DeleteBrowserRequest$: StaticStructureSchema;
|
|
|
107
115
|
export declare var DeleteBrowserResponse$: StaticStructureSchema;
|
|
108
116
|
export declare var DeleteCodeInterpreterRequest$: StaticStructureSchema;
|
|
109
117
|
export declare var DeleteCodeInterpreterResponse$: StaticStructureSchema;
|
|
118
|
+
export declare var DeleteConfigurationBundleRequest$: StaticStructureSchema;
|
|
119
|
+
export declare var DeleteConfigurationBundleResponse$: StaticStructureSchema;
|
|
110
120
|
export declare var DeleteEvaluatorRequest$: StaticStructureSchema;
|
|
111
121
|
export declare var DeleteEvaluatorResponse$: StaticStructureSchema;
|
|
112
122
|
export declare var DeleteGatewayRequest$: StaticStructureSchema;
|
|
113
123
|
export declare var DeleteGatewayResponse$: StaticStructureSchema;
|
|
124
|
+
export declare var DeleteGatewayRuleRequest$: StaticStructureSchema;
|
|
125
|
+
export declare var DeleteGatewayRuleResponse$: StaticStructureSchema;
|
|
114
126
|
export declare var DeleteGatewayTargetRequest$: StaticStructureSchema;
|
|
115
127
|
export declare var DeleteGatewayTargetResponse$: StaticStructureSchema;
|
|
116
128
|
export declare var DeleteHarnessRequest$: StaticStructureSchema;
|
|
@@ -152,6 +164,7 @@ export declare var FromUrlSynchronizationConfiguration$: StaticStructureSchema;
|
|
|
152
164
|
export declare var GatewayApiKeyCredentialProvider$: StaticStructureSchema;
|
|
153
165
|
export declare var GatewayInterceptorConfiguration$: StaticStructureSchema;
|
|
154
166
|
export declare var GatewayPolicyEngineConfiguration$: StaticStructureSchema;
|
|
167
|
+
export declare var GatewayRuleDetail$: StaticStructureSchema;
|
|
155
168
|
export declare var GatewaySummary$: StaticStructureSchema;
|
|
156
169
|
export declare var GatewayTarget$: StaticStructureSchema;
|
|
157
170
|
export declare var GetAgentRuntimeEndpointRequest$: StaticStructureSchema;
|
|
@@ -166,10 +179,16 @@ export declare var GetBrowserRequest$: StaticStructureSchema;
|
|
|
166
179
|
export declare var GetBrowserResponse$: StaticStructureSchema;
|
|
167
180
|
export declare var GetCodeInterpreterRequest$: StaticStructureSchema;
|
|
168
181
|
export declare var GetCodeInterpreterResponse$: StaticStructureSchema;
|
|
182
|
+
export declare var GetConfigurationBundleRequest$: StaticStructureSchema;
|
|
183
|
+
export declare var GetConfigurationBundleResponse$: StaticStructureSchema;
|
|
184
|
+
export declare var GetConfigurationBundleVersionRequest$: StaticStructureSchema;
|
|
185
|
+
export declare var GetConfigurationBundleVersionResponse$: StaticStructureSchema;
|
|
169
186
|
export declare var GetEvaluatorRequest$: StaticStructureSchema;
|
|
170
187
|
export declare var GetEvaluatorResponse$: StaticStructureSchema;
|
|
171
188
|
export declare var GetGatewayRequest$: StaticStructureSchema;
|
|
172
189
|
export declare var GetGatewayResponse$: StaticStructureSchema;
|
|
190
|
+
export declare var GetGatewayRuleRequest$: StaticStructureSchema;
|
|
191
|
+
export declare var GetGatewayRuleResponse$: StaticStructureSchema;
|
|
173
192
|
export declare var GetGatewayTargetRequest$: StaticStructureSchema;
|
|
174
193
|
export declare var GetGatewayTargetResponse$: StaticStructureSchema;
|
|
175
194
|
export declare var GetHarnessRequest$: StaticStructureSchema;
|
|
@@ -219,6 +238,7 @@ export declare var HarnessSummary$: StaticStructureSchema;
|
|
|
219
238
|
export declare var HarnessTool$: StaticStructureSchema;
|
|
220
239
|
export declare var HarnessTruncationConfiguration$: StaticStructureSchema;
|
|
221
240
|
export declare var IamCredentialProvider$: StaticStructureSchema;
|
|
241
|
+
export declare var IamPrincipal$: StaticStructureSchema;
|
|
222
242
|
export declare var IncludedOauth2ProviderConfigInput$: StaticStructureSchema;
|
|
223
243
|
export declare var IncludedOauth2ProviderConfigOutput$: StaticStructureSchema;
|
|
224
244
|
export declare var InferenceConfiguration$: StaticStructureSchema;
|
|
@@ -246,8 +266,14 @@ export declare var ListBrowsersRequest$: StaticStructureSchema;
|
|
|
246
266
|
export declare var ListBrowsersResponse$: StaticStructureSchema;
|
|
247
267
|
export declare var ListCodeInterpretersRequest$: StaticStructureSchema;
|
|
248
268
|
export declare var ListCodeInterpretersResponse$: StaticStructureSchema;
|
|
269
|
+
export declare var ListConfigurationBundlesRequest$: StaticStructureSchema;
|
|
270
|
+
export declare var ListConfigurationBundlesResponse$: StaticStructureSchema;
|
|
271
|
+
export declare var ListConfigurationBundleVersionsRequest$: StaticStructureSchema;
|
|
272
|
+
export declare var ListConfigurationBundleVersionsResponse$: StaticStructureSchema;
|
|
249
273
|
export declare var ListEvaluatorsRequest$: StaticStructureSchema;
|
|
250
274
|
export declare var ListEvaluatorsResponse$: StaticStructureSchema;
|
|
275
|
+
export declare var ListGatewayRulesRequest$: StaticStructureSchema;
|
|
276
|
+
export declare var ListGatewayRulesResponse$: StaticStructureSchema;
|
|
251
277
|
export declare var ListGatewaysRequest$: StaticStructureSchema;
|
|
252
278
|
export declare var ListGatewaysResponse$: StaticStructureSchema;
|
|
253
279
|
export declare var ListGatewayTargetsRequest$: StaticStructureSchema;
|
|
@@ -279,6 +305,8 @@ export declare var ListWorkloadIdentitiesResponse$: StaticStructureSchema;
|
|
|
279
305
|
export declare var LlmAsAJudgeEvaluatorConfig$: StaticStructureSchema;
|
|
280
306
|
export declare var ManagedResourceDetails$: StaticStructureSchema;
|
|
281
307
|
export declare var ManagedVpcResource$: StaticStructureSchema;
|
|
308
|
+
export declare var MatchPaths$: StaticStructureSchema;
|
|
309
|
+
export declare var MatchPrincipals$: StaticStructureSchema;
|
|
282
310
|
export declare var McpDescriptor$: StaticStructureSchema;
|
|
283
311
|
export declare var MCPGatewayConfiguration$: StaticStructureSchema;
|
|
284
312
|
export declare var McpLambdaTargetConfiguration$: StaticStructureSchema;
|
|
@@ -321,6 +349,7 @@ export declare var RegistryRecordSummary$: StaticStructureSchema;
|
|
|
321
349
|
export declare var RegistrySummary$: StaticStructureSchema;
|
|
322
350
|
export declare var Rule$: StaticStructureSchema;
|
|
323
351
|
export declare var RuntimeMetadataConfiguration$: StaticStructureSchema;
|
|
352
|
+
export declare var RuntimeTargetConfiguration$: StaticStructureSchema;
|
|
324
353
|
export declare var S3Configuration$: StaticStructureSchema;
|
|
325
354
|
export declare var S3Location$: StaticStructureSchema;
|
|
326
355
|
export declare var SalesforceOauth2ProviderConfigInput$: StaticStructureSchema;
|
|
@@ -348,6 +377,8 @@ export declare var SlackOauth2ProviderConfigInput$: StaticStructureSchema;
|
|
|
348
377
|
export declare var SlackOauth2ProviderConfigOutput$: StaticStructureSchema;
|
|
349
378
|
export declare var StartPolicyGenerationRequest$: StaticStructureSchema;
|
|
350
379
|
export declare var StartPolicyGenerationResponse$: StaticStructureSchema;
|
|
380
|
+
export declare var StaticOverride$: StaticStructureSchema;
|
|
381
|
+
export declare var StaticRoute$: StaticStructureSchema;
|
|
351
382
|
export declare var StrategyConfiguration$: StaticStructureSchema;
|
|
352
383
|
export declare var StreamDeliveryResources$: StaticStructureSchema;
|
|
353
384
|
export declare var SubmitRegistryRecordForApprovalRequest$: StaticStructureSchema;
|
|
@@ -359,15 +390,18 @@ export declare var SummaryOverrideConsolidationConfigurationInput$: StaticStruct
|
|
|
359
390
|
export declare var SynchronizationConfiguration$: StaticStructureSchema;
|
|
360
391
|
export declare var SynchronizeGatewayTargetsRequest$: StaticStructureSchema;
|
|
361
392
|
export declare var SynchronizeGatewayTargetsResponse$: StaticStructureSchema;
|
|
393
|
+
export declare var SystemManagedBlock$: StaticStructureSchema;
|
|
362
394
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
363
395
|
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
364
396
|
export declare var TargetSummary$: StaticStructureSchema;
|
|
397
|
+
export declare var TargetTrafficSplitEntry$: StaticStructureSchema;
|
|
365
398
|
export declare var TimeBasedTrigger$: StaticStructureSchema;
|
|
366
399
|
export declare var TimeBasedTriggerInput$: StaticStructureSchema;
|
|
367
400
|
export declare var TokenBasedTrigger$: StaticStructureSchema;
|
|
368
401
|
export declare var TokenBasedTriggerInput$: StaticStructureSchema;
|
|
369
402
|
export declare var ToolDefinition$: StaticStructureSchema;
|
|
370
403
|
export declare var ToolsDefinition$: StaticStructureSchema;
|
|
404
|
+
export declare var TrafficSplitEntry$: StaticStructureSchema;
|
|
371
405
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
372
406
|
export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
373
407
|
export declare var UpdateAgentRuntimeEndpointRequest$: StaticStructureSchema;
|
|
@@ -376,6 +410,8 @@ export declare var UpdateAgentRuntimeRequest$: StaticStructureSchema;
|
|
|
376
410
|
export declare var UpdateAgentRuntimeResponse$: StaticStructureSchema;
|
|
377
411
|
export declare var UpdateApiKeyCredentialProviderRequest$: StaticStructureSchema;
|
|
378
412
|
export declare var UpdateApiKeyCredentialProviderResponse$: StaticStructureSchema;
|
|
413
|
+
export declare var UpdateConfigurationBundleRequest$: StaticStructureSchema;
|
|
414
|
+
export declare var UpdateConfigurationBundleResponse$: StaticStructureSchema;
|
|
379
415
|
export declare var UpdatedA2aDescriptor$: StaticStructureSchema;
|
|
380
416
|
export declare var UpdatedAgentSkillsDescriptor$: StaticStructureSchema;
|
|
381
417
|
export declare var UpdatedAgentSkillsDescriptorFields$: StaticStructureSchema;
|
|
@@ -399,6 +435,8 @@ export declare var UpdateEvaluatorRequest$: StaticStructureSchema;
|
|
|
399
435
|
export declare var UpdateEvaluatorResponse$: StaticStructureSchema;
|
|
400
436
|
export declare var UpdateGatewayRequest$: StaticStructureSchema;
|
|
401
437
|
export declare var UpdateGatewayResponse$: StaticStructureSchema;
|
|
438
|
+
export declare var UpdateGatewayRuleRequest$: StaticStructureSchema;
|
|
439
|
+
export declare var UpdateGatewayRuleResponse$: StaticStructureSchema;
|
|
402
440
|
export declare var UpdateGatewayTargetRequest$: StaticStructureSchema;
|
|
403
441
|
export declare var UpdateGatewayTargetResponse$: StaticStructureSchema;
|
|
404
442
|
export declare var UpdateHarnessRequest$: StaticStructureSchema;
|
|
@@ -428,9 +466,15 @@ export declare var UserPreferenceOverrideConfigurationInput$: StaticStructureSch
|
|
|
428
466
|
export declare var UserPreferenceOverrideConsolidationConfigurationInput$: StaticStructureSchema;
|
|
429
467
|
export declare var UserPreferenceOverrideExtractionConfigurationInput$: StaticStructureSchema;
|
|
430
468
|
export declare var ValidationExceptionField$: StaticStructureSchema;
|
|
469
|
+
export declare var VersionCreatedBySource$: StaticStructureSchema;
|
|
470
|
+
export declare var VersionFilter$: StaticStructureSchema;
|
|
471
|
+
export declare var VersionLineageMetadata$: StaticStructureSchema;
|
|
431
472
|
export declare var VpcConfig$: StaticStructureSchema;
|
|
473
|
+
export declare var WeightedOverride$: StaticStructureSchema;
|
|
474
|
+
export declare var WeightedRoute$: StaticStructureSchema;
|
|
432
475
|
export declare var WorkloadIdentityDetails$: StaticStructureSchema;
|
|
433
476
|
export declare var WorkloadIdentityType$: StaticStructureSchema;
|
|
477
|
+
export declare var Action$: StaticUnionSchema;
|
|
434
478
|
export declare var AgentRuntimeArtifact$: StaticUnionSchema;
|
|
435
479
|
export declare var ApiSchemaConfiguration$: StaticUnionSchema;
|
|
436
480
|
export declare var AuthorizationData$: StaticUnionSchema;
|
|
@@ -439,6 +483,8 @@ export declare var CertificateLocation$: StaticUnionSchema;
|
|
|
439
483
|
export declare var ClaimMatchValueType$: StaticUnionSchema;
|
|
440
484
|
export declare var Code$: StaticUnionSchema;
|
|
441
485
|
export declare var CodeBasedEvaluatorConfig$: StaticUnionSchema;
|
|
486
|
+
export declare var Condition$: StaticUnionSchema;
|
|
487
|
+
export declare var ConfigurationBundleAction$: StaticUnionSchema;
|
|
442
488
|
export declare var ConsolidationConfiguration$: StaticUnionSchema;
|
|
443
489
|
export declare var Content$: StaticUnionSchema;
|
|
444
490
|
export declare var CredentialProvider$: StaticUnionSchema;
|
|
@@ -467,7 +513,9 @@ export declare var HarnessSkill$: StaticUnionSchema;
|
|
|
467
513
|
export declare var HarnessSystemContentBlock$: StaticUnionSchema;
|
|
468
514
|
export declare var HarnessToolConfiguration$: StaticUnionSchema;
|
|
469
515
|
export declare var HarnessTruncationStrategyConfiguration$: StaticUnionSchema;
|
|
516
|
+
export declare var HttpTargetConfiguration$: StaticUnionSchema;
|
|
470
517
|
export declare var InterceptorConfiguration$: StaticUnionSchema;
|
|
518
|
+
export declare var MatchPrincipalEntry$: StaticUnionSchema;
|
|
471
519
|
export declare var McpTargetConfiguration$: StaticUnionSchema;
|
|
472
520
|
export declare var McpToolSchemaConfiguration$: StaticUnionSchema;
|
|
473
521
|
export declare var MemoryStrategyInput$: StaticUnionSchema;
|
|
@@ -485,6 +533,7 @@ export declare var RegistryRecordCredentialProviderUnion$: StaticUnionSchema;
|
|
|
485
533
|
export declare var RequestHeaderConfiguration$: StaticUnionSchema;
|
|
486
534
|
export declare var Resource$: StaticUnionSchema;
|
|
487
535
|
export declare var ResourceLocation$: StaticUnionSchema;
|
|
536
|
+
export declare var RouteToTargetAction$: StaticUnionSchema;
|
|
488
537
|
export declare var SelfManagedLatticeResource$: StaticUnionSchema;
|
|
489
538
|
export declare var StreamDeliveryResource$: StaticUnionSchema;
|
|
490
539
|
export declare var TargetConfiguration$: StaticUnionSchema;
|
|
@@ -497,8 +546,10 @@ export declare var CreateApiKeyCredentialProvider$: StaticOperationSchema;
|
|
|
497
546
|
export declare var CreateBrowser$: StaticOperationSchema;
|
|
498
547
|
export declare var CreateBrowserProfile$: StaticOperationSchema;
|
|
499
548
|
export declare var CreateCodeInterpreter$: StaticOperationSchema;
|
|
549
|
+
export declare var CreateConfigurationBundle$: StaticOperationSchema;
|
|
500
550
|
export declare var CreateEvaluator$: StaticOperationSchema;
|
|
501
551
|
export declare var CreateGateway$: StaticOperationSchema;
|
|
552
|
+
export declare var CreateGatewayRule$: StaticOperationSchema;
|
|
502
553
|
export declare var CreateGatewayTarget$: StaticOperationSchema;
|
|
503
554
|
export declare var CreateHarness$: StaticOperationSchema;
|
|
504
555
|
export declare var CreateMemory$: StaticOperationSchema;
|
|
@@ -515,8 +566,10 @@ export declare var DeleteApiKeyCredentialProvider$: StaticOperationSchema;
|
|
|
515
566
|
export declare var DeleteBrowser$: StaticOperationSchema;
|
|
516
567
|
export declare var DeleteBrowserProfile$: StaticOperationSchema;
|
|
517
568
|
export declare var DeleteCodeInterpreter$: StaticOperationSchema;
|
|
569
|
+
export declare var DeleteConfigurationBundle$: StaticOperationSchema;
|
|
518
570
|
export declare var DeleteEvaluator$: StaticOperationSchema;
|
|
519
571
|
export declare var DeleteGateway$: StaticOperationSchema;
|
|
572
|
+
export declare var DeleteGatewayRule$: StaticOperationSchema;
|
|
520
573
|
export declare var DeleteGatewayTarget$: StaticOperationSchema;
|
|
521
574
|
export declare var DeleteHarness$: StaticOperationSchema;
|
|
522
575
|
export declare var DeleteMemory$: StaticOperationSchema;
|
|
@@ -534,8 +587,11 @@ export declare var GetApiKeyCredentialProvider$: StaticOperationSchema;
|
|
|
534
587
|
export declare var GetBrowser$: StaticOperationSchema;
|
|
535
588
|
export declare var GetBrowserProfile$: StaticOperationSchema;
|
|
536
589
|
export declare var GetCodeInterpreter$: StaticOperationSchema;
|
|
590
|
+
export declare var GetConfigurationBundle$: StaticOperationSchema;
|
|
591
|
+
export declare var GetConfigurationBundleVersion$: StaticOperationSchema;
|
|
537
592
|
export declare var GetEvaluator$: StaticOperationSchema;
|
|
538
593
|
export declare var GetGateway$: StaticOperationSchema;
|
|
594
|
+
export declare var GetGatewayRule$: StaticOperationSchema;
|
|
539
595
|
export declare var GetGatewayTarget$: StaticOperationSchema;
|
|
540
596
|
export declare var GetHarness$: StaticOperationSchema;
|
|
541
597
|
export declare var GetMemory$: StaticOperationSchema;
|
|
@@ -556,7 +612,10 @@ export declare var ListApiKeyCredentialProviders$: StaticOperationSchema;
|
|
|
556
612
|
export declare var ListBrowserProfiles$: StaticOperationSchema;
|
|
557
613
|
export declare var ListBrowsers$: StaticOperationSchema;
|
|
558
614
|
export declare var ListCodeInterpreters$: StaticOperationSchema;
|
|
615
|
+
export declare var ListConfigurationBundles$: StaticOperationSchema;
|
|
616
|
+
export declare var ListConfigurationBundleVersions$: StaticOperationSchema;
|
|
559
617
|
export declare var ListEvaluators$: StaticOperationSchema;
|
|
618
|
+
export declare var ListGatewayRules$: StaticOperationSchema;
|
|
560
619
|
export declare var ListGateways$: StaticOperationSchema;
|
|
561
620
|
export declare var ListGatewayTargets$: StaticOperationSchema;
|
|
562
621
|
export declare var ListHarnesses$: StaticOperationSchema;
|
|
@@ -581,8 +640,10 @@ export declare var UntagResource$: StaticOperationSchema;
|
|
|
581
640
|
export declare var UpdateAgentRuntime$: StaticOperationSchema;
|
|
582
641
|
export declare var UpdateAgentRuntimeEndpoint$: StaticOperationSchema;
|
|
583
642
|
export declare var UpdateApiKeyCredentialProvider$: StaticOperationSchema;
|
|
643
|
+
export declare var UpdateConfigurationBundle$: StaticOperationSchema;
|
|
584
644
|
export declare var UpdateEvaluator$: StaticOperationSchema;
|
|
585
645
|
export declare var UpdateGateway$: StaticOperationSchema;
|
|
646
|
+
export declare var UpdateGatewayRule$: StaticOperationSchema;
|
|
586
647
|
export declare var UpdateGatewayTarget$: StaticOperationSchema;
|
|
587
648
|
export declare var UpdateHarness$: StaticOperationSchema;
|
|
588
649
|
export declare var UpdateMemory$: StaticOperationSchema;
|
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
2
|
import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
|
|
3
|
-
import {
|
|
3
|
+
import {
|
|
4
|
+
GetMemoryCommandInput,
|
|
5
|
+
GetMemoryCommandOutput,
|
|
6
|
+
} from "../commands/GetMemoryCommand";
|
|
7
|
+
import { BedrockAgentCoreControlServiceException } from "../models/BedrockAgentCoreControlServiceException";
|
|
4
8
|
export declare const waitForMemoryCreated: (
|
|
5
9
|
params: WaiterConfiguration<BedrockAgentCoreControlClient>,
|
|
6
10
|
input: GetMemoryCommandInput
|
|
7
|
-
) => Promise<
|
|
11
|
+
) => Promise<
|
|
12
|
+
WaiterResult<GetMemoryCommandOutput | BedrockAgentCoreControlServiceException>
|
|
13
|
+
>;
|
|
8
14
|
export declare const waitUntilMemoryCreated: (
|
|
9
15
|
params: WaiterConfiguration<BedrockAgentCoreControlClient>,
|
|
10
16
|
input: GetMemoryCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
17
|
+
) => Promise<WaiterResult<GetMemoryCommandOutput>>;
|
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
2
|
import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
|
|
3
|
-
import {
|
|
3
|
+
import {
|
|
4
|
+
GetPolicyCommandInput,
|
|
5
|
+
GetPolicyCommandOutput,
|
|
6
|
+
} from "../commands/GetPolicyCommand";
|
|
7
|
+
import { BedrockAgentCoreControlServiceException } from "../models/BedrockAgentCoreControlServiceException";
|
|
4
8
|
export declare const waitForPolicyActive: (
|
|
5
9
|
params: WaiterConfiguration<BedrockAgentCoreControlClient>,
|
|
6
10
|
input: GetPolicyCommandInput
|
|
7
|
-
) => Promise<
|
|
11
|
+
) => Promise<
|
|
12
|
+
WaiterResult<GetPolicyCommandOutput | BedrockAgentCoreControlServiceException>
|
|
13
|
+
>;
|
|
8
14
|
export declare const waitUntilPolicyActive: (
|
|
9
15
|
params: WaiterConfiguration<BedrockAgentCoreControlClient>,
|
|
10
16
|
input: GetPolicyCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
17
|
+
) => Promise<WaiterResult<GetPolicyCommandOutput>>;
|
|
@@ -1,11 +1,18 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
2
|
import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
|
|
3
|
-
import {
|
|
3
|
+
import {
|
|
4
|
+
GetPolicyCommandInput,
|
|
5
|
+
GetPolicyCommandOutput,
|
|
6
|
+
} from "../commands/GetPolicyCommand";
|
|
7
|
+
import { BedrockAgentCoreControlServiceException } from "../models/BedrockAgentCoreControlServiceException";
|
|
8
|
+
import { ResourceNotFoundException } from "../models/errors";
|
|
4
9
|
export declare const waitForPolicyDeleted: (
|
|
5
10
|
params: WaiterConfiguration<BedrockAgentCoreControlClient>,
|
|
6
11
|
input: GetPolicyCommandInput
|
|
7
|
-
) => Promise<
|
|
12
|
+
) => Promise<
|
|
13
|
+
WaiterResult<GetPolicyCommandOutput | BedrockAgentCoreControlServiceException>
|
|
14
|
+
>;
|
|
8
15
|
export declare const waitUntilPolicyDeleted: (
|
|
9
16
|
params: WaiterConfiguration<BedrockAgentCoreControlClient>,
|
|
10
17
|
input: GetPolicyCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
18
|
+
) => Promise<WaiterResult<ResourceNotFoundException>>;
|
|
@@ -1,11 +1,19 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
2
|
import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
|
|
3
|
-
import {
|
|
3
|
+
import {
|
|
4
|
+
GetPolicyEngineCommandInput,
|
|
5
|
+
GetPolicyEngineCommandOutput,
|
|
6
|
+
} from "../commands/GetPolicyEngineCommand";
|
|
7
|
+
import { BedrockAgentCoreControlServiceException } from "../models/BedrockAgentCoreControlServiceException";
|
|
4
8
|
export declare const waitForPolicyEngineActive: (
|
|
5
9
|
params: WaiterConfiguration<BedrockAgentCoreControlClient>,
|
|
6
10
|
input: GetPolicyEngineCommandInput
|
|
7
|
-
) => Promise<
|
|
11
|
+
) => Promise<
|
|
12
|
+
WaiterResult<
|
|
13
|
+
GetPolicyEngineCommandOutput | BedrockAgentCoreControlServiceException
|
|
14
|
+
>
|
|
15
|
+
>;
|
|
8
16
|
export declare const waitUntilPolicyEngineActive: (
|
|
9
17
|
params: WaiterConfiguration<BedrockAgentCoreControlClient>,
|
|
10
18
|
input: GetPolicyEngineCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
19
|
+
) => Promise<WaiterResult<GetPolicyEngineCommandOutput>>;
|
|
@@ -1,11 +1,20 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
2
|
import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
|
|
3
|
-
import {
|
|
3
|
+
import {
|
|
4
|
+
GetPolicyEngineCommandInput,
|
|
5
|
+
GetPolicyEngineCommandOutput,
|
|
6
|
+
} from "../commands/GetPolicyEngineCommand";
|
|
7
|
+
import { BedrockAgentCoreControlServiceException } from "../models/BedrockAgentCoreControlServiceException";
|
|
8
|
+
import { ResourceNotFoundException } from "../models/errors";
|
|
4
9
|
export declare const waitForPolicyEngineDeleted: (
|
|
5
10
|
params: WaiterConfiguration<BedrockAgentCoreControlClient>,
|
|
6
11
|
input: GetPolicyEngineCommandInput
|
|
7
|
-
) => Promise<
|
|
12
|
+
) => Promise<
|
|
13
|
+
WaiterResult<
|
|
14
|
+
GetPolicyEngineCommandOutput | BedrockAgentCoreControlServiceException
|
|
15
|
+
>
|
|
16
|
+
>;
|
|
8
17
|
export declare const waitUntilPolicyEngineDeleted: (
|
|
9
18
|
params: WaiterConfiguration<BedrockAgentCoreControlClient>,
|
|
10
19
|
input: GetPolicyEngineCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
20
|
+
) => Promise<WaiterResult<ResourceNotFoundException>>;
|
|
@@ -1,11 +1,19 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
2
|
import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
|
|
3
|
-
import {
|
|
3
|
+
import {
|
|
4
|
+
GetPolicyGenerationCommandInput,
|
|
5
|
+
GetPolicyGenerationCommandOutput,
|
|
6
|
+
} from "../commands/GetPolicyGenerationCommand";
|
|
7
|
+
import { BedrockAgentCoreControlServiceException } from "../models/BedrockAgentCoreControlServiceException";
|
|
4
8
|
export declare const waitForPolicyGenerationCompleted: (
|
|
5
9
|
params: WaiterConfiguration<BedrockAgentCoreControlClient>,
|
|
6
10
|
input: GetPolicyGenerationCommandInput
|
|
7
|
-
) => Promise<
|
|
11
|
+
) => Promise<
|
|
12
|
+
WaiterResult<
|
|
13
|
+
GetPolicyGenerationCommandOutput | BedrockAgentCoreControlServiceException
|
|
14
|
+
>
|
|
15
|
+
>;
|
|
8
16
|
export declare const waitUntilPolicyGenerationCompleted: (
|
|
9
17
|
params: WaiterConfiguration<BedrockAgentCoreControlClient>,
|
|
10
18
|
input: GetPolicyGenerationCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
19
|
+
) => Promise<WaiterResult<GetPolicyGenerationCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
2
|
import type { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
|
|
3
|
-
import { type GetMemoryCommandInput } from "../commands/GetMemoryCommand";
|
|
3
|
+
import { type GetMemoryCommandInput, type GetMemoryCommandOutput } from "../commands/GetMemoryCommand";
|
|
4
|
+
import type { BedrockAgentCoreControlServiceException } from "../models/BedrockAgentCoreControlServiceException";
|
|
4
5
|
/**
|
|
5
6
|
*
|
|
6
7
|
* @deprecated Use waitUntilMemoryCreated instead. waitForMemoryCreated does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForMemoryCreated: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetMemoryCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForMemoryCreated: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetMemoryCommandInput) => Promise<WaiterResult<GetMemoryCommandOutput | BedrockAgentCoreControlServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
*
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to GetMemoryCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilMemoryCreated: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetMemoryCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilMemoryCreated: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetMemoryCommandInput) => Promise<WaiterResult<GetMemoryCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
2
|
import type { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
|
|
3
|
-
import { type GetPolicyCommandInput } from "../commands/GetPolicyCommand";
|
|
3
|
+
import { type GetPolicyCommandInput, type GetPolicyCommandOutput } from "../commands/GetPolicyCommand";
|
|
4
|
+
import type { BedrockAgentCoreControlServiceException } from "../models/BedrockAgentCoreControlServiceException";
|
|
4
5
|
/**
|
|
5
6
|
* Wait until a Policy is active
|
|
6
7
|
* @deprecated Use waitUntilPolicyActive instead. waitForPolicyActive does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForPolicyActive: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForPolicyActive: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyCommandInput) => Promise<WaiterResult<GetPolicyCommandOutput | BedrockAgentCoreControlServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
* Wait until a Policy is active
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to GetPolicyCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilPolicyActive: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilPolicyActive: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyCommandInput) => Promise<WaiterResult<GetPolicyCommandOutput>>;
|
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
2
|
import type { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
|
|
3
|
-
import { type GetPolicyCommandInput } from "../commands/GetPolicyCommand";
|
|
3
|
+
import { type GetPolicyCommandInput, type GetPolicyCommandOutput } from "../commands/GetPolicyCommand";
|
|
4
|
+
import type { BedrockAgentCoreControlServiceException } from "../models/BedrockAgentCoreControlServiceException";
|
|
5
|
+
import type { ResourceNotFoundException } from "../models/errors";
|
|
4
6
|
/**
|
|
5
7
|
* Wait until a Policy is deleted
|
|
6
8
|
* @deprecated Use waitUntilPolicyDeleted instead. waitForPolicyDeleted does not throw error in non-success cases.
|
|
7
9
|
*/
|
|
8
|
-
export declare const waitForPolicyDeleted: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyCommandInput) => Promise<WaiterResult
|
|
10
|
+
export declare const waitForPolicyDeleted: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyCommandInput) => Promise<WaiterResult<GetPolicyCommandOutput | BedrockAgentCoreControlServiceException>>;
|
|
9
11
|
/**
|
|
10
12
|
* Wait until a Policy is deleted
|
|
11
13
|
* @param params - Waiter configuration options.
|
|
12
14
|
* @param input - The input to GetPolicyCommand for polling.
|
|
13
15
|
*/
|
|
14
|
-
export declare const waitUntilPolicyDeleted: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyCommandInput) => Promise<WaiterResult
|
|
16
|
+
export declare const waitUntilPolicyDeleted: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyCommandInput) => Promise<WaiterResult<ResourceNotFoundException>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
2
|
import type { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
|
|
3
|
-
import { type GetPolicyEngineCommandInput } from "../commands/GetPolicyEngineCommand";
|
|
3
|
+
import { type GetPolicyEngineCommandInput, type GetPolicyEngineCommandOutput } from "../commands/GetPolicyEngineCommand";
|
|
4
|
+
import type { BedrockAgentCoreControlServiceException } from "../models/BedrockAgentCoreControlServiceException";
|
|
4
5
|
/**
|
|
5
6
|
* Wait until a PolicyEngine is active
|
|
6
7
|
* @deprecated Use waitUntilPolicyEngineActive instead. waitForPolicyEngineActive does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForPolicyEngineActive: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyEngineCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForPolicyEngineActive: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyEngineCommandInput) => Promise<WaiterResult<GetPolicyEngineCommandOutput | BedrockAgentCoreControlServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
* Wait until a PolicyEngine is active
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to GetPolicyEngineCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilPolicyEngineActive: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyEngineCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilPolicyEngineActive: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyEngineCommandInput) => Promise<WaiterResult<GetPolicyEngineCommandOutput>>;
|
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
2
|
import type { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
|
|
3
|
-
import { type GetPolicyEngineCommandInput } from "../commands/GetPolicyEngineCommand";
|
|
3
|
+
import { type GetPolicyEngineCommandInput, type GetPolicyEngineCommandOutput } from "../commands/GetPolicyEngineCommand";
|
|
4
|
+
import type { BedrockAgentCoreControlServiceException } from "../models/BedrockAgentCoreControlServiceException";
|
|
5
|
+
import type { ResourceNotFoundException } from "../models/errors";
|
|
4
6
|
/**
|
|
5
7
|
* Wait until a PolicyEngine is deleted
|
|
6
8
|
* @deprecated Use waitUntilPolicyEngineDeleted instead. waitForPolicyEngineDeleted does not throw error in non-success cases.
|
|
7
9
|
*/
|
|
8
|
-
export declare const waitForPolicyEngineDeleted: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyEngineCommandInput) => Promise<WaiterResult
|
|
10
|
+
export declare const waitForPolicyEngineDeleted: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyEngineCommandInput) => Promise<WaiterResult<GetPolicyEngineCommandOutput | BedrockAgentCoreControlServiceException>>;
|
|
9
11
|
/**
|
|
10
12
|
* Wait until a PolicyEngine is deleted
|
|
11
13
|
* @param params - Waiter configuration options.
|
|
12
14
|
* @param input - The input to GetPolicyEngineCommand for polling.
|
|
13
15
|
*/
|
|
14
|
-
export declare const waitUntilPolicyEngineDeleted: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyEngineCommandInput) => Promise<WaiterResult
|
|
16
|
+
export declare const waitUntilPolicyEngineDeleted: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyEngineCommandInput) => Promise<WaiterResult<ResourceNotFoundException>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
2
|
import type { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
|
|
3
|
-
import { type GetPolicyGenerationCommandInput } from "../commands/GetPolicyGenerationCommand";
|
|
3
|
+
import { type GetPolicyGenerationCommandInput, type GetPolicyGenerationCommandOutput } from "../commands/GetPolicyGenerationCommand";
|
|
4
|
+
import type { BedrockAgentCoreControlServiceException } from "../models/BedrockAgentCoreControlServiceException";
|
|
4
5
|
/**
|
|
5
6
|
* Wait until policy generation is completed
|
|
6
7
|
* @deprecated Use waitUntilPolicyGenerationCompleted instead. waitForPolicyGenerationCompleted does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForPolicyGenerationCompleted: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyGenerationCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForPolicyGenerationCompleted: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyGenerationCommandInput) => Promise<WaiterResult<GetPolicyGenerationCommandOutput | BedrockAgentCoreControlServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
* Wait until policy generation is completed
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to GetPolicyGenerationCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilPolicyGenerationCompleted: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyGenerationCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilPolicyGenerationCompleted: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyGenerationCommandInput) => Promise<WaiterResult<GetPolicyGenerationCommandOutput>>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-bedrock-agentcore-control",
|
|
3
3
|
"description": "AWS SDK for JavaScript Bedrock Agentcore Control Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1039.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-bedrock-agentcore-control",
|
|
@@ -21,17 +21,17 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.974.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.974.7",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.38",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.10",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.10",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.11",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.37",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.13",
|
|
31
31
|
"@aws-sdk/types": "^3.973.8",
|
|
32
32
|
"@aws-sdk/util-endpoints": "^3.996.8",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.10",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.973.23",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.17",
|
|
36
36
|
"@smithy/core": "^3.23.17",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.17",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.14",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.14",
|
|
41
41
|
"@smithy/middleware-endpoint": "^4.4.32",
|
|
42
|
-
"@smithy/middleware-retry": "^4.5.
|
|
42
|
+
"@smithy/middleware-retry": "^4.5.7",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.20",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.14",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.14",
|
|
@@ -55,9 +55,9 @@
|
|
|
55
55
|
"@smithy/util-defaults-mode-node": "^4.2.54",
|
|
56
56
|
"@smithy/util-endpoints": "^3.4.2",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.14",
|
|
58
|
-
"@smithy/util-retry": "^4.3.
|
|
58
|
+
"@smithy/util-retry": "^4.3.6",
|
|
59
59
|
"@smithy/util-utf8": "^4.2.2",
|
|
60
|
-
"@smithy/util-waiter": "^4.
|
|
60
|
+
"@smithy/util-waiter": "^4.3.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|