@aws-sdk/client-bedrock-agentcore-control 3.1038.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 +215 -0
- 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-types/BedrockAgentCoreControl.d.ts +106 -0
- 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 +226 -0
- 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/package.json +7 -7
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListConfigurationBundleVersionsCommandInput, ListConfigurationBundleVersionsCommandOutput } from "../commands/ListConfigurationBundleVersionsCommand";
|
|
3
|
+
import type { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListConfigurationBundleVersions: (config: BedrockAgentCoreControlPaginationConfiguration, input: ListConfigurationBundleVersionsCommandInput, ...rest: any[]) => Paginator<ListConfigurationBundleVersionsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListConfigurationBundlesCommandInput, ListConfigurationBundlesCommandOutput } from "../commands/ListConfigurationBundlesCommand";
|
|
3
|
+
import type { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListConfigurationBundles: (config: BedrockAgentCoreControlPaginationConfiguration, input: ListConfigurationBundlesCommandInput, ...rest: any[]) => Paginator<ListConfigurationBundlesCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListGatewayRulesCommandInput, ListGatewayRulesCommandOutput } from "../commands/ListGatewayRulesCommand";
|
|
3
|
+
import type { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListGatewayRules: (config: BedrockAgentCoreControlPaginationConfiguration, input: ListGatewayRulesCommandInput, ...rest: any[]) => 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;
|
|
@@ -30,6 +30,10 @@ import {
|
|
|
30
30
|
CreateCodeInterpreterCommandInput,
|
|
31
31
|
CreateCodeInterpreterCommandOutput,
|
|
32
32
|
} from "./commands/CreateCodeInterpreterCommand";
|
|
33
|
+
import {
|
|
34
|
+
CreateConfigurationBundleCommandInput,
|
|
35
|
+
CreateConfigurationBundleCommandOutput,
|
|
36
|
+
} from "./commands/CreateConfigurationBundleCommand";
|
|
33
37
|
import {
|
|
34
38
|
CreateEvaluatorCommandInput,
|
|
35
39
|
CreateEvaluatorCommandOutput,
|
|
@@ -38,6 +42,10 @@ import {
|
|
|
38
42
|
CreateGatewayCommandInput,
|
|
39
43
|
CreateGatewayCommandOutput,
|
|
40
44
|
} from "./commands/CreateGatewayCommand";
|
|
45
|
+
import {
|
|
46
|
+
CreateGatewayRuleCommandInput,
|
|
47
|
+
CreateGatewayRuleCommandOutput,
|
|
48
|
+
} from "./commands/CreateGatewayRuleCommand";
|
|
41
49
|
import {
|
|
42
50
|
CreateGatewayTargetCommandInput,
|
|
43
51
|
CreateGatewayTargetCommandOutput,
|
|
@@ -102,6 +110,10 @@ import {
|
|
|
102
110
|
DeleteCodeInterpreterCommandInput,
|
|
103
111
|
DeleteCodeInterpreterCommandOutput,
|
|
104
112
|
} from "./commands/DeleteCodeInterpreterCommand";
|
|
113
|
+
import {
|
|
114
|
+
DeleteConfigurationBundleCommandInput,
|
|
115
|
+
DeleteConfigurationBundleCommandOutput,
|
|
116
|
+
} from "./commands/DeleteConfigurationBundleCommand";
|
|
105
117
|
import {
|
|
106
118
|
DeleteEvaluatorCommandInput,
|
|
107
119
|
DeleteEvaluatorCommandOutput,
|
|
@@ -110,6 +122,10 @@ import {
|
|
|
110
122
|
DeleteGatewayCommandInput,
|
|
111
123
|
DeleteGatewayCommandOutput,
|
|
112
124
|
} from "./commands/DeleteGatewayCommand";
|
|
125
|
+
import {
|
|
126
|
+
DeleteGatewayRuleCommandInput,
|
|
127
|
+
DeleteGatewayRuleCommandOutput,
|
|
128
|
+
} from "./commands/DeleteGatewayRuleCommand";
|
|
113
129
|
import {
|
|
114
130
|
DeleteGatewayTargetCommandInput,
|
|
115
131
|
DeleteGatewayTargetCommandOutput,
|
|
@@ -178,6 +194,14 @@ import {
|
|
|
178
194
|
GetCodeInterpreterCommandInput,
|
|
179
195
|
GetCodeInterpreterCommandOutput,
|
|
180
196
|
} from "./commands/GetCodeInterpreterCommand";
|
|
197
|
+
import {
|
|
198
|
+
GetConfigurationBundleCommandInput,
|
|
199
|
+
GetConfigurationBundleCommandOutput,
|
|
200
|
+
} from "./commands/GetConfigurationBundleCommand";
|
|
201
|
+
import {
|
|
202
|
+
GetConfigurationBundleVersionCommandInput,
|
|
203
|
+
GetConfigurationBundleVersionCommandOutput,
|
|
204
|
+
} from "./commands/GetConfigurationBundleVersionCommand";
|
|
181
205
|
import {
|
|
182
206
|
GetEvaluatorCommandInput,
|
|
183
207
|
GetEvaluatorCommandOutput,
|
|
@@ -186,6 +210,10 @@ import {
|
|
|
186
210
|
GetGatewayCommandInput,
|
|
187
211
|
GetGatewayCommandOutput,
|
|
188
212
|
} from "./commands/GetGatewayCommand";
|
|
213
|
+
import {
|
|
214
|
+
GetGatewayRuleCommandInput,
|
|
215
|
+
GetGatewayRuleCommandOutput,
|
|
216
|
+
} from "./commands/GetGatewayRuleCommand";
|
|
189
217
|
import {
|
|
190
218
|
GetGatewayTargetCommandInput,
|
|
191
219
|
GetGatewayTargetCommandOutput,
|
|
@@ -266,10 +294,22 @@ import {
|
|
|
266
294
|
ListCodeInterpretersCommandInput,
|
|
267
295
|
ListCodeInterpretersCommandOutput,
|
|
268
296
|
} from "./commands/ListCodeInterpretersCommand";
|
|
297
|
+
import {
|
|
298
|
+
ListConfigurationBundlesCommandInput,
|
|
299
|
+
ListConfigurationBundlesCommandOutput,
|
|
300
|
+
} from "./commands/ListConfigurationBundlesCommand";
|
|
301
|
+
import {
|
|
302
|
+
ListConfigurationBundleVersionsCommandInput,
|
|
303
|
+
ListConfigurationBundleVersionsCommandOutput,
|
|
304
|
+
} from "./commands/ListConfigurationBundleVersionsCommand";
|
|
269
305
|
import {
|
|
270
306
|
ListEvaluatorsCommandInput,
|
|
271
307
|
ListEvaluatorsCommandOutput,
|
|
272
308
|
} from "./commands/ListEvaluatorsCommand";
|
|
309
|
+
import {
|
|
310
|
+
ListGatewayRulesCommandInput,
|
|
311
|
+
ListGatewayRulesCommandOutput,
|
|
312
|
+
} from "./commands/ListGatewayRulesCommand";
|
|
273
313
|
import {
|
|
274
314
|
ListGatewaysCommandInput,
|
|
275
315
|
ListGatewaysCommandOutput,
|
|
@@ -366,6 +406,10 @@ import {
|
|
|
366
406
|
UpdateApiKeyCredentialProviderCommandInput,
|
|
367
407
|
UpdateApiKeyCredentialProviderCommandOutput,
|
|
368
408
|
} from "./commands/UpdateApiKeyCredentialProviderCommand";
|
|
409
|
+
import {
|
|
410
|
+
UpdateConfigurationBundleCommandInput,
|
|
411
|
+
UpdateConfigurationBundleCommandOutput,
|
|
412
|
+
} from "./commands/UpdateConfigurationBundleCommand";
|
|
369
413
|
import {
|
|
370
414
|
UpdateEvaluatorCommandInput,
|
|
371
415
|
UpdateEvaluatorCommandOutput,
|
|
@@ -374,6 +418,10 @@ import {
|
|
|
374
418
|
UpdateGatewayCommandInput,
|
|
375
419
|
UpdateGatewayCommandOutput,
|
|
376
420
|
} from "./commands/UpdateGatewayCommand";
|
|
421
|
+
import {
|
|
422
|
+
UpdateGatewayRuleCommandInput,
|
|
423
|
+
UpdateGatewayRuleCommandOutput,
|
|
424
|
+
} from "./commands/UpdateGatewayRuleCommand";
|
|
377
425
|
import {
|
|
378
426
|
UpdateGatewayTargetCommandInput,
|
|
379
427
|
UpdateGatewayTargetCommandOutput,
|
|
@@ -498,6 +546,19 @@ export interface BedrockAgentCoreControl {
|
|
|
498
546
|
options: __HttpHandlerOptions,
|
|
499
547
|
cb: (err: any, data?: CreateCodeInterpreterCommandOutput) => void
|
|
500
548
|
): void;
|
|
549
|
+
createConfigurationBundle(
|
|
550
|
+
args: CreateConfigurationBundleCommandInput,
|
|
551
|
+
options?: __HttpHandlerOptions
|
|
552
|
+
): Promise<CreateConfigurationBundleCommandOutput>;
|
|
553
|
+
createConfigurationBundle(
|
|
554
|
+
args: CreateConfigurationBundleCommandInput,
|
|
555
|
+
cb: (err: any, data?: CreateConfigurationBundleCommandOutput) => void
|
|
556
|
+
): void;
|
|
557
|
+
createConfigurationBundle(
|
|
558
|
+
args: CreateConfigurationBundleCommandInput,
|
|
559
|
+
options: __HttpHandlerOptions,
|
|
560
|
+
cb: (err: any, data?: CreateConfigurationBundleCommandOutput) => void
|
|
561
|
+
): void;
|
|
501
562
|
createEvaluator(
|
|
502
563
|
args: CreateEvaluatorCommandInput,
|
|
503
564
|
options?: __HttpHandlerOptions
|
|
@@ -524,6 +585,19 @@ export interface BedrockAgentCoreControl {
|
|
|
524
585
|
options: __HttpHandlerOptions,
|
|
525
586
|
cb: (err: any, data?: CreateGatewayCommandOutput) => void
|
|
526
587
|
): void;
|
|
588
|
+
createGatewayRule(
|
|
589
|
+
args: CreateGatewayRuleCommandInput,
|
|
590
|
+
options?: __HttpHandlerOptions
|
|
591
|
+
): Promise<CreateGatewayRuleCommandOutput>;
|
|
592
|
+
createGatewayRule(
|
|
593
|
+
args: CreateGatewayRuleCommandInput,
|
|
594
|
+
cb: (err: any, data?: CreateGatewayRuleCommandOutput) => void
|
|
595
|
+
): void;
|
|
596
|
+
createGatewayRule(
|
|
597
|
+
args: CreateGatewayRuleCommandInput,
|
|
598
|
+
options: __HttpHandlerOptions,
|
|
599
|
+
cb: (err: any, data?: CreateGatewayRuleCommandOutput) => void
|
|
600
|
+
): void;
|
|
527
601
|
createGatewayTarget(
|
|
528
602
|
args: CreateGatewayTargetCommandInput,
|
|
529
603
|
options?: __HttpHandlerOptions
|
|
@@ -732,6 +806,19 @@ export interface BedrockAgentCoreControl {
|
|
|
732
806
|
options: __HttpHandlerOptions,
|
|
733
807
|
cb: (err: any, data?: DeleteCodeInterpreterCommandOutput) => void
|
|
734
808
|
): void;
|
|
809
|
+
deleteConfigurationBundle(
|
|
810
|
+
args: DeleteConfigurationBundleCommandInput,
|
|
811
|
+
options?: __HttpHandlerOptions
|
|
812
|
+
): Promise<DeleteConfigurationBundleCommandOutput>;
|
|
813
|
+
deleteConfigurationBundle(
|
|
814
|
+
args: DeleteConfigurationBundleCommandInput,
|
|
815
|
+
cb: (err: any, data?: DeleteConfigurationBundleCommandOutput) => void
|
|
816
|
+
): void;
|
|
817
|
+
deleteConfigurationBundle(
|
|
818
|
+
args: DeleteConfigurationBundleCommandInput,
|
|
819
|
+
options: __HttpHandlerOptions,
|
|
820
|
+
cb: (err: any, data?: DeleteConfigurationBundleCommandOutput) => void
|
|
821
|
+
): void;
|
|
735
822
|
deleteEvaluator(
|
|
736
823
|
args: DeleteEvaluatorCommandInput,
|
|
737
824
|
options?: __HttpHandlerOptions
|
|
@@ -758,6 +845,19 @@ export interface BedrockAgentCoreControl {
|
|
|
758
845
|
options: __HttpHandlerOptions,
|
|
759
846
|
cb: (err: any, data?: DeleteGatewayCommandOutput) => void
|
|
760
847
|
): void;
|
|
848
|
+
deleteGatewayRule(
|
|
849
|
+
args: DeleteGatewayRuleCommandInput,
|
|
850
|
+
options?: __HttpHandlerOptions
|
|
851
|
+
): Promise<DeleteGatewayRuleCommandOutput>;
|
|
852
|
+
deleteGatewayRule(
|
|
853
|
+
args: DeleteGatewayRuleCommandInput,
|
|
854
|
+
cb: (err: any, data?: DeleteGatewayRuleCommandOutput) => void
|
|
855
|
+
): void;
|
|
856
|
+
deleteGatewayRule(
|
|
857
|
+
args: DeleteGatewayRuleCommandInput,
|
|
858
|
+
options: __HttpHandlerOptions,
|
|
859
|
+
cb: (err: any, data?: DeleteGatewayRuleCommandOutput) => void
|
|
860
|
+
): void;
|
|
761
861
|
deleteGatewayTarget(
|
|
762
862
|
args: DeleteGatewayTargetCommandInput,
|
|
763
863
|
options?: __HttpHandlerOptions
|
|
@@ -979,6 +1079,32 @@ export interface BedrockAgentCoreControl {
|
|
|
979
1079
|
options: __HttpHandlerOptions,
|
|
980
1080
|
cb: (err: any, data?: GetCodeInterpreterCommandOutput) => void
|
|
981
1081
|
): void;
|
|
1082
|
+
getConfigurationBundle(
|
|
1083
|
+
args: GetConfigurationBundleCommandInput,
|
|
1084
|
+
options?: __HttpHandlerOptions
|
|
1085
|
+
): Promise<GetConfigurationBundleCommandOutput>;
|
|
1086
|
+
getConfigurationBundle(
|
|
1087
|
+
args: GetConfigurationBundleCommandInput,
|
|
1088
|
+
cb: (err: any, data?: GetConfigurationBundleCommandOutput) => void
|
|
1089
|
+
): void;
|
|
1090
|
+
getConfigurationBundle(
|
|
1091
|
+
args: GetConfigurationBundleCommandInput,
|
|
1092
|
+
options: __HttpHandlerOptions,
|
|
1093
|
+
cb: (err: any, data?: GetConfigurationBundleCommandOutput) => void
|
|
1094
|
+
): void;
|
|
1095
|
+
getConfigurationBundleVersion(
|
|
1096
|
+
args: GetConfigurationBundleVersionCommandInput,
|
|
1097
|
+
options?: __HttpHandlerOptions
|
|
1098
|
+
): Promise<GetConfigurationBundleVersionCommandOutput>;
|
|
1099
|
+
getConfigurationBundleVersion(
|
|
1100
|
+
args: GetConfigurationBundleVersionCommandInput,
|
|
1101
|
+
cb: (err: any, data?: GetConfigurationBundleVersionCommandOutput) => void
|
|
1102
|
+
): void;
|
|
1103
|
+
getConfigurationBundleVersion(
|
|
1104
|
+
args: GetConfigurationBundleVersionCommandInput,
|
|
1105
|
+
options: __HttpHandlerOptions,
|
|
1106
|
+
cb: (err: any, data?: GetConfigurationBundleVersionCommandOutput) => void
|
|
1107
|
+
): void;
|
|
982
1108
|
getEvaluator(
|
|
983
1109
|
args: GetEvaluatorCommandInput,
|
|
984
1110
|
options?: __HttpHandlerOptions
|
|
@@ -1005,6 +1131,19 @@ export interface BedrockAgentCoreControl {
|
|
|
1005
1131
|
options: __HttpHandlerOptions,
|
|
1006
1132
|
cb: (err: any, data?: GetGatewayCommandOutput) => void
|
|
1007
1133
|
): void;
|
|
1134
|
+
getGatewayRule(
|
|
1135
|
+
args: GetGatewayRuleCommandInput,
|
|
1136
|
+
options?: __HttpHandlerOptions
|
|
1137
|
+
): Promise<GetGatewayRuleCommandOutput>;
|
|
1138
|
+
getGatewayRule(
|
|
1139
|
+
args: GetGatewayRuleCommandInput,
|
|
1140
|
+
cb: (err: any, data?: GetGatewayRuleCommandOutput) => void
|
|
1141
|
+
): void;
|
|
1142
|
+
getGatewayRule(
|
|
1143
|
+
args: GetGatewayRuleCommandInput,
|
|
1144
|
+
options: __HttpHandlerOptions,
|
|
1145
|
+
cb: (err: any, data?: GetGatewayRuleCommandOutput) => void
|
|
1146
|
+
): void;
|
|
1008
1147
|
getGatewayTarget(
|
|
1009
1148
|
args: GetGatewayTargetCommandInput,
|
|
1010
1149
|
options?: __HttpHandlerOptions
|
|
@@ -1271,6 +1410,33 @@ export interface BedrockAgentCoreControl {
|
|
|
1271
1410
|
options: __HttpHandlerOptions,
|
|
1272
1411
|
cb: (err: any, data?: ListCodeInterpretersCommandOutput) => void
|
|
1273
1412
|
): void;
|
|
1413
|
+
listConfigurationBundles(): Promise<ListConfigurationBundlesCommandOutput>;
|
|
1414
|
+
listConfigurationBundles(
|
|
1415
|
+
args: ListConfigurationBundlesCommandInput,
|
|
1416
|
+
options?: __HttpHandlerOptions
|
|
1417
|
+
): Promise<ListConfigurationBundlesCommandOutput>;
|
|
1418
|
+
listConfigurationBundles(
|
|
1419
|
+
args: ListConfigurationBundlesCommandInput,
|
|
1420
|
+
cb: (err: any, data?: ListConfigurationBundlesCommandOutput) => void
|
|
1421
|
+
): void;
|
|
1422
|
+
listConfigurationBundles(
|
|
1423
|
+
args: ListConfigurationBundlesCommandInput,
|
|
1424
|
+
options: __HttpHandlerOptions,
|
|
1425
|
+
cb: (err: any, data?: ListConfigurationBundlesCommandOutput) => void
|
|
1426
|
+
): void;
|
|
1427
|
+
listConfigurationBundleVersions(
|
|
1428
|
+
args: ListConfigurationBundleVersionsCommandInput,
|
|
1429
|
+
options?: __HttpHandlerOptions
|
|
1430
|
+
): Promise<ListConfigurationBundleVersionsCommandOutput>;
|
|
1431
|
+
listConfigurationBundleVersions(
|
|
1432
|
+
args: ListConfigurationBundleVersionsCommandInput,
|
|
1433
|
+
cb: (err: any, data?: ListConfigurationBundleVersionsCommandOutput) => void
|
|
1434
|
+
): void;
|
|
1435
|
+
listConfigurationBundleVersions(
|
|
1436
|
+
args: ListConfigurationBundleVersionsCommandInput,
|
|
1437
|
+
options: __HttpHandlerOptions,
|
|
1438
|
+
cb: (err: any, data?: ListConfigurationBundleVersionsCommandOutput) => void
|
|
1439
|
+
): void;
|
|
1274
1440
|
listEvaluators(): Promise<ListEvaluatorsCommandOutput>;
|
|
1275
1441
|
listEvaluators(
|
|
1276
1442
|
args: ListEvaluatorsCommandInput,
|
|
@@ -1285,6 +1451,19 @@ export interface BedrockAgentCoreControl {
|
|
|
1285
1451
|
options: __HttpHandlerOptions,
|
|
1286
1452
|
cb: (err: any, data?: ListEvaluatorsCommandOutput) => void
|
|
1287
1453
|
): void;
|
|
1454
|
+
listGatewayRules(
|
|
1455
|
+
args: ListGatewayRulesCommandInput,
|
|
1456
|
+
options?: __HttpHandlerOptions
|
|
1457
|
+
): Promise<ListGatewayRulesCommandOutput>;
|
|
1458
|
+
listGatewayRules(
|
|
1459
|
+
args: ListGatewayRulesCommandInput,
|
|
1460
|
+
cb: (err: any, data?: ListGatewayRulesCommandOutput) => void
|
|
1461
|
+
): void;
|
|
1462
|
+
listGatewayRules(
|
|
1463
|
+
args: ListGatewayRulesCommandInput,
|
|
1464
|
+
options: __HttpHandlerOptions,
|
|
1465
|
+
cb: (err: any, data?: ListGatewayRulesCommandOutput) => void
|
|
1466
|
+
): void;
|
|
1288
1467
|
listGateways(): Promise<ListGatewaysCommandOutput>;
|
|
1289
1468
|
listGateways(
|
|
1290
1469
|
args: ListGatewaysCommandInput,
|
|
@@ -1605,6 +1784,19 @@ export interface BedrockAgentCoreControl {
|
|
|
1605
1784
|
options: __HttpHandlerOptions,
|
|
1606
1785
|
cb: (err: any, data?: UpdateApiKeyCredentialProviderCommandOutput) => void
|
|
1607
1786
|
): void;
|
|
1787
|
+
updateConfigurationBundle(
|
|
1788
|
+
args: UpdateConfigurationBundleCommandInput,
|
|
1789
|
+
options?: __HttpHandlerOptions
|
|
1790
|
+
): Promise<UpdateConfigurationBundleCommandOutput>;
|
|
1791
|
+
updateConfigurationBundle(
|
|
1792
|
+
args: UpdateConfigurationBundleCommandInput,
|
|
1793
|
+
cb: (err: any, data?: UpdateConfigurationBundleCommandOutput) => void
|
|
1794
|
+
): void;
|
|
1795
|
+
updateConfigurationBundle(
|
|
1796
|
+
args: UpdateConfigurationBundleCommandInput,
|
|
1797
|
+
options: __HttpHandlerOptions,
|
|
1798
|
+
cb: (err: any, data?: UpdateConfigurationBundleCommandOutput) => void
|
|
1799
|
+
): void;
|
|
1608
1800
|
updateEvaluator(
|
|
1609
1801
|
args: UpdateEvaluatorCommandInput,
|
|
1610
1802
|
options?: __HttpHandlerOptions
|
|
@@ -1631,6 +1823,19 @@ export interface BedrockAgentCoreControl {
|
|
|
1631
1823
|
options: __HttpHandlerOptions,
|
|
1632
1824
|
cb: (err: any, data?: UpdateGatewayCommandOutput) => void
|
|
1633
1825
|
): void;
|
|
1826
|
+
updateGatewayRule(
|
|
1827
|
+
args: UpdateGatewayRuleCommandInput,
|
|
1828
|
+
options?: __HttpHandlerOptions
|
|
1829
|
+
): Promise<UpdateGatewayRuleCommandOutput>;
|
|
1830
|
+
updateGatewayRule(
|
|
1831
|
+
args: UpdateGatewayRuleCommandInput,
|
|
1832
|
+
cb: (err: any, data?: UpdateGatewayRuleCommandOutput) => void
|
|
1833
|
+
): void;
|
|
1834
|
+
updateGatewayRule(
|
|
1835
|
+
args: UpdateGatewayRuleCommandInput,
|
|
1836
|
+
options: __HttpHandlerOptions,
|
|
1837
|
+
cb: (err: any, data?: UpdateGatewayRuleCommandOutput) => void
|
|
1838
|
+
): void;
|
|
1634
1839
|
updateGatewayTarget(
|
|
1635
1840
|
args: UpdateGatewayTargetCommandInput,
|
|
1636
1841
|
options?: __HttpHandlerOptions
|
|
@@ -1823,6 +2028,20 @@ export interface BedrockAgentCoreControl {
|
|
|
1823
2028
|
Exclude<keyof PaginationConfiguration, "client">
|
|
1824
2029
|
>
|
|
1825
2030
|
): Paginator<ListCodeInterpretersCommandOutput>;
|
|
2031
|
+
paginateListConfigurationBundles(
|
|
2032
|
+
args?: ListConfigurationBundlesCommandInput,
|
|
2033
|
+
paginationConfig?: Pick<
|
|
2034
|
+
PaginationConfiguration,
|
|
2035
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2036
|
+
>
|
|
2037
|
+
): Paginator<ListConfigurationBundlesCommandOutput>;
|
|
2038
|
+
paginateListConfigurationBundleVersions(
|
|
2039
|
+
args: ListConfigurationBundleVersionsCommandInput,
|
|
2040
|
+
paginationConfig?: Pick<
|
|
2041
|
+
PaginationConfiguration,
|
|
2042
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2043
|
+
>
|
|
2044
|
+
): Paginator<ListConfigurationBundleVersionsCommandOutput>;
|
|
1826
2045
|
paginateListEvaluators(
|
|
1827
2046
|
args?: ListEvaluatorsCommandInput,
|
|
1828
2047
|
paginationConfig?: Pick<
|
|
@@ -1830,6 +2049,13 @@ export interface BedrockAgentCoreControl {
|
|
|
1830
2049
|
Exclude<keyof PaginationConfiguration, "client">
|
|
1831
2050
|
>
|
|
1832
2051
|
): Paginator<ListEvaluatorsCommandOutput>;
|
|
2052
|
+
paginateListGatewayRules(
|
|
2053
|
+
args: ListGatewayRulesCommandInput,
|
|
2054
|
+
paginationConfig?: Pick<
|
|
2055
|
+
PaginationConfiguration,
|
|
2056
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2057
|
+
>
|
|
2058
|
+
): Paginator<ListGatewayRulesCommandOutput>;
|
|
1833
2059
|
paginateListGateways(
|
|
1834
2060
|
args?: ListGatewaysCommandInput,
|
|
1835
2061
|
paginationConfig?: Pick<
|