@aws-sdk/client-bedrock-agentcore-control 3.1026.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
@@ -15,6 +15,8 @@ import { type CreateOauth2CredentialProviderCommandInput, type CreateOauth2Crede
15
15
  import { type CreateOnlineEvaluationConfigCommandInput, type CreateOnlineEvaluationConfigCommandOutput } from "./commands/CreateOnlineEvaluationConfigCommand";
16
16
  import { type CreatePolicyCommandInput, type CreatePolicyCommandOutput } from "./commands/CreatePolicyCommand";
17
17
  import { type CreatePolicyEngineCommandInput, type CreatePolicyEngineCommandOutput } from "./commands/CreatePolicyEngineCommand";
18
+ import { type CreateRegistryCommandInput, type CreateRegistryCommandOutput } from "./commands/CreateRegistryCommand";
19
+ import { type CreateRegistryRecordCommandInput, type CreateRegistryRecordCommandOutput } from "./commands/CreateRegistryRecordCommand";
18
20
  import { type CreateWorkloadIdentityCommandInput, type CreateWorkloadIdentityCommandOutput } from "./commands/CreateWorkloadIdentityCommand";
19
21
  import { type DeleteAgentRuntimeCommandInput, type DeleteAgentRuntimeCommandOutput } from "./commands/DeleteAgentRuntimeCommand";
20
22
  import { type DeleteAgentRuntimeEndpointCommandInput, type DeleteAgentRuntimeEndpointCommandOutput } from "./commands/DeleteAgentRuntimeEndpointCommand";
@@ -30,6 +32,8 @@ import { type DeleteOauth2CredentialProviderCommandInput, type DeleteOauth2Crede
30
32
  import { type DeleteOnlineEvaluationConfigCommandInput, type DeleteOnlineEvaluationConfigCommandOutput } from "./commands/DeleteOnlineEvaluationConfigCommand";
31
33
  import { type DeletePolicyCommandInput, type DeletePolicyCommandOutput } from "./commands/DeletePolicyCommand";
32
34
  import { type DeletePolicyEngineCommandInput, type DeletePolicyEngineCommandOutput } from "./commands/DeletePolicyEngineCommand";
35
+ import { type DeleteRegistryCommandInput, type DeleteRegistryCommandOutput } from "./commands/DeleteRegistryCommand";
36
+ import { type DeleteRegistryRecordCommandInput, type DeleteRegistryRecordCommandOutput } from "./commands/DeleteRegistryRecordCommand";
33
37
  import { type DeleteResourcePolicyCommandInput, type DeleteResourcePolicyCommandOutput } from "./commands/DeleteResourcePolicyCommand";
34
38
  import { type DeleteWorkloadIdentityCommandInput, type DeleteWorkloadIdentityCommandOutput } from "./commands/DeleteWorkloadIdentityCommand";
35
39
  import { type GetAgentRuntimeCommandInput, type GetAgentRuntimeCommandOutput } from "./commands/GetAgentRuntimeCommand";
@@ -47,6 +51,8 @@ import { type GetOnlineEvaluationConfigCommandInput, type GetOnlineEvaluationCon
47
51
  import { type GetPolicyCommandInput, type GetPolicyCommandOutput } from "./commands/GetPolicyCommand";
48
52
  import { type GetPolicyEngineCommandInput, type GetPolicyEngineCommandOutput } from "./commands/GetPolicyEngineCommand";
49
53
  import { type GetPolicyGenerationCommandInput, type GetPolicyGenerationCommandOutput } from "./commands/GetPolicyGenerationCommand";
54
+ import { type GetRegistryCommandInput, type GetRegistryCommandOutput } from "./commands/GetRegistryCommand";
55
+ import { type GetRegistryRecordCommandInput, type GetRegistryRecordCommandOutput } from "./commands/GetRegistryRecordCommand";
50
56
  import { type GetResourcePolicyCommandInput, type GetResourcePolicyCommandOutput } from "./commands/GetResourcePolicyCommand";
51
57
  import { type GetTokenVaultCommandInput, type GetTokenVaultCommandOutput } from "./commands/GetTokenVaultCommand";
52
58
  import { type GetWorkloadIdentityCommandInput, type GetWorkloadIdentityCommandOutput } from "./commands/GetWorkloadIdentityCommand";
@@ -67,11 +73,14 @@ import { type ListPoliciesCommandInput, type ListPoliciesCommandOutput } from ".
67
73
  import { type ListPolicyEnginesCommandInput, type ListPolicyEnginesCommandOutput } from "./commands/ListPolicyEnginesCommand";
68
74
  import { type ListPolicyGenerationAssetsCommandInput, type ListPolicyGenerationAssetsCommandOutput } from "./commands/ListPolicyGenerationAssetsCommand";
69
75
  import { type ListPolicyGenerationsCommandInput, type ListPolicyGenerationsCommandOutput } from "./commands/ListPolicyGenerationsCommand";
76
+ import { type ListRegistriesCommandInput, type ListRegistriesCommandOutput } from "./commands/ListRegistriesCommand";
77
+ import { type ListRegistryRecordsCommandInput, type ListRegistryRecordsCommandOutput } from "./commands/ListRegistryRecordsCommand";
70
78
  import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
71
79
  import { type ListWorkloadIdentitiesCommandInput, type ListWorkloadIdentitiesCommandOutput } from "./commands/ListWorkloadIdentitiesCommand";
72
80
  import { type PutResourcePolicyCommandInput, type PutResourcePolicyCommandOutput } from "./commands/PutResourcePolicyCommand";
73
81
  import { type SetTokenVaultCMKCommandInput, type SetTokenVaultCMKCommandOutput } from "./commands/SetTokenVaultCMKCommand";
74
82
  import { type StartPolicyGenerationCommandInput, type StartPolicyGenerationCommandOutput } from "./commands/StartPolicyGenerationCommand";
83
+ import { type SubmitRegistryRecordForApprovalCommandInput, type SubmitRegistryRecordForApprovalCommandOutput } from "./commands/SubmitRegistryRecordForApprovalCommand";
75
84
  import { type SynchronizeGatewayTargetsCommandInput, type SynchronizeGatewayTargetsCommandOutput } from "./commands/SynchronizeGatewayTargetsCommand";
76
85
  import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand";
77
86
  import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
@@ -86,6 +95,9 @@ import { type UpdateOauth2CredentialProviderCommandInput, type UpdateOauth2Crede
86
95
  import { type UpdateOnlineEvaluationConfigCommandInput, type UpdateOnlineEvaluationConfigCommandOutput } from "./commands/UpdateOnlineEvaluationConfigCommand";
87
96
  import { type UpdatePolicyCommandInput, type UpdatePolicyCommandOutput } from "./commands/UpdatePolicyCommand";
88
97
  import { type UpdatePolicyEngineCommandInput, type UpdatePolicyEngineCommandOutput } from "./commands/UpdatePolicyEngineCommand";
98
+ import { type UpdateRegistryCommandInput, type UpdateRegistryCommandOutput } from "./commands/UpdateRegistryCommand";
99
+ import { type UpdateRegistryRecordCommandInput, type UpdateRegistryRecordCommandOutput } from "./commands/UpdateRegistryRecordCommand";
100
+ import { type UpdateRegistryRecordStatusCommandInput, type UpdateRegistryRecordStatusCommandOutput } from "./commands/UpdateRegistryRecordStatusCommand";
89
101
  import { type UpdateWorkloadIdentityCommandInput, type UpdateWorkloadIdentityCommandOutput } from "./commands/UpdateWorkloadIdentityCommand";
90
102
  export interface BedrockAgentCoreControl {
91
103
  /**
@@ -172,6 +184,18 @@ export interface BedrockAgentCoreControl {
172
184
  createPolicyEngine(args: CreatePolicyEngineCommandInput, options?: __HttpHandlerOptions): Promise<CreatePolicyEngineCommandOutput>;
173
185
  createPolicyEngine(args: CreatePolicyEngineCommandInput, cb: (err: any, data?: CreatePolicyEngineCommandOutput) => void): void;
174
186
  createPolicyEngine(args: CreatePolicyEngineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePolicyEngineCommandOutput) => void): void;
187
+ /**
188
+ * @see {@link CreateRegistryCommand}
189
+ */
190
+ createRegistry(args: CreateRegistryCommandInput, options?: __HttpHandlerOptions): Promise<CreateRegistryCommandOutput>;
191
+ createRegistry(args: CreateRegistryCommandInput, cb: (err: any, data?: CreateRegistryCommandOutput) => void): void;
192
+ createRegistry(args: CreateRegistryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRegistryCommandOutput) => void): void;
193
+ /**
194
+ * @see {@link CreateRegistryRecordCommand}
195
+ */
196
+ createRegistryRecord(args: CreateRegistryRecordCommandInput, options?: __HttpHandlerOptions): Promise<CreateRegistryRecordCommandOutput>;
197
+ createRegistryRecord(args: CreateRegistryRecordCommandInput, cb: (err: any, data?: CreateRegistryRecordCommandOutput) => void): void;
198
+ createRegistryRecord(args: CreateRegistryRecordCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRegistryRecordCommandOutput) => void): void;
175
199
  /**
176
200
  * @see {@link CreateWorkloadIdentityCommand}
177
201
  */
@@ -262,6 +286,18 @@ export interface BedrockAgentCoreControl {
262
286
  deletePolicyEngine(args: DeletePolicyEngineCommandInput, options?: __HttpHandlerOptions): Promise<DeletePolicyEngineCommandOutput>;
263
287
  deletePolicyEngine(args: DeletePolicyEngineCommandInput, cb: (err: any, data?: DeletePolicyEngineCommandOutput) => void): void;
264
288
  deletePolicyEngine(args: DeletePolicyEngineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePolicyEngineCommandOutput) => void): void;
289
+ /**
290
+ * @see {@link DeleteRegistryCommand}
291
+ */
292
+ deleteRegistry(args: DeleteRegistryCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRegistryCommandOutput>;
293
+ deleteRegistry(args: DeleteRegistryCommandInput, cb: (err: any, data?: DeleteRegistryCommandOutput) => void): void;
294
+ deleteRegistry(args: DeleteRegistryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRegistryCommandOutput) => void): void;
295
+ /**
296
+ * @see {@link DeleteRegistryRecordCommand}
297
+ */
298
+ deleteRegistryRecord(args: DeleteRegistryRecordCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRegistryRecordCommandOutput>;
299
+ deleteRegistryRecord(args: DeleteRegistryRecordCommandInput, cb: (err: any, data?: DeleteRegistryRecordCommandOutput) => void): void;
300
+ deleteRegistryRecord(args: DeleteRegistryRecordCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRegistryRecordCommandOutput) => void): void;
265
301
  /**
266
302
  * @see {@link DeleteResourcePolicyCommand}
267
303
  */
@@ -364,6 +400,18 @@ export interface BedrockAgentCoreControl {
364
400
  getPolicyGeneration(args: GetPolicyGenerationCommandInput, options?: __HttpHandlerOptions): Promise<GetPolicyGenerationCommandOutput>;
365
401
  getPolicyGeneration(args: GetPolicyGenerationCommandInput, cb: (err: any, data?: GetPolicyGenerationCommandOutput) => void): void;
366
402
  getPolicyGeneration(args: GetPolicyGenerationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPolicyGenerationCommandOutput) => void): void;
403
+ /**
404
+ * @see {@link GetRegistryCommand}
405
+ */
406
+ getRegistry(args: GetRegistryCommandInput, options?: __HttpHandlerOptions): Promise<GetRegistryCommandOutput>;
407
+ getRegistry(args: GetRegistryCommandInput, cb: (err: any, data?: GetRegistryCommandOutput) => void): void;
408
+ getRegistry(args: GetRegistryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRegistryCommandOutput) => void): void;
409
+ /**
410
+ * @see {@link GetRegistryRecordCommand}
411
+ */
412
+ getRegistryRecord(args: GetRegistryRecordCommandInput, options?: __HttpHandlerOptions): Promise<GetRegistryRecordCommandOutput>;
413
+ getRegistryRecord(args: GetRegistryRecordCommandInput, cb: (err: any, data?: GetRegistryRecordCommandOutput) => void): void;
414
+ getRegistryRecord(args: GetRegistryRecordCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRegistryRecordCommandOutput) => void): void;
367
415
  /**
368
416
  * @see {@link GetResourcePolicyCommand}
369
417
  */
@@ -496,6 +544,19 @@ export interface BedrockAgentCoreControl {
496
544
  listPolicyGenerations(args: ListPolicyGenerationsCommandInput, options?: __HttpHandlerOptions): Promise<ListPolicyGenerationsCommandOutput>;
497
545
  listPolicyGenerations(args: ListPolicyGenerationsCommandInput, cb: (err: any, data?: ListPolicyGenerationsCommandOutput) => void): void;
498
546
  listPolicyGenerations(args: ListPolicyGenerationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPolicyGenerationsCommandOutput) => void): void;
547
+ /**
548
+ * @see {@link ListRegistriesCommand}
549
+ */
550
+ listRegistries(): Promise<ListRegistriesCommandOutput>;
551
+ listRegistries(args: ListRegistriesCommandInput, options?: __HttpHandlerOptions): Promise<ListRegistriesCommandOutput>;
552
+ listRegistries(args: ListRegistriesCommandInput, cb: (err: any, data?: ListRegistriesCommandOutput) => void): void;
553
+ listRegistries(args: ListRegistriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRegistriesCommandOutput) => void): void;
554
+ /**
555
+ * @see {@link ListRegistryRecordsCommand}
556
+ */
557
+ listRegistryRecords(args: ListRegistryRecordsCommandInput, options?: __HttpHandlerOptions): Promise<ListRegistryRecordsCommandOutput>;
558
+ listRegistryRecords(args: ListRegistryRecordsCommandInput, cb: (err: any, data?: ListRegistryRecordsCommandOutput) => void): void;
559
+ listRegistryRecords(args: ListRegistryRecordsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRegistryRecordsCommandOutput) => void): void;
499
560
  /**
500
561
  * @see {@link ListTagsForResourceCommand}
501
562
  */
@@ -527,6 +588,12 @@ export interface BedrockAgentCoreControl {
527
588
  startPolicyGeneration(args: StartPolicyGenerationCommandInput, options?: __HttpHandlerOptions): Promise<StartPolicyGenerationCommandOutput>;
528
589
  startPolicyGeneration(args: StartPolicyGenerationCommandInput, cb: (err: any, data?: StartPolicyGenerationCommandOutput) => void): void;
529
590
  startPolicyGeneration(args: StartPolicyGenerationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartPolicyGenerationCommandOutput) => void): void;
591
+ /**
592
+ * @see {@link SubmitRegistryRecordForApprovalCommand}
593
+ */
594
+ submitRegistryRecordForApproval(args: SubmitRegistryRecordForApprovalCommandInput, options?: __HttpHandlerOptions): Promise<SubmitRegistryRecordForApprovalCommandOutput>;
595
+ submitRegistryRecordForApproval(args: SubmitRegistryRecordForApprovalCommandInput, cb: (err: any, data?: SubmitRegistryRecordForApprovalCommandOutput) => void): void;
596
+ submitRegistryRecordForApproval(args: SubmitRegistryRecordForApprovalCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SubmitRegistryRecordForApprovalCommandOutput) => void): void;
530
597
  /**
531
598
  * @see {@link SynchronizeGatewayTargetsCommand}
532
599
  */
@@ -611,6 +678,24 @@ export interface BedrockAgentCoreControl {
611
678
  updatePolicyEngine(args: UpdatePolicyEngineCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePolicyEngineCommandOutput>;
612
679
  updatePolicyEngine(args: UpdatePolicyEngineCommandInput, cb: (err: any, data?: UpdatePolicyEngineCommandOutput) => void): void;
613
680
  updatePolicyEngine(args: UpdatePolicyEngineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePolicyEngineCommandOutput) => void): void;
681
+ /**
682
+ * @see {@link UpdateRegistryCommand}
683
+ */
684
+ updateRegistry(args: UpdateRegistryCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRegistryCommandOutput>;
685
+ updateRegistry(args: UpdateRegistryCommandInput, cb: (err: any, data?: UpdateRegistryCommandOutput) => void): void;
686
+ updateRegistry(args: UpdateRegistryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRegistryCommandOutput) => void): void;
687
+ /**
688
+ * @see {@link UpdateRegistryRecordCommand}
689
+ */
690
+ updateRegistryRecord(args: UpdateRegistryRecordCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRegistryRecordCommandOutput>;
691
+ updateRegistryRecord(args: UpdateRegistryRecordCommandInput, cb: (err: any, data?: UpdateRegistryRecordCommandOutput) => void): void;
692
+ updateRegistryRecord(args: UpdateRegistryRecordCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRegistryRecordCommandOutput) => void): void;
693
+ /**
694
+ * @see {@link UpdateRegistryRecordStatusCommand}
695
+ */
696
+ updateRegistryRecordStatus(args: UpdateRegistryRecordStatusCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRegistryRecordStatusCommandOutput>;
697
+ updateRegistryRecordStatus(args: UpdateRegistryRecordStatusCommandInput, cb: (err: any, data?: UpdateRegistryRecordStatusCommandOutput) => void): void;
698
+ updateRegistryRecordStatus(args: UpdateRegistryRecordStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRegistryRecordStatusCommandOutput) => void): void;
614
699
  /**
615
700
  * @see {@link UpdateWorkloadIdentityCommand}
616
701
  */
@@ -736,6 +821,20 @@ export interface BedrockAgentCoreControl {
736
821
  * @returns AsyncIterable of {@link ListPolicyGenerationsCommandOutput}.
737
822
  */
738
823
  paginateListPolicyGenerations(args: ListPolicyGenerationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListPolicyGenerationsCommandOutput>;
824
+ /**
825
+ * @see {@link ListRegistriesCommand}
826
+ * @param args - command input.
827
+ * @param paginationConfig - optional pagination config.
828
+ * @returns AsyncIterable of {@link ListRegistriesCommandOutput}.
829
+ */
830
+ paginateListRegistries(args?: ListRegistriesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListRegistriesCommandOutput>;
831
+ /**
832
+ * @see {@link ListRegistryRecordsCommand}
833
+ * @param args - command input.
834
+ * @param paginationConfig - optional pagination config.
835
+ * @returns AsyncIterable of {@link ListRegistryRecordsCommandOutput}.
836
+ */
837
+ paginateListRegistryRecords(args: ListRegistryRecordsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListRegistryRecordsCommandOutput>;
739
838
  /**
740
839
  * @see {@link ListWorkloadIdentitiesCommand}
741
840
  * @param args - command input.
@@ -21,6 +21,8 @@ import type { CreateOauth2CredentialProviderCommandInput, CreateOauth2Credential
21
21
  import type { CreateOnlineEvaluationConfigCommandInput, CreateOnlineEvaluationConfigCommandOutput } from "./commands/CreateOnlineEvaluationConfigCommand";
22
22
  import type { CreatePolicyCommandInput, CreatePolicyCommandOutput } from "./commands/CreatePolicyCommand";
23
23
  import type { CreatePolicyEngineCommandInput, CreatePolicyEngineCommandOutput } from "./commands/CreatePolicyEngineCommand";
24
+ import type { CreateRegistryCommandInput, CreateRegistryCommandOutput } from "./commands/CreateRegistryCommand";
25
+ import type { CreateRegistryRecordCommandInput, CreateRegistryRecordCommandOutput } from "./commands/CreateRegistryRecordCommand";
24
26
  import type { CreateWorkloadIdentityCommandInput, CreateWorkloadIdentityCommandOutput } from "./commands/CreateWorkloadIdentityCommand";
25
27
  import type { DeleteAgentRuntimeCommandInput, DeleteAgentRuntimeCommandOutput } from "./commands/DeleteAgentRuntimeCommand";
26
28
  import type { DeleteAgentRuntimeEndpointCommandInput, DeleteAgentRuntimeEndpointCommandOutput } from "./commands/DeleteAgentRuntimeEndpointCommand";
@@ -36,6 +38,8 @@ import type { DeleteOauth2CredentialProviderCommandInput, DeleteOauth2Credential
36
38
  import type { DeleteOnlineEvaluationConfigCommandInput, DeleteOnlineEvaluationConfigCommandOutput } from "./commands/DeleteOnlineEvaluationConfigCommand";
37
39
  import type { DeletePolicyCommandInput, DeletePolicyCommandOutput } from "./commands/DeletePolicyCommand";
38
40
  import type { DeletePolicyEngineCommandInput, DeletePolicyEngineCommandOutput } from "./commands/DeletePolicyEngineCommand";
41
+ import type { DeleteRegistryCommandInput, DeleteRegistryCommandOutput } from "./commands/DeleteRegistryCommand";
42
+ import type { DeleteRegistryRecordCommandInput, DeleteRegistryRecordCommandOutput } from "./commands/DeleteRegistryRecordCommand";
39
43
  import type { DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput } from "./commands/DeleteResourcePolicyCommand";
40
44
  import type { DeleteWorkloadIdentityCommandInput, DeleteWorkloadIdentityCommandOutput } from "./commands/DeleteWorkloadIdentityCommand";
41
45
  import type { GetAgentRuntimeCommandInput, GetAgentRuntimeCommandOutput } from "./commands/GetAgentRuntimeCommand";
@@ -53,6 +57,8 @@ import type { GetOnlineEvaluationConfigCommandInput, GetOnlineEvaluationConfigCo
53
57
  import type { GetPolicyCommandInput, GetPolicyCommandOutput } from "./commands/GetPolicyCommand";
54
58
  import type { GetPolicyEngineCommandInput, GetPolicyEngineCommandOutput } from "./commands/GetPolicyEngineCommand";
55
59
  import type { GetPolicyGenerationCommandInput, GetPolicyGenerationCommandOutput } from "./commands/GetPolicyGenerationCommand";
60
+ import type { GetRegistryCommandInput, GetRegistryCommandOutput } from "./commands/GetRegistryCommand";
61
+ import type { GetRegistryRecordCommandInput, GetRegistryRecordCommandOutput } from "./commands/GetRegistryRecordCommand";
56
62
  import type { GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput } from "./commands/GetResourcePolicyCommand";
57
63
  import type { GetTokenVaultCommandInput, GetTokenVaultCommandOutput } from "./commands/GetTokenVaultCommand";
58
64
  import type { GetWorkloadIdentityCommandInput, GetWorkloadIdentityCommandOutput } from "./commands/GetWorkloadIdentityCommand";
@@ -73,11 +79,14 @@ import type { ListPoliciesCommandInput, ListPoliciesCommandOutput } from "./comm
73
79
  import type { ListPolicyEnginesCommandInput, ListPolicyEnginesCommandOutput } from "./commands/ListPolicyEnginesCommand";
74
80
  import type { ListPolicyGenerationAssetsCommandInput, ListPolicyGenerationAssetsCommandOutput } from "./commands/ListPolicyGenerationAssetsCommand";
75
81
  import type { ListPolicyGenerationsCommandInput, ListPolicyGenerationsCommandOutput } from "./commands/ListPolicyGenerationsCommand";
82
+ import type { ListRegistriesCommandInput, ListRegistriesCommandOutput } from "./commands/ListRegistriesCommand";
83
+ import type { ListRegistryRecordsCommandInput, ListRegistryRecordsCommandOutput } from "./commands/ListRegistryRecordsCommand";
76
84
  import type { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
77
85
  import type { ListWorkloadIdentitiesCommandInput, ListWorkloadIdentitiesCommandOutput } from "./commands/ListWorkloadIdentitiesCommand";
78
86
  import type { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "./commands/PutResourcePolicyCommand";
79
87
  import type { SetTokenVaultCMKCommandInput, SetTokenVaultCMKCommandOutput } from "./commands/SetTokenVaultCMKCommand";
80
88
  import type { StartPolicyGenerationCommandInput, StartPolicyGenerationCommandOutput } from "./commands/StartPolicyGenerationCommand";
89
+ import type { SubmitRegistryRecordForApprovalCommandInput, SubmitRegistryRecordForApprovalCommandOutput } from "./commands/SubmitRegistryRecordForApprovalCommand";
81
90
  import type { SynchronizeGatewayTargetsCommandInput, SynchronizeGatewayTargetsCommandOutput } from "./commands/SynchronizeGatewayTargetsCommand";
82
91
  import type { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
83
92
  import type { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
@@ -92,6 +101,9 @@ import type { UpdateOauth2CredentialProviderCommandInput, UpdateOauth2Credential
92
101
  import type { UpdateOnlineEvaluationConfigCommandInput, UpdateOnlineEvaluationConfigCommandOutput } from "./commands/UpdateOnlineEvaluationConfigCommand";
93
102
  import type { UpdatePolicyCommandInput, UpdatePolicyCommandOutput } from "./commands/UpdatePolicyCommand";
94
103
  import type { UpdatePolicyEngineCommandInput, UpdatePolicyEngineCommandOutput } from "./commands/UpdatePolicyEngineCommand";
104
+ import type { UpdateRegistryCommandInput, UpdateRegistryCommandOutput } from "./commands/UpdateRegistryCommand";
105
+ import type { UpdateRegistryRecordCommandInput, UpdateRegistryRecordCommandOutput } from "./commands/UpdateRegistryRecordCommand";
106
+ import type { UpdateRegistryRecordStatusCommandInput, UpdateRegistryRecordStatusCommandOutput } from "./commands/UpdateRegistryRecordStatusCommand";
95
107
  import type { UpdateWorkloadIdentityCommandInput, UpdateWorkloadIdentityCommandOutput } from "./commands/UpdateWorkloadIdentityCommand";
96
108
  import { type ClientInputEndpointParameters, type ClientResolvedEndpointParameters, type EndpointParameters } from "./endpoint/EndpointParameters";
97
109
  import { type RuntimeExtension, type RuntimeExtensionsConfig } from "./runtimeExtensions";
@@ -99,11 +111,11 @@ export { __Client };
99
111
  /**
100
112
  * @public
101
113
  */
102
- export type ServiceInputTypes = CreateAgentRuntimeCommandInput | CreateAgentRuntimeEndpointCommandInput | CreateApiKeyCredentialProviderCommandInput | CreateBrowserCommandInput | CreateBrowserProfileCommandInput | CreateCodeInterpreterCommandInput | CreateEvaluatorCommandInput | CreateGatewayCommandInput | CreateGatewayTargetCommandInput | CreateMemoryCommandInput | CreateOauth2CredentialProviderCommandInput | CreateOnlineEvaluationConfigCommandInput | CreatePolicyCommandInput | CreatePolicyEngineCommandInput | CreateWorkloadIdentityCommandInput | DeleteAgentRuntimeCommandInput | DeleteAgentRuntimeEndpointCommandInput | DeleteApiKeyCredentialProviderCommandInput | DeleteBrowserCommandInput | DeleteBrowserProfileCommandInput | DeleteCodeInterpreterCommandInput | DeleteEvaluatorCommandInput | DeleteGatewayCommandInput | DeleteGatewayTargetCommandInput | DeleteMemoryCommandInput | DeleteOauth2CredentialProviderCommandInput | DeleteOnlineEvaluationConfigCommandInput | DeletePolicyCommandInput | DeletePolicyEngineCommandInput | DeleteResourcePolicyCommandInput | DeleteWorkloadIdentityCommandInput | GetAgentRuntimeCommandInput | GetAgentRuntimeEndpointCommandInput | GetApiKeyCredentialProviderCommandInput | GetBrowserCommandInput | GetBrowserProfileCommandInput | GetCodeInterpreterCommandInput | GetEvaluatorCommandInput | GetGatewayCommandInput | GetGatewayTargetCommandInput | GetMemoryCommandInput | GetOauth2CredentialProviderCommandInput | GetOnlineEvaluationConfigCommandInput | GetPolicyCommandInput | GetPolicyEngineCommandInput | GetPolicyGenerationCommandInput | GetResourcePolicyCommandInput | GetTokenVaultCommandInput | GetWorkloadIdentityCommandInput | ListAgentRuntimeEndpointsCommandInput | ListAgentRuntimeVersionsCommandInput | ListAgentRuntimesCommandInput | ListApiKeyCredentialProvidersCommandInput | ListBrowserProfilesCommandInput | ListBrowsersCommandInput | ListCodeInterpretersCommandInput | ListEvaluatorsCommandInput | ListGatewayTargetsCommandInput | ListGatewaysCommandInput | ListMemoriesCommandInput | ListOauth2CredentialProvidersCommandInput | ListOnlineEvaluationConfigsCommandInput | ListPoliciesCommandInput | ListPolicyEnginesCommandInput | ListPolicyGenerationAssetsCommandInput | ListPolicyGenerationsCommandInput | ListTagsForResourceCommandInput | ListWorkloadIdentitiesCommandInput | PutResourcePolicyCommandInput | SetTokenVaultCMKCommandInput | StartPolicyGenerationCommandInput | SynchronizeGatewayTargetsCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAgentRuntimeCommandInput | UpdateAgentRuntimeEndpointCommandInput | UpdateApiKeyCredentialProviderCommandInput | UpdateEvaluatorCommandInput | UpdateGatewayCommandInput | UpdateGatewayTargetCommandInput | UpdateMemoryCommandInput | UpdateOauth2CredentialProviderCommandInput | UpdateOnlineEvaluationConfigCommandInput | UpdatePolicyCommandInput | UpdatePolicyEngineCommandInput | UpdateWorkloadIdentityCommandInput;
114
+ export type ServiceInputTypes = CreateAgentRuntimeCommandInput | CreateAgentRuntimeEndpointCommandInput | CreateApiKeyCredentialProviderCommandInput | CreateBrowserCommandInput | CreateBrowserProfileCommandInput | CreateCodeInterpreterCommandInput | CreateEvaluatorCommandInput | CreateGatewayCommandInput | CreateGatewayTargetCommandInput | CreateMemoryCommandInput | CreateOauth2CredentialProviderCommandInput | CreateOnlineEvaluationConfigCommandInput | CreatePolicyCommandInput | CreatePolicyEngineCommandInput | CreateRegistryCommandInput | CreateRegistryRecordCommandInput | CreateWorkloadIdentityCommandInput | DeleteAgentRuntimeCommandInput | DeleteAgentRuntimeEndpointCommandInput | DeleteApiKeyCredentialProviderCommandInput | DeleteBrowserCommandInput | DeleteBrowserProfileCommandInput | DeleteCodeInterpreterCommandInput | DeleteEvaluatorCommandInput | DeleteGatewayCommandInput | DeleteGatewayTargetCommandInput | DeleteMemoryCommandInput | DeleteOauth2CredentialProviderCommandInput | DeleteOnlineEvaluationConfigCommandInput | DeletePolicyCommandInput | DeletePolicyEngineCommandInput | DeleteRegistryCommandInput | DeleteRegistryRecordCommandInput | DeleteResourcePolicyCommandInput | DeleteWorkloadIdentityCommandInput | GetAgentRuntimeCommandInput | GetAgentRuntimeEndpointCommandInput | GetApiKeyCredentialProviderCommandInput | GetBrowserCommandInput | GetBrowserProfileCommandInput | GetCodeInterpreterCommandInput | GetEvaluatorCommandInput | GetGatewayCommandInput | GetGatewayTargetCommandInput | GetMemoryCommandInput | GetOauth2CredentialProviderCommandInput | GetOnlineEvaluationConfigCommandInput | GetPolicyCommandInput | GetPolicyEngineCommandInput | GetPolicyGenerationCommandInput | GetRegistryCommandInput | GetRegistryRecordCommandInput | GetResourcePolicyCommandInput | GetTokenVaultCommandInput | GetWorkloadIdentityCommandInput | ListAgentRuntimeEndpointsCommandInput | ListAgentRuntimeVersionsCommandInput | ListAgentRuntimesCommandInput | ListApiKeyCredentialProvidersCommandInput | ListBrowserProfilesCommandInput | ListBrowsersCommandInput | ListCodeInterpretersCommandInput | ListEvaluatorsCommandInput | ListGatewayTargetsCommandInput | ListGatewaysCommandInput | ListMemoriesCommandInput | ListOauth2CredentialProvidersCommandInput | ListOnlineEvaluationConfigsCommandInput | ListPoliciesCommandInput | ListPolicyEnginesCommandInput | ListPolicyGenerationAssetsCommandInput | ListPolicyGenerationsCommandInput | ListRegistriesCommandInput | ListRegistryRecordsCommandInput | ListTagsForResourceCommandInput | ListWorkloadIdentitiesCommandInput | PutResourcePolicyCommandInput | SetTokenVaultCMKCommandInput | StartPolicyGenerationCommandInput | SubmitRegistryRecordForApprovalCommandInput | SynchronizeGatewayTargetsCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAgentRuntimeCommandInput | UpdateAgentRuntimeEndpointCommandInput | UpdateApiKeyCredentialProviderCommandInput | UpdateEvaluatorCommandInput | UpdateGatewayCommandInput | UpdateGatewayTargetCommandInput | UpdateMemoryCommandInput | UpdateOauth2CredentialProviderCommandInput | UpdateOnlineEvaluationConfigCommandInput | UpdatePolicyCommandInput | UpdatePolicyEngineCommandInput | UpdateRegistryCommandInput | UpdateRegistryRecordCommandInput | UpdateRegistryRecordStatusCommandInput | UpdateWorkloadIdentityCommandInput;
103
115
  /**
104
116
  * @public
105
117
  */
106
- export type ServiceOutputTypes = CreateAgentRuntimeCommandOutput | CreateAgentRuntimeEndpointCommandOutput | CreateApiKeyCredentialProviderCommandOutput | CreateBrowserCommandOutput | CreateBrowserProfileCommandOutput | CreateCodeInterpreterCommandOutput | CreateEvaluatorCommandOutput | CreateGatewayCommandOutput | CreateGatewayTargetCommandOutput | CreateMemoryCommandOutput | CreateOauth2CredentialProviderCommandOutput | CreateOnlineEvaluationConfigCommandOutput | CreatePolicyCommandOutput | CreatePolicyEngineCommandOutput | CreateWorkloadIdentityCommandOutput | DeleteAgentRuntimeCommandOutput | DeleteAgentRuntimeEndpointCommandOutput | DeleteApiKeyCredentialProviderCommandOutput | DeleteBrowserCommandOutput | DeleteBrowserProfileCommandOutput | DeleteCodeInterpreterCommandOutput | DeleteEvaluatorCommandOutput | DeleteGatewayCommandOutput | DeleteGatewayTargetCommandOutput | DeleteMemoryCommandOutput | DeleteOauth2CredentialProviderCommandOutput | DeleteOnlineEvaluationConfigCommandOutput | DeletePolicyCommandOutput | DeletePolicyEngineCommandOutput | DeleteResourcePolicyCommandOutput | DeleteWorkloadIdentityCommandOutput | GetAgentRuntimeCommandOutput | GetAgentRuntimeEndpointCommandOutput | GetApiKeyCredentialProviderCommandOutput | GetBrowserCommandOutput | GetBrowserProfileCommandOutput | GetCodeInterpreterCommandOutput | GetEvaluatorCommandOutput | GetGatewayCommandOutput | GetGatewayTargetCommandOutput | GetMemoryCommandOutput | GetOauth2CredentialProviderCommandOutput | GetOnlineEvaluationConfigCommandOutput | GetPolicyCommandOutput | GetPolicyEngineCommandOutput | GetPolicyGenerationCommandOutput | GetResourcePolicyCommandOutput | GetTokenVaultCommandOutput | GetWorkloadIdentityCommandOutput | ListAgentRuntimeEndpointsCommandOutput | ListAgentRuntimeVersionsCommandOutput | ListAgentRuntimesCommandOutput | ListApiKeyCredentialProvidersCommandOutput | ListBrowserProfilesCommandOutput | ListBrowsersCommandOutput | ListCodeInterpretersCommandOutput | ListEvaluatorsCommandOutput | ListGatewayTargetsCommandOutput | ListGatewaysCommandOutput | ListMemoriesCommandOutput | ListOauth2CredentialProvidersCommandOutput | ListOnlineEvaluationConfigsCommandOutput | ListPoliciesCommandOutput | ListPolicyEnginesCommandOutput | ListPolicyGenerationAssetsCommandOutput | ListPolicyGenerationsCommandOutput | ListTagsForResourceCommandOutput | ListWorkloadIdentitiesCommandOutput | PutResourcePolicyCommandOutput | SetTokenVaultCMKCommandOutput | StartPolicyGenerationCommandOutput | SynchronizeGatewayTargetsCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAgentRuntimeCommandOutput | UpdateAgentRuntimeEndpointCommandOutput | UpdateApiKeyCredentialProviderCommandOutput | UpdateEvaluatorCommandOutput | UpdateGatewayCommandOutput | UpdateGatewayTargetCommandOutput | UpdateMemoryCommandOutput | UpdateOauth2CredentialProviderCommandOutput | UpdateOnlineEvaluationConfigCommandOutput | UpdatePolicyCommandOutput | UpdatePolicyEngineCommandOutput | UpdateWorkloadIdentityCommandOutput;
118
+ export type ServiceOutputTypes = CreateAgentRuntimeCommandOutput | CreateAgentRuntimeEndpointCommandOutput | CreateApiKeyCredentialProviderCommandOutput | CreateBrowserCommandOutput | CreateBrowserProfileCommandOutput | CreateCodeInterpreterCommandOutput | CreateEvaluatorCommandOutput | CreateGatewayCommandOutput | CreateGatewayTargetCommandOutput | CreateMemoryCommandOutput | CreateOauth2CredentialProviderCommandOutput | CreateOnlineEvaluationConfigCommandOutput | CreatePolicyCommandOutput | CreatePolicyEngineCommandOutput | CreateRegistryCommandOutput | CreateRegistryRecordCommandOutput | CreateWorkloadIdentityCommandOutput | DeleteAgentRuntimeCommandOutput | DeleteAgentRuntimeEndpointCommandOutput | DeleteApiKeyCredentialProviderCommandOutput | DeleteBrowserCommandOutput | DeleteBrowserProfileCommandOutput | DeleteCodeInterpreterCommandOutput | DeleteEvaluatorCommandOutput | DeleteGatewayCommandOutput | DeleteGatewayTargetCommandOutput | DeleteMemoryCommandOutput | DeleteOauth2CredentialProviderCommandOutput | DeleteOnlineEvaluationConfigCommandOutput | DeletePolicyCommandOutput | DeletePolicyEngineCommandOutput | DeleteRegistryCommandOutput | DeleteRegistryRecordCommandOutput | DeleteResourcePolicyCommandOutput | DeleteWorkloadIdentityCommandOutput | GetAgentRuntimeCommandOutput | GetAgentRuntimeEndpointCommandOutput | GetApiKeyCredentialProviderCommandOutput | GetBrowserCommandOutput | GetBrowserProfileCommandOutput | GetCodeInterpreterCommandOutput | GetEvaluatorCommandOutput | GetGatewayCommandOutput | GetGatewayTargetCommandOutput | GetMemoryCommandOutput | GetOauth2CredentialProviderCommandOutput | GetOnlineEvaluationConfigCommandOutput | GetPolicyCommandOutput | GetPolicyEngineCommandOutput | GetPolicyGenerationCommandOutput | GetRegistryCommandOutput | GetRegistryRecordCommandOutput | GetResourcePolicyCommandOutput | GetTokenVaultCommandOutput | GetWorkloadIdentityCommandOutput | ListAgentRuntimeEndpointsCommandOutput | ListAgentRuntimeVersionsCommandOutput | ListAgentRuntimesCommandOutput | ListApiKeyCredentialProvidersCommandOutput | ListBrowserProfilesCommandOutput | ListBrowsersCommandOutput | ListCodeInterpretersCommandOutput | ListEvaluatorsCommandOutput | ListGatewayTargetsCommandOutput | ListGatewaysCommandOutput | ListMemoriesCommandOutput | ListOauth2CredentialProvidersCommandOutput | ListOnlineEvaluationConfigsCommandOutput | ListPoliciesCommandOutput | ListPolicyEnginesCommandOutput | ListPolicyGenerationAssetsCommandOutput | ListPolicyGenerationsCommandOutput | ListRegistriesCommandOutput | ListRegistryRecordsCommandOutput | ListTagsForResourceCommandOutput | ListWorkloadIdentitiesCommandOutput | PutResourcePolicyCommandOutput | SetTokenVaultCMKCommandOutput | StartPolicyGenerationCommandOutput | SubmitRegistryRecordForApprovalCommandOutput | SynchronizeGatewayTargetsCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAgentRuntimeCommandOutput | UpdateAgentRuntimeEndpointCommandOutput | UpdateApiKeyCredentialProviderCommandOutput | UpdateEvaluatorCommandOutput | UpdateGatewayCommandOutput | UpdateGatewayTargetCommandOutput | UpdateMemoryCommandOutput | UpdateOauth2CredentialProviderCommandOutput | UpdateOnlineEvaluationConfigCommandOutput | UpdatePolicyCommandOutput | UpdatePolicyEngineCommandOutput | UpdateRegistryCommandOutput | UpdateRegistryRecordCommandOutput | UpdateRegistryRecordStatusCommandOutput | UpdateWorkloadIdentityCommandOutput;
107
119
  /**
108
120
  * @public
109
121
  */
@@ -1,8 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreControlClient";
4
- import type { CreatePolicyEngineRequest } from "../models/models_0";
5
- import type { CreatePolicyEngineResponse } from "../models/models_1";
4
+ import type { CreatePolicyEngineRequest, CreatePolicyEngineResponse } from "../models/models_1";
6
5
  /**
7
6
  * @public
8
7
  */
@@ -0,0 +1,127 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreControlClient";
4
+ import type { CreateRegistryRequest, CreateRegistryResponse } from "../models/models_1";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link CreateRegistryCommand}.
14
+ */
15
+ export interface CreateRegistryCommandInput extends CreateRegistryRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link CreateRegistryCommand}.
21
+ */
22
+ export interface CreateRegistryCommandOutput extends CreateRegistryResponse, __MetadataBearer {
23
+ }
24
+ declare const CreateRegistryCommand_base: {
25
+ new (input: CreateRegistryCommandInput): import("@smithy/smithy-client").CommandImpl<CreateRegistryCommandInput, CreateRegistryCommandOutput, BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: CreateRegistryCommandInput): import("@smithy/smithy-client").CommandImpl<CreateRegistryCommandInput, CreateRegistryCommandOutput, BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Creates a new registry in your Amazon Web Services account. A registry serves as a centralized catalog for organizing and managing registry records, including MCP servers, A2A agents, agent skills, and custom resource types.</p> <p>If you specify <code>CUSTOM_JWT</code> as the <code>authorizerType</code>, you must provide an <code>authorizerConfiguration</code>.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { BedrockAgentCoreControlClient, CreateRegistryCommand } from "@aws-sdk/client-bedrock-agentcore-control"; // ES Modules import
35
+ * // const { BedrockAgentCoreControlClient, CreateRegistryCommand } = require("@aws-sdk/client-bedrock-agentcore-control"); // CommonJS import
36
+ * // import type { BedrockAgentCoreControlClientConfig } from "@aws-sdk/client-bedrock-agentcore-control";
37
+ * const config = {}; // type is BedrockAgentCoreControlClientConfig
38
+ * const client = new BedrockAgentCoreControlClient(config);
39
+ * const input = { // CreateRegistryRequest
40
+ * name: "STRING_VALUE", // required
41
+ * description: "STRING_VALUE",
42
+ * authorizerType: "CUSTOM_JWT" || "AWS_IAM",
43
+ * authorizerConfiguration: { // AuthorizerConfiguration Union: only one key present
44
+ * customJWTAuthorizer: { // CustomJWTAuthorizerConfiguration
45
+ * discoveryUrl: "STRING_VALUE", // required
46
+ * allowedAudience: [ // AllowedAudienceList
47
+ * "STRING_VALUE",
48
+ * ],
49
+ * allowedClients: [ // AllowedClientsList
50
+ * "STRING_VALUE",
51
+ * ],
52
+ * allowedScopes: [ // AllowedScopesType
53
+ * "STRING_VALUE",
54
+ * ],
55
+ * customClaims: [ // CustomClaimValidationsType
56
+ * { // CustomClaimValidationType
57
+ * inboundTokenClaimName: "STRING_VALUE", // required
58
+ * inboundTokenClaimValueType: "STRING" || "STRING_ARRAY", // required
59
+ * authorizingClaimMatchValue: { // AuthorizingClaimMatchValueType
60
+ * claimMatchValue: { // ClaimMatchValueType Union: only one key present
61
+ * matchValueString: "STRING_VALUE",
62
+ * matchValueStringList: [ // MatchValueStringList
63
+ * "STRING_VALUE",
64
+ * ],
65
+ * },
66
+ * claimMatchOperator: "EQUALS" || "CONTAINS" || "CONTAINS_ANY", // required
67
+ * },
68
+ * },
69
+ * ],
70
+ * },
71
+ * },
72
+ * clientToken: "STRING_VALUE",
73
+ * approvalConfiguration: { // ApprovalConfiguration
74
+ * autoApproval: true || false,
75
+ * },
76
+ * };
77
+ * const command = new CreateRegistryCommand(input);
78
+ * const response = await client.send(command);
79
+ * // { // CreateRegistryResponse
80
+ * // registryArn: "STRING_VALUE", // required
81
+ * // };
82
+ *
83
+ * ```
84
+ *
85
+ * @param CreateRegistryCommandInput - {@link CreateRegistryCommandInput}
86
+ * @returns {@link CreateRegistryCommandOutput}
87
+ * @see {@link CreateRegistryCommandInput} for command's `input` shape.
88
+ * @see {@link CreateRegistryCommandOutput} for command's `response` shape.
89
+ * @see {@link BedrockAgentCoreControlClientResolvedConfig | config} for BedrockAgentCoreControlClient's `config` shape.
90
+ *
91
+ * @throws {@link AccessDeniedException} (client fault)
92
+ * <p>This exception is thrown when a request is denied per access permissions</p>
93
+ *
94
+ * @throws {@link ConflictException} (client fault)
95
+ * <p>This exception is thrown when there is a conflict performing an operation</p>
96
+ *
97
+ * @throws {@link InternalServerException} (server fault)
98
+ * <p>This exception is thrown if there was an unexpected error during processing of request</p>
99
+ *
100
+ * @throws {@link ServiceQuotaExceededException} (client fault)
101
+ * <p>This exception is thrown when a request is made beyond the service quota</p>
102
+ *
103
+ * @throws {@link ThrottlingException} (client fault)
104
+ * <p>This exception is thrown when the number of requests exceeds the limit</p>
105
+ *
106
+ * @throws {@link ValidationException} (client fault)
107
+ * <p>The input fails to satisfy the constraints specified by the service.</p>
108
+ *
109
+ * @throws {@link BedrockAgentCoreControlServiceException}
110
+ * <p>Base exception class for all service exceptions from BedrockAgentCoreControl service.</p>
111
+ *
112
+ *
113
+ * @public
114
+ */
115
+ export declare class CreateRegistryCommand extends CreateRegistryCommand_base {
116
+ /** @internal type navigation helper, not in runtime. */
117
+ protected static __types: {
118
+ api: {
119
+ input: CreateRegistryRequest;
120
+ output: CreateRegistryResponse;
121
+ };
122
+ sdk: {
123
+ input: CreateRegistryCommandInput;
124
+ output: CreateRegistryCommandOutput;
125
+ };
126
+ };
127
+ }
@@ -0,0 +1,159 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreControlClient";
4
+ import type { CreateRegistryRecordRequest, CreateRegistryRecordResponse } from "../models/models_1";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link CreateRegistryRecordCommand}.
14
+ */
15
+ export interface CreateRegistryRecordCommandInput extends CreateRegistryRecordRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link CreateRegistryRecordCommand}.
21
+ */
22
+ export interface CreateRegistryRecordCommandOutput extends CreateRegistryRecordResponse, __MetadataBearer {
23
+ }
24
+ declare const CreateRegistryRecordCommand_base: {
25
+ new (input: CreateRegistryRecordCommandInput): import("@smithy/smithy-client").CommandImpl<CreateRegistryRecordCommandInput, CreateRegistryRecordCommandOutput, BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: CreateRegistryRecordCommandInput): import("@smithy/smithy-client").CommandImpl<CreateRegistryRecordCommandInput, CreateRegistryRecordCommandOutput, BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Creates a new registry record within the specified registry. A registry record represents an individual AI resource's metadata in the registry. This could be an MCP server (and associated tools), A2A agent, agent skill, or a custom resource with a custom schema.</p> <p>The record is processed asynchronously and returns HTTP 202 Accepted.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { BedrockAgentCoreControlClient, CreateRegistryRecordCommand } from "@aws-sdk/client-bedrock-agentcore-control"; // ES Modules import
35
+ * // const { BedrockAgentCoreControlClient, CreateRegistryRecordCommand } = require("@aws-sdk/client-bedrock-agentcore-control"); // CommonJS import
36
+ * // import type { BedrockAgentCoreControlClientConfig } from "@aws-sdk/client-bedrock-agentcore-control";
37
+ * const config = {}; // type is BedrockAgentCoreControlClientConfig
38
+ * const client = new BedrockAgentCoreControlClient(config);
39
+ * const input = { // CreateRegistryRecordRequest
40
+ * registryId: "STRING_VALUE", // required
41
+ * name: "STRING_VALUE", // required
42
+ * description: "STRING_VALUE",
43
+ * descriptorType: "MCP" || "A2A" || "CUSTOM" || "AGENT_SKILLS", // required
44
+ * descriptors: { // Descriptors
45
+ * mcp: { // McpDescriptor
46
+ * server: { // ServerDefinition
47
+ * schemaVersion: "STRING_VALUE",
48
+ * inlineContent: "STRING_VALUE",
49
+ * },
50
+ * tools: { // ToolsDefinition
51
+ * protocolVersion: "STRING_VALUE",
52
+ * inlineContent: "STRING_VALUE",
53
+ * },
54
+ * },
55
+ * a2a: { // A2aDescriptor
56
+ * agentCard: { // AgentCardDefinition
57
+ * schemaVersion: "STRING_VALUE",
58
+ * inlineContent: "STRING_VALUE",
59
+ * },
60
+ * },
61
+ * custom: { // CustomDescriptor
62
+ * inlineContent: "STRING_VALUE",
63
+ * },
64
+ * agentSkills: { // AgentSkillsDescriptor
65
+ * skillMd: { // SkillMdDefinition
66
+ * inlineContent: "STRING_VALUE",
67
+ * },
68
+ * skillDefinition: { // SkillDefinition
69
+ * schemaVersion: "STRING_VALUE",
70
+ * inlineContent: "STRING_VALUE",
71
+ * },
72
+ * },
73
+ * },
74
+ * recordVersion: "STRING_VALUE",
75
+ * synchronizationType: "URL",
76
+ * synchronizationConfiguration: { // SynchronizationConfiguration
77
+ * fromUrl: { // FromUrlSynchronizationConfiguration
78
+ * url: "STRING_VALUE", // required
79
+ * credentialProviderConfigurations: [ // RegistryRecordCredentialProviderConfigurationList
80
+ * { // RegistryRecordCredentialProviderConfiguration
81
+ * credentialProviderType: "OAUTH" || "IAM", // required
82
+ * credentialProvider: { // RegistryRecordCredentialProviderUnion Union: only one key present
83
+ * oauthCredentialProvider: { // RegistryRecordOAuthCredentialProvider
84
+ * providerArn: "STRING_VALUE", // required
85
+ * grantType: "CLIENT_CREDENTIALS",
86
+ * scopes: [ // ScopeList
87
+ * "STRING_VALUE",
88
+ * ],
89
+ * customParameters: { // CustomParameterMap
90
+ * "<keys>": "STRING_VALUE",
91
+ * },
92
+ * },
93
+ * iamCredentialProvider: { // RegistryRecordIamCredentialProvider
94
+ * roleArn: "STRING_VALUE",
95
+ * service: "STRING_VALUE",
96
+ * region: "STRING_VALUE",
97
+ * },
98
+ * },
99
+ * },
100
+ * ],
101
+ * },
102
+ * },
103
+ * clientToken: "STRING_VALUE",
104
+ * };
105
+ * const command = new CreateRegistryRecordCommand(input);
106
+ * const response = await client.send(command);
107
+ * // { // CreateRegistryRecordResponse
108
+ * // recordArn: "STRING_VALUE", // required
109
+ * // status: "DRAFT" || "PENDING_APPROVAL" || "APPROVED" || "REJECTED" || "DEPRECATED" || "CREATING" || "UPDATING" || "CREATE_FAILED" || "UPDATE_FAILED", // required
110
+ * // };
111
+ *
112
+ * ```
113
+ *
114
+ * @param CreateRegistryRecordCommandInput - {@link CreateRegistryRecordCommandInput}
115
+ * @returns {@link CreateRegistryRecordCommandOutput}
116
+ * @see {@link CreateRegistryRecordCommandInput} for command's `input` shape.
117
+ * @see {@link CreateRegistryRecordCommandOutput} for command's `response` shape.
118
+ * @see {@link BedrockAgentCoreControlClientResolvedConfig | config} for BedrockAgentCoreControlClient's `config` shape.
119
+ *
120
+ * @throws {@link AccessDeniedException} (client fault)
121
+ * <p>This exception is thrown when a request is denied per access permissions</p>
122
+ *
123
+ * @throws {@link ConflictException} (client fault)
124
+ * <p>This exception is thrown when there is a conflict performing an operation</p>
125
+ *
126
+ * @throws {@link InternalServerException} (server fault)
127
+ * <p>This exception is thrown if there was an unexpected error during processing of request</p>
128
+ *
129
+ * @throws {@link ResourceNotFoundException} (client fault)
130
+ * <p>This exception is thrown when a resource referenced by the operation does not exist</p>
131
+ *
132
+ * @throws {@link ServiceQuotaExceededException} (client fault)
133
+ * <p>This exception is thrown when a request is made beyond the service quota</p>
134
+ *
135
+ * @throws {@link ThrottlingException} (client fault)
136
+ * <p>This exception is thrown when the number of requests exceeds the limit</p>
137
+ *
138
+ * @throws {@link ValidationException} (client fault)
139
+ * <p>The input fails to satisfy the constraints specified by the service.</p>
140
+ *
141
+ * @throws {@link BedrockAgentCoreControlServiceException}
142
+ * <p>Base exception class for all service exceptions from BedrockAgentCoreControl service.</p>
143
+ *
144
+ *
145
+ * @public
146
+ */
147
+ export declare class CreateRegistryRecordCommand extends CreateRegistryRecordCommand_base {
148
+ /** @internal type navigation helper, not in runtime. */
149
+ protected static __types: {
150
+ api: {
151
+ input: CreateRegistryRecordRequest;
152
+ output: CreateRegistryRecordResponse;
153
+ };
154
+ sdk: {
155
+ input: CreateRegistryRecordCommandInput;
156
+ output: CreateRegistryRecordCommandOutput;
157
+ };
158
+ };
159
+ }