@aws-sdk/client-bedrock-agentcore-control 3.1027.0 → 3.1028.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.
Files changed (73) hide show
  1. package/README.md +84 -0
  2. package/dist-cjs/index.js +223 -0
  3. package/dist-cjs/schemas/schemas_0.js +502 -56
  4. package/dist-es/BedrockAgentCoreControl.js +28 -0
  5. package/dist-es/commands/CreateRegistryCommand.js +16 -0
  6. package/dist-es/commands/CreateRegistryRecordCommand.js +16 -0
  7. package/dist-es/commands/DeleteRegistryCommand.js +16 -0
  8. package/dist-es/commands/DeleteRegistryRecordCommand.js +16 -0
  9. package/dist-es/commands/GetRegistryCommand.js +16 -0
  10. package/dist-es/commands/GetRegistryRecordCommand.js +16 -0
  11. package/dist-es/commands/ListRegistriesCommand.js +16 -0
  12. package/dist-es/commands/ListRegistryRecordsCommand.js +16 -0
  13. package/dist-es/commands/SubmitRegistryRecordForApprovalCommand.js +16 -0
  14. package/dist-es/commands/UpdateRegistryCommand.js +16 -0
  15. package/dist-es/commands/UpdateRegistryRecordCommand.js +16 -0
  16. package/dist-es/commands/UpdateRegistryRecordStatusCommand.js +16 -0
  17. package/dist-es/commands/index.js +12 -0
  18. package/dist-es/models/enums.js +40 -0
  19. package/dist-es/pagination/ListRegistriesPaginator.js +4 -0
  20. package/dist-es/pagination/ListRegistryRecordsPaginator.js +4 -0
  21. package/dist-es/pagination/index.js +2 -0
  22. package/dist-es/schemas/schemas_0.js +491 -46
  23. package/dist-types/BedrockAgentCoreControl.d.ts +99 -0
  24. package/dist-types/BedrockAgentCoreControlClient.d.ts +14 -2
  25. package/dist-types/commands/CreatePolicyEngineCommand.d.ts +1 -2
  26. package/dist-types/commands/CreateRegistryCommand.d.ts +127 -0
  27. package/dist-types/commands/CreateRegistryRecordCommand.d.ts +159 -0
  28. package/dist-types/commands/DeleteRegistryCommand.d.ts +92 -0
  29. package/dist-types/commands/DeleteRegistryRecordCommand.d.ts +91 -0
  30. package/dist-types/commands/GetRegistryCommand.d.ts +129 -0
  31. package/dist-types/commands/GetRegistryRecordCommand.d.ts +161 -0
  32. package/dist-types/commands/ListOnlineEvaluationConfigsCommand.d.ts +2 -1
  33. package/dist-types/commands/ListRegistriesCommand.d.ts +101 -0
  34. package/dist-types/commands/ListRegistryRecordsCommand.d.ts +111 -0
  35. package/dist-types/commands/SubmitRegistryRecordForApprovalCommand.d.ts +97 -0
  36. package/dist-types/commands/UpdateOnlineEvaluationConfigCommand.d.ts +1 -1
  37. package/dist-types/commands/UpdateRegistryCommand.d.ts +175 -0
  38. package/dist-types/commands/UpdateRegistryRecordCommand.d.ts +248 -0
  39. package/dist-types/commands/UpdateRegistryRecordStatusCommand.d.ts +100 -0
  40. package/dist-types/commands/index.d.ts +12 -0
  41. package/dist-types/models/enums.d.ts +96 -0
  42. package/dist-types/models/models_0.d.ts +70 -176
  43. package/dist-types/models/models_1.d.ts +1438 -6
  44. package/dist-types/pagination/ListRegistriesPaginator.d.ts +7 -0
  45. package/dist-types/pagination/ListRegistryRecordsPaginator.d.ts +7 -0
  46. package/dist-types/pagination/index.d.ts +2 -0
  47. package/dist-types/schemas/schemas_0.d.ts +71 -0
  48. package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +219 -0
  49. package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +72 -0
  50. package/dist-types/ts3.4/commands/CreatePolicyEngineCommand.d.ts +4 -2
  51. package/dist-types/ts3.4/commands/CreateRegistryCommand.d.ts +50 -0
  52. package/dist-types/ts3.4/commands/CreateRegistryRecordCommand.d.ts +51 -0
  53. package/dist-types/ts3.4/commands/DeleteRegistryCommand.d.ts +50 -0
  54. package/dist-types/ts3.4/commands/DeleteRegistryRecordCommand.d.ts +51 -0
  55. package/dist-types/ts3.4/commands/GetRegistryCommand.d.ts +47 -0
  56. package/dist-types/ts3.4/commands/GetRegistryRecordCommand.d.ts +51 -0
  57. package/dist-types/ts3.4/commands/ListOnlineEvaluationConfigsCommand.d.ts +2 -4
  58. package/dist-types/ts3.4/commands/ListRegistriesCommand.d.ts +50 -0
  59. package/dist-types/ts3.4/commands/ListRegistryRecordsCommand.d.ts +51 -0
  60. package/dist-types/ts3.4/commands/SubmitRegistryRecordForApprovalCommand.d.ts +51 -0
  61. package/dist-types/ts3.4/commands/UpdateOnlineEvaluationConfigCommand.d.ts +1 -1
  62. package/dist-types/ts3.4/commands/UpdateRegistryCommand.d.ts +50 -0
  63. package/dist-types/ts3.4/commands/UpdateRegistryRecordCommand.d.ts +51 -0
  64. package/dist-types/ts3.4/commands/UpdateRegistryRecordStatusCommand.d.ts +51 -0
  65. package/dist-types/ts3.4/commands/index.d.ts +12 -0
  66. package/dist-types/ts3.4/models/enums.d.ts +54 -0
  67. package/dist-types/ts3.4/models/models_0.d.ts +18 -40
  68. package/dist-types/ts3.4/models/models_1.d.ts +378 -0
  69. package/dist-types/ts3.4/pagination/ListRegistriesPaginator.d.ts +11 -0
  70. package/dist-types/ts3.4/pagination/ListRegistryRecordsPaginator.d.ts +11 -0
  71. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  72. package/dist-types/ts3.4/schemas/schemas_0.d.ts +71 -0
  73. package/package.json +1 -1
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ListRegistriesCommandInput, ListRegistriesCommandOutput } from "../commands/ListRegistriesCommand";
3
+ import type { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListRegistries: (config: BedrockAgentCoreControlPaginationConfiguration, input: ListRegistriesCommandInput, ...rest: any[]) => Paginator<ListRegistriesCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ListRegistryRecordsCommandInput, ListRegistryRecordsCommandOutput } from "../commands/ListRegistryRecordsCommand";
3
+ import type { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListRegistryRecords: (config: BedrockAgentCoreControlPaginationConfiguration, input: ListRegistryRecordsCommandInput, ...rest: any[]) => Paginator<ListRegistryRecordsCommandOutput>;
@@ -16,4 +16,6 @@ export * from "./ListPoliciesPaginator";
16
16
  export * from "./ListPolicyEnginesPaginator";
17
17
  export * from "./ListPolicyGenerationAssetsPaginator";
18
18
  export * from "./ListPolicyGenerationsPaginator";
19
+ export * from "./ListRegistriesPaginator";
20
+ export * from "./ListRegistryRecordsPaginator";
19
21
  export * from "./ListWorkloadIdentitiesPaginator";
@@ -21,13 +21,17 @@ export declare var ValidationException$: StaticErrorSchema;
21
21
  *
22
22
  */
23
23
  export declare const errorTypeRegistries: TypeRegistry[];
24
+ export declare var A2aDescriptor$: StaticStructureSchema;
25
+ export declare var AgentCardDefinition$: StaticStructureSchema;
24
26
  export declare var AgentRuntime$: StaticStructureSchema;
25
27
  export declare var AgentRuntimeEndpoint$: StaticStructureSchema;
28
+ export declare var AgentSkillsDescriptor$: StaticStructureSchema;
26
29
  export declare var ApiGatewayTargetConfiguration$: StaticStructureSchema;
27
30
  export declare var ApiGatewayToolConfiguration$: StaticStructureSchema;
28
31
  export declare var ApiGatewayToolFilter$: StaticStructureSchema;
29
32
  export declare var ApiGatewayToolOverride$: StaticStructureSchema;
30
33
  export declare var ApiKeyCredentialProviderItem$: StaticStructureSchema;
34
+ export declare var ApprovalConfiguration$: StaticStructureSchema;
31
35
  export declare var AtlassianOauth2ProviderConfigInput$: StaticStructureSchema;
32
36
  export declare var AtlassianOauth2ProviderConfigOutput$: StaticStructureSchema;
33
37
  export declare var AuthorizingClaimMatchValueType$: StaticStructureSchema;
@@ -76,10 +80,15 @@ export declare var CreatePolicyEngineRequest$: StaticStructureSchema;
76
80
  export declare var CreatePolicyEngineResponse$: StaticStructureSchema;
77
81
  export declare var CreatePolicyRequest$: StaticStructureSchema;
78
82
  export declare var CreatePolicyResponse$: StaticStructureSchema;
83
+ export declare var CreateRegistryRecordRequest$: StaticStructureSchema;
84
+ export declare var CreateRegistryRecordResponse$: StaticStructureSchema;
85
+ export declare var CreateRegistryRequest$: StaticStructureSchema;
86
+ export declare var CreateRegistryResponse$: StaticStructureSchema;
79
87
  export declare var CreateWorkloadIdentityRequest$: StaticStructureSchema;
80
88
  export declare var CreateWorkloadIdentityResponse$: StaticStructureSchema;
81
89
  export declare var CredentialProviderConfiguration$: StaticStructureSchema;
82
90
  export declare var CustomClaimValidationType$: StaticStructureSchema;
91
+ export declare var CustomDescriptor$: StaticStructureSchema;
83
92
  export declare var CustomJWTAuthorizerConfiguration$: StaticStructureSchema;
84
93
  export declare var CustomMemoryStrategyInput$: StaticStructureSchema;
85
94
  export declare var CustomOauth2ProviderConfigInput$: StaticStructureSchema;
@@ -113,10 +122,15 @@ export declare var DeletePolicyEngineRequest$: StaticStructureSchema;
113
122
  export declare var DeletePolicyEngineResponse$: StaticStructureSchema;
114
123
  export declare var DeletePolicyRequest$: StaticStructureSchema;
115
124
  export declare var DeletePolicyResponse$: StaticStructureSchema;
125
+ export declare var DeleteRegistryRecordRequest$: StaticStructureSchema;
126
+ export declare var DeleteRegistryRecordResponse$: StaticStructureSchema;
127
+ export declare var DeleteRegistryRequest$: StaticStructureSchema;
128
+ export declare var DeleteRegistryResponse$: StaticStructureSchema;
116
129
  export declare var DeleteResourcePolicyRequest$: StaticStructureSchema;
117
130
  export declare var DeleteResourcePolicyResponse$: StaticStructureSchema;
118
131
  export declare var DeleteWorkloadIdentityRequest$: StaticStructureSchema;
119
132
  export declare var DeleteWorkloadIdentityResponse$: StaticStructureSchema;
133
+ export declare var Descriptors$: StaticStructureSchema;
120
134
  export declare var EpisodicConsolidationOverride$: StaticStructureSchema;
121
135
  export declare var EpisodicExtractionOverride$: StaticStructureSchema;
122
136
  export declare var EpisodicMemoryStrategyInput$: StaticStructureSchema;
@@ -130,6 +144,7 @@ export declare var EpisodicReflectionOverride$: StaticStructureSchema;
130
144
  export declare var EvaluatorSummary$: StaticStructureSchema;
131
145
  export declare var Filter$: StaticStructureSchema;
132
146
  export declare var Finding$: StaticStructureSchema;
147
+ export declare var FromUrlSynchronizationConfiguration$: StaticStructureSchema;
133
148
  export declare var GatewayApiKeyCredentialProvider$: StaticStructureSchema;
134
149
  export declare var GatewayInterceptorConfiguration$: StaticStructureSchema;
135
150
  export declare var GatewayPolicyEngineConfiguration$: StaticStructureSchema;
@@ -165,6 +180,10 @@ export declare var GetPolicyGenerationRequest$: StaticStructureSchema;
165
180
  export declare var GetPolicyGenerationResponse$: StaticStructureSchema;
166
181
  export declare var GetPolicyRequest$: StaticStructureSchema;
167
182
  export declare var GetPolicyResponse$: StaticStructureSchema;
183
+ export declare var GetRegistryRecordRequest$: StaticStructureSchema;
184
+ export declare var GetRegistryRecordResponse$: StaticStructureSchema;
185
+ export declare var GetRegistryRequest$: StaticStructureSchema;
186
+ export declare var GetRegistryResponse$: StaticStructureSchema;
168
187
  export declare var GetResourcePolicyRequest$: StaticStructureSchema;
169
188
  export declare var GetResourcePolicyResponse$: StaticStructureSchema;
170
189
  export declare var GetTokenVaultRequest$: StaticStructureSchema;
@@ -223,6 +242,10 @@ export declare var ListPolicyGenerationAssetsRequest$: StaticStructureSchema;
223
242
  export declare var ListPolicyGenerationAssetsResponse$: StaticStructureSchema;
224
243
  export declare var ListPolicyGenerationsRequest$: StaticStructureSchema;
225
244
  export declare var ListPolicyGenerationsResponse$: StaticStructureSchema;
245
+ export declare var ListRegistriesRequest$: StaticStructureSchema;
246
+ export declare var ListRegistriesResponse$: StaticStructureSchema;
247
+ export declare var ListRegistryRecordsRequest$: StaticStructureSchema;
248
+ export declare var ListRegistryRecordsResponse$: StaticStructureSchema;
226
249
  export declare var ListTagsForResourceRequest$: StaticStructureSchema;
227
250
  export declare var ListTagsForResourceResponse$: StaticStructureSchema;
228
251
  export declare var ListWorkloadIdentitiesRequest$: StaticStructureSchema;
@@ -230,6 +253,7 @@ export declare var ListWorkloadIdentitiesResponse$: StaticStructureSchema;
230
253
  export declare var LlmAsAJudgeEvaluatorConfig$: StaticStructureSchema;
231
254
  export declare var ManagedLatticeResource$: StaticStructureSchema;
232
255
  export declare var ManagedResourceDetails$: StaticStructureSchema;
256
+ export declare var McpDescriptor$: StaticStructureSchema;
233
257
  export declare var MCPGatewayConfiguration$: StaticStructureSchema;
234
258
  export declare var McpLambdaTargetConfiguration$: StaticStructureSchema;
235
259
  export declare var McpServerTargetConfiguration$: StaticStructureSchema;
@@ -263,6 +287,11 @@ export declare var ProtocolConfiguration$: StaticStructureSchema;
263
287
  export declare var PutResourcePolicyRequest$: StaticStructureSchema;
264
288
  export declare var PutResourcePolicyResponse$: StaticStructureSchema;
265
289
  export declare var RecordingConfig$: StaticStructureSchema;
290
+ export declare var RegistryRecordCredentialProviderConfiguration$: StaticStructureSchema;
291
+ export declare var RegistryRecordIamCredentialProvider$: StaticStructureSchema;
292
+ export declare var RegistryRecordOAuthCredentialProvider$: StaticStructureSchema;
293
+ export declare var RegistryRecordSummary$: StaticStructureSchema;
294
+ export declare var RegistrySummary$: StaticStructureSchema;
266
295
  export declare var Rule$: StaticStructureSchema;
267
296
  export declare var RuntimeMetadataConfiguration$: StaticStructureSchema;
268
297
  export declare var S3Configuration$: StaticStructureSchema;
@@ -281,20 +310,26 @@ export declare var SemanticMemoryStrategyInput$: StaticStructureSchema;
281
310
  export declare var SemanticOverrideConfigurationInput$: StaticStructureSchema;
282
311
  export declare var SemanticOverrideConsolidationConfigurationInput$: StaticStructureSchema;
283
312
  export declare var SemanticOverrideExtractionConfigurationInput$: StaticStructureSchema;
313
+ export declare var ServerDefinition$: StaticStructureSchema;
284
314
  export declare var SessionConfig$: StaticStructureSchema;
285
315
  export declare var SessionStorageConfiguration$: StaticStructureSchema;
286
316
  export declare var SetTokenVaultCMKRequest$: StaticStructureSchema;
287
317
  export declare var SetTokenVaultCMKResponse$: StaticStructureSchema;
318
+ export declare var SkillDefinition$: StaticStructureSchema;
319
+ export declare var SkillMdDefinition$: StaticStructureSchema;
288
320
  export declare var SlackOauth2ProviderConfigInput$: StaticStructureSchema;
289
321
  export declare var SlackOauth2ProviderConfigOutput$: StaticStructureSchema;
290
322
  export declare var StartPolicyGenerationRequest$: StaticStructureSchema;
291
323
  export declare var StartPolicyGenerationResponse$: StaticStructureSchema;
292
324
  export declare var StrategyConfiguration$: StaticStructureSchema;
293
325
  export declare var StreamDeliveryResources$: StaticStructureSchema;
326
+ export declare var SubmitRegistryRecordForApprovalRequest$: StaticStructureSchema;
327
+ export declare var SubmitRegistryRecordForApprovalResponse$: StaticStructureSchema;
294
328
  export declare var SummaryConsolidationOverride$: StaticStructureSchema;
295
329
  export declare var SummaryMemoryStrategyInput$: StaticStructureSchema;
296
330
  export declare var SummaryOverrideConfigurationInput$: StaticStructureSchema;
297
331
  export declare var SummaryOverrideConsolidationConfigurationInput$: StaticStructureSchema;
332
+ export declare var SynchronizationConfiguration$: StaticStructureSchema;
298
333
  export declare var SynchronizeGatewayTargetsRequest$: StaticStructureSchema;
299
334
  export declare var SynchronizeGatewayTargetsResponse$: StaticStructureSchema;
300
335
  export declare var TagResourceRequest$: StaticStructureSchema;
@@ -305,6 +340,7 @@ export declare var TimeBasedTriggerInput$: StaticStructureSchema;
305
340
  export declare var TokenBasedTrigger$: StaticStructureSchema;
306
341
  export declare var TokenBasedTriggerInput$: StaticStructureSchema;
307
342
  export declare var ToolDefinition$: StaticStructureSchema;
343
+ export declare var ToolsDefinition$: StaticStructureSchema;
308
344
  export declare var UntagResourceRequest$: StaticStructureSchema;
309
345
  export declare var UntagResourceResponse$: StaticStructureSchema;
310
346
  export declare var UpdateAgentRuntimeEndpointRequest$: StaticStructureSchema;
@@ -313,7 +349,23 @@ export declare var UpdateAgentRuntimeRequest$: StaticStructureSchema;
313
349
  export declare var UpdateAgentRuntimeResponse$: StaticStructureSchema;
314
350
  export declare var UpdateApiKeyCredentialProviderRequest$: StaticStructureSchema;
315
351
  export declare var UpdateApiKeyCredentialProviderResponse$: StaticStructureSchema;
352
+ export declare var UpdatedA2aDescriptor$: StaticStructureSchema;
353
+ export declare var UpdatedAgentSkillsDescriptor$: StaticStructureSchema;
354
+ export declare var UpdatedAgentSkillsDescriptorFields$: StaticStructureSchema;
355
+ export declare var UpdatedApprovalConfiguration$: StaticStructureSchema;
356
+ export declare var UpdatedAuthorizerConfiguration$: StaticStructureSchema;
357
+ export declare var UpdatedCustomDescriptor$: StaticStructureSchema;
316
358
  export declare var UpdatedDescription$: StaticStructureSchema;
359
+ export declare var UpdatedDescriptors$: StaticStructureSchema;
360
+ export declare var UpdatedDescriptorsUnion$: StaticStructureSchema;
361
+ export declare var UpdatedMcpDescriptor$: StaticStructureSchema;
362
+ export declare var UpdatedMcpDescriptorFields$: StaticStructureSchema;
363
+ export declare var UpdatedServerDefinition$: StaticStructureSchema;
364
+ export declare var UpdatedSkillDefinition$: StaticStructureSchema;
365
+ export declare var UpdatedSkillMdDefinition$: StaticStructureSchema;
366
+ export declare var UpdatedSynchronizationConfiguration$: StaticStructureSchema;
367
+ export declare var UpdatedSynchronizationType$: StaticStructureSchema;
368
+ export declare var UpdatedToolsDefinition$: StaticStructureSchema;
317
369
  export declare var UpdateEvaluatorRequest$: StaticStructureSchema;
318
370
  export declare var UpdateEvaluatorResponse$: StaticStructureSchema;
319
371
  export declare var UpdateGatewayRequest$: StaticStructureSchema;
@@ -330,6 +382,12 @@ export declare var UpdatePolicyEngineRequest$: StaticStructureSchema;
330
382
  export declare var UpdatePolicyEngineResponse$: StaticStructureSchema;
331
383
  export declare var UpdatePolicyRequest$: StaticStructureSchema;
332
384
  export declare var UpdatePolicyResponse$: StaticStructureSchema;
385
+ export declare var UpdateRegistryRecordRequest$: StaticStructureSchema;
386
+ export declare var UpdateRegistryRecordResponse$: StaticStructureSchema;
387
+ export declare var UpdateRegistryRecordStatusRequest$: StaticStructureSchema;
388
+ export declare var UpdateRegistryRecordStatusResponse$: StaticStructureSchema;
389
+ export declare var UpdateRegistryRequest$: StaticStructureSchema;
390
+ export declare var UpdateRegistryResponse$: StaticStructureSchema;
333
391
  export declare var UpdateWorkloadIdentityRequest$: StaticStructureSchema;
334
392
  export declare var UpdateWorkloadIdentityResponse$: StaticStructureSchema;
335
393
  export declare var UserPreferenceConsolidationOverride$: StaticStructureSchema;
@@ -382,6 +440,7 @@ export declare var PolicyDefinition$: StaticUnionSchema;
382
440
  export declare var PrivateEndpoint$: StaticUnionSchema;
383
441
  export declare var RatingScale$: StaticUnionSchema;
384
442
  export declare var ReflectionConfiguration$: StaticUnionSchema;
443
+ export declare var RegistryRecordCredentialProviderUnion$: StaticUnionSchema;
385
444
  export declare var RequestHeaderConfiguration$: StaticUnionSchema;
386
445
  export declare var Resource$: StaticUnionSchema;
387
446
  export declare var ResourceLocation$: StaticUnionSchema;
@@ -405,6 +464,8 @@ export declare var CreateOauth2CredentialProvider$: StaticOperationSchema;
405
464
  export declare var CreateOnlineEvaluationConfig$: StaticOperationSchema;
406
465
  export declare var CreatePolicy$: StaticOperationSchema;
407
466
  export declare var CreatePolicyEngine$: StaticOperationSchema;
467
+ export declare var CreateRegistry$: StaticOperationSchema;
468
+ export declare var CreateRegistryRecord$: StaticOperationSchema;
408
469
  export declare var CreateWorkloadIdentity$: StaticOperationSchema;
409
470
  export declare var DeleteAgentRuntime$: StaticOperationSchema;
410
471
  export declare var DeleteAgentRuntimeEndpoint$: StaticOperationSchema;
@@ -420,6 +481,8 @@ export declare var DeleteOauth2CredentialProvider$: StaticOperationSchema;
420
481
  export declare var DeleteOnlineEvaluationConfig$: StaticOperationSchema;
421
482
  export declare var DeletePolicy$: StaticOperationSchema;
422
483
  export declare var DeletePolicyEngine$: StaticOperationSchema;
484
+ export declare var DeleteRegistry$: StaticOperationSchema;
485
+ export declare var DeleteRegistryRecord$: StaticOperationSchema;
423
486
  export declare var DeleteResourcePolicy$: StaticOperationSchema;
424
487
  export declare var DeleteWorkloadIdentity$: StaticOperationSchema;
425
488
  export declare var GetAgentRuntime$: StaticOperationSchema;
@@ -437,6 +500,8 @@ export declare var GetOnlineEvaluationConfig$: StaticOperationSchema;
437
500
  export declare var GetPolicy$: StaticOperationSchema;
438
501
  export declare var GetPolicyEngine$: StaticOperationSchema;
439
502
  export declare var GetPolicyGeneration$: StaticOperationSchema;
503
+ export declare var GetRegistry$: StaticOperationSchema;
504
+ export declare var GetRegistryRecord$: StaticOperationSchema;
440
505
  export declare var GetResourcePolicy$: StaticOperationSchema;
441
506
  export declare var GetTokenVault$: StaticOperationSchema;
442
507
  export declare var GetWorkloadIdentity$: StaticOperationSchema;
@@ -457,11 +522,14 @@ export declare var ListPolicies$: StaticOperationSchema;
457
522
  export declare var ListPolicyEngines$: StaticOperationSchema;
458
523
  export declare var ListPolicyGenerationAssets$: StaticOperationSchema;
459
524
  export declare var ListPolicyGenerations$: StaticOperationSchema;
525
+ export declare var ListRegistries$: StaticOperationSchema;
526
+ export declare var ListRegistryRecords$: StaticOperationSchema;
460
527
  export declare var ListTagsForResource$: StaticOperationSchema;
461
528
  export declare var ListWorkloadIdentities$: StaticOperationSchema;
462
529
  export declare var PutResourcePolicy$: StaticOperationSchema;
463
530
  export declare var SetTokenVaultCMK$: StaticOperationSchema;
464
531
  export declare var StartPolicyGeneration$: StaticOperationSchema;
532
+ export declare var SubmitRegistryRecordForApproval$: StaticOperationSchema;
465
533
  export declare var SynchronizeGatewayTargets$: StaticOperationSchema;
466
534
  export declare var TagResource$: StaticOperationSchema;
467
535
  export declare var UntagResource$: StaticOperationSchema;
@@ -476,4 +544,7 @@ export declare var UpdateOauth2CredentialProvider$: StaticOperationSchema;
476
544
  export declare var UpdateOnlineEvaluationConfig$: StaticOperationSchema;
477
545
  export declare var UpdatePolicy$: StaticOperationSchema;
478
546
  export declare var UpdatePolicyEngine$: StaticOperationSchema;
547
+ export declare var UpdateRegistry$: StaticOperationSchema;
548
+ export declare var UpdateRegistryRecord$: StaticOperationSchema;
549
+ export declare var UpdateRegistryRecordStatus$: StaticOperationSchema;
479
550
  export declare var UpdateWorkloadIdentity$: StaticOperationSchema;
@@ -62,6 +62,14 @@ import {
62
62
  CreatePolicyEngineCommandInput,
63
63
  CreatePolicyEngineCommandOutput,
64
64
  } from "./commands/CreatePolicyEngineCommand";
65
+ import {
66
+ CreateRegistryCommandInput,
67
+ CreateRegistryCommandOutput,
68
+ } from "./commands/CreateRegistryCommand";
69
+ import {
70
+ CreateRegistryRecordCommandInput,
71
+ CreateRegistryRecordCommandOutput,
72
+ } from "./commands/CreateRegistryRecordCommand";
65
73
  import {
66
74
  CreateWorkloadIdentityCommandInput,
67
75
  CreateWorkloadIdentityCommandOutput,
@@ -122,6 +130,14 @@ import {
122
130
  DeletePolicyEngineCommandInput,
123
131
  DeletePolicyEngineCommandOutput,
124
132
  } from "./commands/DeletePolicyEngineCommand";
133
+ import {
134
+ DeleteRegistryCommandInput,
135
+ DeleteRegistryCommandOutput,
136
+ } from "./commands/DeleteRegistryCommand";
137
+ import {
138
+ DeleteRegistryRecordCommandInput,
139
+ DeleteRegistryRecordCommandOutput,
140
+ } from "./commands/DeleteRegistryRecordCommand";
125
141
  import {
126
142
  DeleteResourcePolicyCommandInput,
127
143
  DeleteResourcePolicyCommandOutput,
@@ -190,6 +206,14 @@ import {
190
206
  GetPolicyGenerationCommandInput,
191
207
  GetPolicyGenerationCommandOutput,
192
208
  } from "./commands/GetPolicyGenerationCommand";
209
+ import {
210
+ GetRegistryCommandInput,
211
+ GetRegistryCommandOutput,
212
+ } from "./commands/GetRegistryCommand";
213
+ import {
214
+ GetRegistryRecordCommandInput,
215
+ GetRegistryRecordCommandOutput,
216
+ } from "./commands/GetRegistryRecordCommand";
193
217
  import {
194
218
  GetResourcePolicyCommandInput,
195
219
  GetResourcePolicyCommandOutput,
@@ -270,6 +294,14 @@ import {
270
294
  ListPolicyGenerationsCommandInput,
271
295
  ListPolicyGenerationsCommandOutput,
272
296
  } from "./commands/ListPolicyGenerationsCommand";
297
+ import {
298
+ ListRegistriesCommandInput,
299
+ ListRegistriesCommandOutput,
300
+ } from "./commands/ListRegistriesCommand";
301
+ import {
302
+ ListRegistryRecordsCommandInput,
303
+ ListRegistryRecordsCommandOutput,
304
+ } from "./commands/ListRegistryRecordsCommand";
273
305
  import {
274
306
  ListTagsForResourceCommandInput,
275
307
  ListTagsForResourceCommandOutput,
@@ -290,6 +322,10 @@ import {
290
322
  StartPolicyGenerationCommandInput,
291
323
  StartPolicyGenerationCommandOutput,
292
324
  } from "./commands/StartPolicyGenerationCommand";
325
+ import {
326
+ SubmitRegistryRecordForApprovalCommandInput,
327
+ SubmitRegistryRecordForApprovalCommandOutput,
328
+ } from "./commands/SubmitRegistryRecordForApprovalCommand";
293
329
  import {
294
330
  SynchronizeGatewayTargetsCommandInput,
295
331
  SynchronizeGatewayTargetsCommandOutput,
@@ -346,6 +382,18 @@ import {
346
382
  UpdatePolicyEngineCommandInput,
347
383
  UpdatePolicyEngineCommandOutput,
348
384
  } from "./commands/UpdatePolicyEngineCommand";
385
+ import {
386
+ UpdateRegistryCommandInput,
387
+ UpdateRegistryCommandOutput,
388
+ } from "./commands/UpdateRegistryCommand";
389
+ import {
390
+ UpdateRegistryRecordCommandInput,
391
+ UpdateRegistryRecordCommandOutput,
392
+ } from "./commands/UpdateRegistryRecordCommand";
393
+ import {
394
+ UpdateRegistryRecordStatusCommandInput,
395
+ UpdateRegistryRecordStatusCommandOutput,
396
+ } from "./commands/UpdateRegistryRecordStatusCommand";
349
397
  import {
350
398
  UpdateWorkloadIdentityCommandInput,
351
399
  UpdateWorkloadIdentityCommandOutput,
@@ -533,6 +581,32 @@ export interface BedrockAgentCoreControl {
533
581
  options: __HttpHandlerOptions,
534
582
  cb: (err: any, data?: CreatePolicyEngineCommandOutput) => void
535
583
  ): void;
584
+ createRegistry(
585
+ args: CreateRegistryCommandInput,
586
+ options?: __HttpHandlerOptions
587
+ ): Promise<CreateRegistryCommandOutput>;
588
+ createRegistry(
589
+ args: CreateRegistryCommandInput,
590
+ cb: (err: any, data?: CreateRegistryCommandOutput) => void
591
+ ): void;
592
+ createRegistry(
593
+ args: CreateRegistryCommandInput,
594
+ options: __HttpHandlerOptions,
595
+ cb: (err: any, data?: CreateRegistryCommandOutput) => void
596
+ ): void;
597
+ createRegistryRecord(
598
+ args: CreateRegistryRecordCommandInput,
599
+ options?: __HttpHandlerOptions
600
+ ): Promise<CreateRegistryRecordCommandOutput>;
601
+ createRegistryRecord(
602
+ args: CreateRegistryRecordCommandInput,
603
+ cb: (err: any, data?: CreateRegistryRecordCommandOutput) => void
604
+ ): void;
605
+ createRegistryRecord(
606
+ args: CreateRegistryRecordCommandInput,
607
+ options: __HttpHandlerOptions,
608
+ cb: (err: any, data?: CreateRegistryRecordCommandOutput) => void
609
+ ): void;
536
610
  createWorkloadIdentity(
537
611
  args: CreateWorkloadIdentityCommandInput,
538
612
  options?: __HttpHandlerOptions
@@ -728,6 +802,32 @@ export interface BedrockAgentCoreControl {
728
802
  options: __HttpHandlerOptions,
729
803
  cb: (err: any, data?: DeletePolicyEngineCommandOutput) => void
730
804
  ): void;
805
+ deleteRegistry(
806
+ args: DeleteRegistryCommandInput,
807
+ options?: __HttpHandlerOptions
808
+ ): Promise<DeleteRegistryCommandOutput>;
809
+ deleteRegistry(
810
+ args: DeleteRegistryCommandInput,
811
+ cb: (err: any, data?: DeleteRegistryCommandOutput) => void
812
+ ): void;
813
+ deleteRegistry(
814
+ args: DeleteRegistryCommandInput,
815
+ options: __HttpHandlerOptions,
816
+ cb: (err: any, data?: DeleteRegistryCommandOutput) => void
817
+ ): void;
818
+ deleteRegistryRecord(
819
+ args: DeleteRegistryRecordCommandInput,
820
+ options?: __HttpHandlerOptions
821
+ ): Promise<DeleteRegistryRecordCommandOutput>;
822
+ deleteRegistryRecord(
823
+ args: DeleteRegistryRecordCommandInput,
824
+ cb: (err: any, data?: DeleteRegistryRecordCommandOutput) => void
825
+ ): void;
826
+ deleteRegistryRecord(
827
+ args: DeleteRegistryRecordCommandInput,
828
+ options: __HttpHandlerOptions,
829
+ cb: (err: any, data?: DeleteRegistryRecordCommandOutput) => void
830
+ ): void;
731
831
  deleteResourcePolicy(
732
832
  args: DeleteResourcePolicyCommandInput,
733
833
  options?: __HttpHandlerOptions
@@ -949,6 +1049,32 @@ export interface BedrockAgentCoreControl {
949
1049
  options: __HttpHandlerOptions,
950
1050
  cb: (err: any, data?: GetPolicyGenerationCommandOutput) => void
951
1051
  ): void;
1052
+ getRegistry(
1053
+ args: GetRegistryCommandInput,
1054
+ options?: __HttpHandlerOptions
1055
+ ): Promise<GetRegistryCommandOutput>;
1056
+ getRegistry(
1057
+ args: GetRegistryCommandInput,
1058
+ cb: (err: any, data?: GetRegistryCommandOutput) => void
1059
+ ): void;
1060
+ getRegistry(
1061
+ args: GetRegistryCommandInput,
1062
+ options: __HttpHandlerOptions,
1063
+ cb: (err: any, data?: GetRegistryCommandOutput) => void
1064
+ ): void;
1065
+ getRegistryRecord(
1066
+ args: GetRegistryRecordCommandInput,
1067
+ options?: __HttpHandlerOptions
1068
+ ): Promise<GetRegistryRecordCommandOutput>;
1069
+ getRegistryRecord(
1070
+ args: GetRegistryRecordCommandInput,
1071
+ cb: (err: any, data?: GetRegistryRecordCommandOutput) => void
1072
+ ): void;
1073
+ getRegistryRecord(
1074
+ args: GetRegistryRecordCommandInput,
1075
+ options: __HttpHandlerOptions,
1076
+ cb: (err: any, data?: GetRegistryRecordCommandOutput) => void
1077
+ ): void;
952
1078
  getResourcePolicy(
953
1079
  args: GetResourcePolicyCommandInput,
954
1080
  options?: __HttpHandlerOptions
@@ -1221,6 +1347,33 @@ export interface BedrockAgentCoreControl {
1221
1347
  options: __HttpHandlerOptions,
1222
1348
  cb: (err: any, data?: ListPolicyGenerationsCommandOutput) => void
1223
1349
  ): void;
1350
+ listRegistries(): Promise<ListRegistriesCommandOutput>;
1351
+ listRegistries(
1352
+ args: ListRegistriesCommandInput,
1353
+ options?: __HttpHandlerOptions
1354
+ ): Promise<ListRegistriesCommandOutput>;
1355
+ listRegistries(
1356
+ args: ListRegistriesCommandInput,
1357
+ cb: (err: any, data?: ListRegistriesCommandOutput) => void
1358
+ ): void;
1359
+ listRegistries(
1360
+ args: ListRegistriesCommandInput,
1361
+ options: __HttpHandlerOptions,
1362
+ cb: (err: any, data?: ListRegistriesCommandOutput) => void
1363
+ ): void;
1364
+ listRegistryRecords(
1365
+ args: ListRegistryRecordsCommandInput,
1366
+ options?: __HttpHandlerOptions
1367
+ ): Promise<ListRegistryRecordsCommandOutput>;
1368
+ listRegistryRecords(
1369
+ args: ListRegistryRecordsCommandInput,
1370
+ cb: (err: any, data?: ListRegistryRecordsCommandOutput) => void
1371
+ ): void;
1372
+ listRegistryRecords(
1373
+ args: ListRegistryRecordsCommandInput,
1374
+ options: __HttpHandlerOptions,
1375
+ cb: (err: any, data?: ListRegistryRecordsCommandOutput) => void
1376
+ ): void;
1224
1377
  listTagsForResource(
1225
1378
  args: ListTagsForResourceCommandInput,
1226
1379
  options?: __HttpHandlerOptions
@@ -1287,6 +1440,19 @@ export interface BedrockAgentCoreControl {
1287
1440
  options: __HttpHandlerOptions,
1288
1441
  cb: (err: any, data?: StartPolicyGenerationCommandOutput) => void
1289
1442
  ): void;
1443
+ submitRegistryRecordForApproval(
1444
+ args: SubmitRegistryRecordForApprovalCommandInput,
1445
+ options?: __HttpHandlerOptions
1446
+ ): Promise<SubmitRegistryRecordForApprovalCommandOutput>;
1447
+ submitRegistryRecordForApproval(
1448
+ args: SubmitRegistryRecordForApprovalCommandInput,
1449
+ cb: (err: any, data?: SubmitRegistryRecordForApprovalCommandOutput) => void
1450
+ ): void;
1451
+ submitRegistryRecordForApproval(
1452
+ args: SubmitRegistryRecordForApprovalCommandInput,
1453
+ options: __HttpHandlerOptions,
1454
+ cb: (err: any, data?: SubmitRegistryRecordForApprovalCommandOutput) => void
1455
+ ): void;
1290
1456
  synchronizeGatewayTargets(
1291
1457
  args: SynchronizeGatewayTargetsCommandInput,
1292
1458
  options?: __HttpHandlerOptions
@@ -1469,6 +1635,45 @@ export interface BedrockAgentCoreControl {
1469
1635
  options: __HttpHandlerOptions,
1470
1636
  cb: (err: any, data?: UpdatePolicyEngineCommandOutput) => void
1471
1637
  ): void;
1638
+ updateRegistry(
1639
+ args: UpdateRegistryCommandInput,
1640
+ options?: __HttpHandlerOptions
1641
+ ): Promise<UpdateRegistryCommandOutput>;
1642
+ updateRegistry(
1643
+ args: UpdateRegistryCommandInput,
1644
+ cb: (err: any, data?: UpdateRegistryCommandOutput) => void
1645
+ ): void;
1646
+ updateRegistry(
1647
+ args: UpdateRegistryCommandInput,
1648
+ options: __HttpHandlerOptions,
1649
+ cb: (err: any, data?: UpdateRegistryCommandOutput) => void
1650
+ ): void;
1651
+ updateRegistryRecord(
1652
+ args: UpdateRegistryRecordCommandInput,
1653
+ options?: __HttpHandlerOptions
1654
+ ): Promise<UpdateRegistryRecordCommandOutput>;
1655
+ updateRegistryRecord(
1656
+ args: UpdateRegistryRecordCommandInput,
1657
+ cb: (err: any, data?: UpdateRegistryRecordCommandOutput) => void
1658
+ ): void;
1659
+ updateRegistryRecord(
1660
+ args: UpdateRegistryRecordCommandInput,
1661
+ options: __HttpHandlerOptions,
1662
+ cb: (err: any, data?: UpdateRegistryRecordCommandOutput) => void
1663
+ ): void;
1664
+ updateRegistryRecordStatus(
1665
+ args: UpdateRegistryRecordStatusCommandInput,
1666
+ options?: __HttpHandlerOptions
1667
+ ): Promise<UpdateRegistryRecordStatusCommandOutput>;
1668
+ updateRegistryRecordStatus(
1669
+ args: UpdateRegistryRecordStatusCommandInput,
1670
+ cb: (err: any, data?: UpdateRegistryRecordStatusCommandOutput) => void
1671
+ ): void;
1672
+ updateRegistryRecordStatus(
1673
+ args: UpdateRegistryRecordStatusCommandInput,
1674
+ options: __HttpHandlerOptions,
1675
+ cb: (err: any, data?: UpdateRegistryRecordStatusCommandOutput) => void
1676
+ ): void;
1472
1677
  updateWorkloadIdentity(
1473
1678
  args: UpdateWorkloadIdentityCommandInput,
1474
1679
  options?: __HttpHandlerOptions
@@ -1601,6 +1806,20 @@ export interface BedrockAgentCoreControl {
1601
1806
  Exclude<keyof PaginationConfiguration, "client">
1602
1807
  >
1603
1808
  ): Paginator<ListPolicyGenerationsCommandOutput>;
1809
+ paginateListRegistries(
1810
+ args?: ListRegistriesCommandInput,
1811
+ paginationConfig?: Pick<
1812
+ PaginationConfiguration,
1813
+ Exclude<keyof PaginationConfiguration, "client">
1814
+ >
1815
+ ): Paginator<ListRegistriesCommandOutput>;
1816
+ paginateListRegistryRecords(
1817
+ args: ListRegistryRecordsCommandInput,
1818
+ paginationConfig?: Pick<
1819
+ PaginationConfiguration,
1820
+ Exclude<keyof PaginationConfiguration, "client">
1821
+ >
1822
+ ): Paginator<ListRegistryRecordsCommandOutput>;
1604
1823
  paginateListWorkloadIdentities(
1605
1824
  args?: ListWorkloadIdentitiesCommandInput,
1606
1825
  paginationConfig?: Pick<