@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
package/README.md CHANGED
@@ -279,6 +279,20 @@ CreatePolicyEngine
279
279
  </details>
280
280
  <details>
281
281
  <summary>
282
+ CreateRegistry
283
+ </summary>
284
+
285
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/CreateRegistryCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/CreateRegistryCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/CreateRegistryCommandOutput/)
286
+ </details>
287
+ <details>
288
+ <summary>
289
+ CreateRegistryRecord
290
+ </summary>
291
+
292
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/CreateRegistryRecordCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/CreateRegistryRecordCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/CreateRegistryRecordCommandOutput/)
293
+ </details>
294
+ <details>
295
+ <summary>
282
296
  CreateWorkloadIdentity
283
297
  </summary>
284
298
 
@@ -384,6 +398,20 @@ DeletePolicyEngine
384
398
  </details>
385
399
  <details>
386
400
  <summary>
401
+ DeleteRegistry
402
+ </summary>
403
+
404
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/DeleteRegistryCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/DeleteRegistryCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/DeleteRegistryCommandOutput/)
405
+ </details>
406
+ <details>
407
+ <summary>
408
+ DeleteRegistryRecord
409
+ </summary>
410
+
411
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/DeleteRegistryRecordCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/DeleteRegistryRecordCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/DeleteRegistryRecordCommandOutput/)
412
+ </details>
413
+ <details>
414
+ <summary>
387
415
  DeleteResourcePolicy
388
416
  </summary>
389
417
 
@@ -503,6 +531,20 @@ GetPolicyGeneration
503
531
  </details>
504
532
  <details>
505
533
  <summary>
534
+ GetRegistry
535
+ </summary>
536
+
537
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/GetRegistryCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/GetRegistryCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/GetRegistryCommandOutput/)
538
+ </details>
539
+ <details>
540
+ <summary>
541
+ GetRegistryRecord
542
+ </summary>
543
+
544
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/GetRegistryRecordCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/GetRegistryRecordCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/GetRegistryRecordCommandOutput/)
545
+ </details>
546
+ <details>
547
+ <summary>
506
548
  GetResourcePolicy
507
549
  </summary>
508
550
 
@@ -643,6 +685,20 @@ ListPolicyGenerations
643
685
  </details>
644
686
  <details>
645
687
  <summary>
688
+ ListRegistries
689
+ </summary>
690
+
691
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/ListRegistriesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/ListRegistriesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/ListRegistriesCommandOutput/)
692
+ </details>
693
+ <details>
694
+ <summary>
695
+ ListRegistryRecords
696
+ </summary>
697
+
698
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/ListRegistryRecordsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/ListRegistryRecordsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/ListRegistryRecordsCommandOutput/)
699
+ </details>
700
+ <details>
701
+ <summary>
646
702
  ListTagsForResource
647
703
  </summary>
648
704
 
@@ -678,6 +734,13 @@ StartPolicyGeneration
678
734
  </details>
679
735
  <details>
680
736
  <summary>
737
+ SubmitRegistryRecordForApproval
738
+ </summary>
739
+
740
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/SubmitRegistryRecordForApprovalCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/SubmitRegistryRecordForApprovalCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/SubmitRegistryRecordForApprovalCommandOutput/)
741
+ </details>
742
+ <details>
743
+ <summary>
681
744
  SynchronizeGatewayTargets
682
745
  </summary>
683
746
 
@@ -776,6 +839,27 @@ UpdatePolicyEngine
776
839
  </details>
777
840
  <details>
778
841
  <summary>
842
+ UpdateRegistry
843
+ </summary>
844
+
845
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/UpdateRegistryCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/UpdateRegistryCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/UpdateRegistryCommandOutput/)
846
+ </details>
847
+ <details>
848
+ <summary>
849
+ UpdateRegistryRecord
850
+ </summary>
851
+
852
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/UpdateRegistryRecordCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/UpdateRegistryRecordCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/UpdateRegistryRecordCommandOutput/)
853
+ </details>
854
+ <details>
855
+ <summary>
856
+ UpdateRegistryRecordStatus
857
+ </summary>
858
+
859
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/bedrock-agentcore-control/command/UpdateRegistryRecordStatusCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/UpdateRegistryRecordStatusCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-bedrock-agentcore-control/Interface/UpdateRegistryRecordStatusCommandOutput/)
860
+ </details>
861
+ <details>
862
+ <summary>
779
863
  UpdateWorkloadIdentity
780
864
  </summary>
781
865
 
package/dist-cjs/index.js CHANGED
@@ -282,6 +282,30 @@ class CreatePolicyEngineCommand extends smithyClient.Command
282
282
  .build() {
283
283
  }
284
284
 
285
+ class CreateRegistryCommand extends smithyClient.Command
286
+ .classBuilder()
287
+ .ep(commonParams)
288
+ .m(function (Command, cs, config, o) {
289
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
290
+ })
291
+ .s("AmazonBedrockAgentCoreControl", "CreateRegistry", {})
292
+ .n("BedrockAgentCoreControlClient", "CreateRegistryCommand")
293
+ .sc(schemas_0.CreateRegistry$)
294
+ .build() {
295
+ }
296
+
297
+ class CreateRegistryRecordCommand extends smithyClient.Command
298
+ .classBuilder()
299
+ .ep(commonParams)
300
+ .m(function (Command, cs, config, o) {
301
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
302
+ })
303
+ .s("AmazonBedrockAgentCoreControl", "CreateRegistryRecord", {})
304
+ .n("BedrockAgentCoreControlClient", "CreateRegistryRecordCommand")
305
+ .sc(schemas_0.CreateRegistryRecord$)
306
+ .build() {
307
+ }
308
+
285
309
  class CreateWorkloadIdentityCommand extends smithyClient.Command
286
310
  .classBuilder()
287
311
  .ep(commonParams)
@@ -462,6 +486,30 @@ class DeletePolicyEngineCommand extends smithyClient.Command
462
486
  .build() {
463
487
  }
464
488
 
489
+ class DeleteRegistryCommand extends smithyClient.Command
490
+ .classBuilder()
491
+ .ep(commonParams)
492
+ .m(function (Command, cs, config, o) {
493
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
494
+ })
495
+ .s("AmazonBedrockAgentCoreControl", "DeleteRegistry", {})
496
+ .n("BedrockAgentCoreControlClient", "DeleteRegistryCommand")
497
+ .sc(schemas_0.DeleteRegistry$)
498
+ .build() {
499
+ }
500
+
501
+ class DeleteRegistryRecordCommand extends smithyClient.Command
502
+ .classBuilder()
503
+ .ep(commonParams)
504
+ .m(function (Command, cs, config, o) {
505
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
506
+ })
507
+ .s("AmazonBedrockAgentCoreControl", "DeleteRegistryRecord", {})
508
+ .n("BedrockAgentCoreControlClient", "DeleteRegistryRecordCommand")
509
+ .sc(schemas_0.DeleteRegistryRecord$)
510
+ .build() {
511
+ }
512
+
465
513
  class DeleteResourcePolicyCommand extends smithyClient.Command
466
514
  .classBuilder()
467
515
  .ep(commonParams)
@@ -666,6 +714,30 @@ class GetPolicyGenerationCommand extends smithyClient.Command
666
714
  .build() {
667
715
  }
668
716
 
717
+ class GetRegistryCommand extends smithyClient.Command
718
+ .classBuilder()
719
+ .ep(commonParams)
720
+ .m(function (Command, cs, config, o) {
721
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
722
+ })
723
+ .s("AmazonBedrockAgentCoreControl", "GetRegistry", {})
724
+ .n("BedrockAgentCoreControlClient", "GetRegistryCommand")
725
+ .sc(schemas_0.GetRegistry$)
726
+ .build() {
727
+ }
728
+
729
+ class GetRegistryRecordCommand extends smithyClient.Command
730
+ .classBuilder()
731
+ .ep(commonParams)
732
+ .m(function (Command, cs, config, o) {
733
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
734
+ })
735
+ .s("AmazonBedrockAgentCoreControl", "GetRegistryRecord", {})
736
+ .n("BedrockAgentCoreControlClient", "GetRegistryRecordCommand")
737
+ .sc(schemas_0.GetRegistryRecord$)
738
+ .build() {
739
+ }
740
+
669
741
  class GetResourcePolicyCommand extends smithyClient.Command
670
742
  .classBuilder()
671
743
  .ep(commonParams)
@@ -906,6 +978,30 @@ class ListPolicyGenerationsCommand extends smithyClient.Command
906
978
  .build() {
907
979
  }
908
980
 
981
+ class ListRegistriesCommand extends smithyClient.Command
982
+ .classBuilder()
983
+ .ep(commonParams)
984
+ .m(function (Command, cs, config, o) {
985
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
986
+ })
987
+ .s("AmazonBedrockAgentCoreControl", "ListRegistries", {})
988
+ .n("BedrockAgentCoreControlClient", "ListRegistriesCommand")
989
+ .sc(schemas_0.ListRegistries$)
990
+ .build() {
991
+ }
992
+
993
+ class ListRegistryRecordsCommand extends smithyClient.Command
994
+ .classBuilder()
995
+ .ep(commonParams)
996
+ .m(function (Command, cs, config, o) {
997
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
998
+ })
999
+ .s("AmazonBedrockAgentCoreControl", "ListRegistryRecords", {})
1000
+ .n("BedrockAgentCoreControlClient", "ListRegistryRecordsCommand")
1001
+ .sc(schemas_0.ListRegistryRecords$)
1002
+ .build() {
1003
+ }
1004
+
909
1005
  class ListTagsForResourceCommand extends smithyClient.Command
910
1006
  .classBuilder()
911
1007
  .ep(commonParams)
@@ -966,6 +1062,18 @@ class StartPolicyGenerationCommand extends smithyClient.Command
966
1062
  .build() {
967
1063
  }
968
1064
 
1065
+ class SubmitRegistryRecordForApprovalCommand extends smithyClient.Command
1066
+ .classBuilder()
1067
+ .ep(commonParams)
1068
+ .m(function (Command, cs, config, o) {
1069
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1070
+ })
1071
+ .s("AmazonBedrockAgentCoreControl", "SubmitRegistryRecordForApproval", {})
1072
+ .n("BedrockAgentCoreControlClient", "SubmitRegistryRecordForApprovalCommand")
1073
+ .sc(schemas_0.SubmitRegistryRecordForApproval$)
1074
+ .build() {
1075
+ }
1076
+
969
1077
  class SynchronizeGatewayTargetsCommand extends smithyClient.Command
970
1078
  .classBuilder()
971
1079
  .ep(commonParams)
@@ -1134,6 +1242,42 @@ class UpdatePolicyEngineCommand extends smithyClient.Command
1134
1242
  .build() {
1135
1243
  }
1136
1244
 
1245
+ class UpdateRegistryCommand extends smithyClient.Command
1246
+ .classBuilder()
1247
+ .ep(commonParams)
1248
+ .m(function (Command, cs, config, o) {
1249
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1250
+ })
1251
+ .s("AmazonBedrockAgentCoreControl", "UpdateRegistry", {})
1252
+ .n("BedrockAgentCoreControlClient", "UpdateRegistryCommand")
1253
+ .sc(schemas_0.UpdateRegistry$)
1254
+ .build() {
1255
+ }
1256
+
1257
+ class UpdateRegistryRecordCommand extends smithyClient.Command
1258
+ .classBuilder()
1259
+ .ep(commonParams)
1260
+ .m(function (Command, cs, config, o) {
1261
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1262
+ })
1263
+ .s("AmazonBedrockAgentCoreControl", "UpdateRegistryRecord", {})
1264
+ .n("BedrockAgentCoreControlClient", "UpdateRegistryRecordCommand")
1265
+ .sc(schemas_0.UpdateRegistryRecord$)
1266
+ .build() {
1267
+ }
1268
+
1269
+ class UpdateRegistryRecordStatusCommand extends smithyClient.Command
1270
+ .classBuilder()
1271
+ .ep(commonParams)
1272
+ .m(function (Command, cs, config, o) {
1273
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1274
+ })
1275
+ .s("AmazonBedrockAgentCoreControl", "UpdateRegistryRecordStatus", {})
1276
+ .n("BedrockAgentCoreControlClient", "UpdateRegistryRecordStatusCommand")
1277
+ .sc(schemas_0.UpdateRegistryRecordStatus$)
1278
+ .build() {
1279
+ }
1280
+
1137
1281
  class UpdateWorkloadIdentityCommand extends smithyClient.Command
1138
1282
  .classBuilder()
1139
1283
  .ep(commonParams)
@@ -1180,6 +1324,10 @@ const paginateListPolicyGenerationAssets = core.createPaginator(BedrockAgentCore
1180
1324
 
1181
1325
  const paginateListPolicyGenerations = core.createPaginator(BedrockAgentCoreControlClient, ListPolicyGenerationsCommand, "nextToken", "nextToken", "maxResults");
1182
1326
 
1327
+ const paginateListRegistries = core.createPaginator(BedrockAgentCoreControlClient, ListRegistriesCommand, "nextToken", "nextToken", "maxResults");
1328
+
1329
+ const paginateListRegistryRecords = core.createPaginator(BedrockAgentCoreControlClient, ListRegistryRecordsCommand, "nextToken", "nextToken", "maxResults");
1330
+
1183
1331
  const paginateListWorkloadIdentities = core.createPaginator(BedrockAgentCoreControlClient, ListWorkloadIdentitiesCommand, "nextToken", "nextToken", "maxResults");
1184
1332
 
1185
1333
  const checkState$5 = async (client, input) => {
@@ -1500,6 +1648,8 @@ const commands = {
1500
1648
  CreateOnlineEvaluationConfigCommand,
1501
1649
  CreatePolicyCommand,
1502
1650
  CreatePolicyEngineCommand,
1651
+ CreateRegistryCommand,
1652
+ CreateRegistryRecordCommand,
1503
1653
  CreateWorkloadIdentityCommand,
1504
1654
  DeleteAgentRuntimeCommand,
1505
1655
  DeleteAgentRuntimeEndpointCommand,
@@ -1515,6 +1665,8 @@ const commands = {
1515
1665
  DeleteOnlineEvaluationConfigCommand,
1516
1666
  DeletePolicyCommand,
1517
1667
  DeletePolicyEngineCommand,
1668
+ DeleteRegistryCommand,
1669
+ DeleteRegistryRecordCommand,
1518
1670
  DeleteResourcePolicyCommand,
1519
1671
  DeleteWorkloadIdentityCommand,
1520
1672
  GetAgentRuntimeCommand,
@@ -1532,6 +1684,8 @@ const commands = {
1532
1684
  GetPolicyCommand,
1533
1685
  GetPolicyEngineCommand,
1534
1686
  GetPolicyGenerationCommand,
1687
+ GetRegistryCommand,
1688
+ GetRegistryRecordCommand,
1535
1689
  GetResourcePolicyCommand,
1536
1690
  GetTokenVaultCommand,
1537
1691
  GetWorkloadIdentityCommand,
@@ -1552,11 +1706,14 @@ const commands = {
1552
1706
  ListPolicyEnginesCommand,
1553
1707
  ListPolicyGenerationAssetsCommand,
1554
1708
  ListPolicyGenerationsCommand,
1709
+ ListRegistriesCommand,
1710
+ ListRegistryRecordsCommand,
1555
1711
  ListTagsForResourceCommand,
1556
1712
  ListWorkloadIdentitiesCommand,
1557
1713
  PutResourcePolicyCommand,
1558
1714
  SetTokenVaultCMKCommand,
1559
1715
  StartPolicyGenerationCommand,
1716
+ SubmitRegistryRecordForApprovalCommand,
1560
1717
  SynchronizeGatewayTargetsCommand,
1561
1718
  TagResourceCommand,
1562
1719
  UntagResourceCommand,
@@ -1571,6 +1728,9 @@ const commands = {
1571
1728
  UpdateOnlineEvaluationConfigCommand,
1572
1729
  UpdatePolicyCommand,
1573
1730
  UpdatePolicyEngineCommand,
1731
+ UpdateRegistryCommand,
1732
+ UpdateRegistryRecordCommand,
1733
+ UpdateRegistryRecordStatusCommand,
1574
1734
  UpdateWorkloadIdentityCommand,
1575
1735
  };
1576
1736
  const paginators = {
@@ -1591,6 +1751,8 @@ const paginators = {
1591
1751
  paginateListPolicyEngines,
1592
1752
  paginateListPolicyGenerationAssets,
1593
1753
  paginateListPolicyGenerations,
1754
+ paginateListRegistries,
1755
+ paginateListRegistryRecords,
1594
1756
  paginateListWorkloadIdentities,
1595
1757
  };
1596
1758
  const waiters = {
@@ -1915,6 +2077,46 @@ const PolicyStatus = {
1915
2077
  UPDATE_FAILED: "UPDATE_FAILED",
1916
2078
  UPDATING: "UPDATING",
1917
2079
  };
2080
+ const DescriptorType = {
2081
+ A2A: "A2A",
2082
+ AGENT_SKILLS: "AGENT_SKILLS",
2083
+ CUSTOM: "CUSTOM",
2084
+ MCP: "MCP",
2085
+ };
2086
+ const RegistryRecordOAuthGrantType = {
2087
+ CLIENT_CREDENTIALS: "CLIENT_CREDENTIALS",
2088
+ };
2089
+ const RegistryRecordCredentialProviderType = {
2090
+ IAM: "IAM",
2091
+ OAUTH: "OAUTH",
2092
+ };
2093
+ const SynchronizationType = {
2094
+ URL: "URL",
2095
+ };
2096
+ const RegistryRecordStatus = {
2097
+ APPROVED: "APPROVED",
2098
+ CREATE_FAILED: "CREATE_FAILED",
2099
+ CREATING: "CREATING",
2100
+ DEPRECATED: "DEPRECATED",
2101
+ DRAFT: "DRAFT",
2102
+ PENDING_APPROVAL: "PENDING_APPROVAL",
2103
+ REJECTED: "REJECTED",
2104
+ UPDATE_FAILED: "UPDATE_FAILED",
2105
+ UPDATING: "UPDATING",
2106
+ };
2107
+ const RegistryAuthorizerType = {
2108
+ AWS_IAM: "AWS_IAM",
2109
+ CUSTOM_JWT: "CUSTOM_JWT",
2110
+ };
2111
+ const RegistryStatus = {
2112
+ CREATE_FAILED: "CREATE_FAILED",
2113
+ CREATING: "CREATING",
2114
+ DELETE_FAILED: "DELETE_FAILED",
2115
+ DELETING: "DELETING",
2116
+ READY: "READY",
2117
+ UPDATE_FAILED: "UPDATE_FAILED",
2118
+ UPDATING: "UPDATING",
2119
+ };
1918
2120
 
1919
2121
  exports.$Command = smithyClient.Command;
1920
2122
  exports.__Client = smithyClient.Client;
@@ -1949,6 +2151,8 @@ exports.CreateOauth2CredentialProviderCommand = CreateOauth2CredentialProviderCo
1949
2151
  exports.CreateOnlineEvaluationConfigCommand = CreateOnlineEvaluationConfigCommand;
1950
2152
  exports.CreatePolicyCommand = CreatePolicyCommand;
1951
2153
  exports.CreatePolicyEngineCommand = CreatePolicyEngineCommand;
2154
+ exports.CreateRegistryCommand = CreateRegistryCommand;
2155
+ exports.CreateRegistryRecordCommand = CreateRegistryRecordCommand;
1952
2156
  exports.CreateWorkloadIdentityCommand = CreateWorkloadIdentityCommand;
1953
2157
  exports.CredentialProviderType = CredentialProviderType;
1954
2158
  exports.CredentialProviderVendorType = CredentialProviderVendorType;
@@ -1966,8 +2170,11 @@ exports.DeleteOauth2CredentialProviderCommand = DeleteOauth2CredentialProviderCo
1966
2170
  exports.DeleteOnlineEvaluationConfigCommand = DeleteOnlineEvaluationConfigCommand;
1967
2171
  exports.DeletePolicyCommand = DeletePolicyCommand;
1968
2172
  exports.DeletePolicyEngineCommand = DeletePolicyEngineCommand;
2173
+ exports.DeleteRegistryCommand = DeleteRegistryCommand;
2174
+ exports.DeleteRegistryRecordCommand = DeleteRegistryRecordCommand;
1969
2175
  exports.DeleteResourcePolicyCommand = DeleteResourcePolicyCommand;
1970
2176
  exports.DeleteWorkloadIdentityCommand = DeleteWorkloadIdentityCommand;
2177
+ exports.DescriptorType = DescriptorType;
1971
2178
  exports.EndpointIpAddressType = EndpointIpAddressType;
1972
2179
  exports.EvaluatorLevel = EvaluatorLevel;
1973
2180
  exports.EvaluatorStatus = EvaluatorStatus;
@@ -1994,6 +2201,8 @@ exports.GetOnlineEvaluationConfigCommand = GetOnlineEvaluationConfigCommand;
1994
2201
  exports.GetPolicyCommand = GetPolicyCommand;
1995
2202
  exports.GetPolicyEngineCommand = GetPolicyEngineCommand;
1996
2203
  exports.GetPolicyGenerationCommand = GetPolicyGenerationCommand;
2204
+ exports.GetRegistryCommand = GetRegistryCommand;
2205
+ exports.GetRegistryRecordCommand = GetRegistryRecordCommand;
1997
2206
  exports.GetResourcePolicyCommand = GetResourcePolicyCommand;
1998
2207
  exports.GetTokenVaultCommand = GetTokenVaultCommand;
1999
2208
  exports.GetWorkloadIdentityCommand = GetWorkloadIdentityCommand;
@@ -2016,6 +2225,8 @@ exports.ListPoliciesCommand = ListPoliciesCommand;
2016
2225
  exports.ListPolicyEnginesCommand = ListPolicyEnginesCommand;
2017
2226
  exports.ListPolicyGenerationAssetsCommand = ListPolicyGenerationAssetsCommand;
2018
2227
  exports.ListPolicyGenerationsCommand = ListPolicyGenerationsCommand;
2228
+ exports.ListRegistriesCommand = ListRegistriesCommand;
2229
+ exports.ListRegistryRecordsCommand = ListRegistryRecordsCommand;
2019
2230
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2020
2231
  exports.ListWorkloadIdentitiesCommand = ListWorkloadIdentitiesCommand;
2021
2232
  exports.MemoryStatus = MemoryStatus;
@@ -2032,6 +2243,11 @@ exports.PolicyGenerationStatus = PolicyGenerationStatus;
2032
2243
  exports.PolicyStatus = PolicyStatus;
2033
2244
  exports.PolicyValidationMode = PolicyValidationMode;
2034
2245
  exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
2246
+ exports.RegistryAuthorizerType = RegistryAuthorizerType;
2247
+ exports.RegistryRecordCredentialProviderType = RegistryRecordCredentialProviderType;
2248
+ exports.RegistryRecordOAuthGrantType = RegistryRecordOAuthGrantType;
2249
+ exports.RegistryRecordStatus = RegistryRecordStatus;
2250
+ exports.RegistryStatus = RegistryStatus;
2035
2251
  exports.ResourceType = ResourceType;
2036
2252
  exports.RestApiMethod = RestApiMethod;
2037
2253
  exports.SchemaType = SchemaType;
@@ -2039,6 +2255,8 @@ exports.SearchType = SearchType;
2039
2255
  exports.ServerProtocol = ServerProtocol;
2040
2256
  exports.SetTokenVaultCMKCommand = SetTokenVaultCMKCommand;
2041
2257
  exports.StartPolicyGenerationCommand = StartPolicyGenerationCommand;
2258
+ exports.SubmitRegistryRecordForApprovalCommand = SubmitRegistryRecordForApprovalCommand;
2259
+ exports.SynchronizationType = SynchronizationType;
2042
2260
  exports.SynchronizeGatewayTargetsCommand = SynchronizeGatewayTargetsCommand;
2043
2261
  exports.TagResourceCommand = TagResourceCommand;
2044
2262
  exports.TargetStatus = TargetStatus;
@@ -2054,6 +2272,9 @@ exports.UpdateOauth2CredentialProviderCommand = UpdateOauth2CredentialProviderCo
2054
2272
  exports.UpdateOnlineEvaluationConfigCommand = UpdateOnlineEvaluationConfigCommand;
2055
2273
  exports.UpdatePolicyCommand = UpdatePolicyCommand;
2056
2274
  exports.UpdatePolicyEngineCommand = UpdatePolicyEngineCommand;
2275
+ exports.UpdateRegistryCommand = UpdateRegistryCommand;
2276
+ exports.UpdateRegistryRecordCommand = UpdateRegistryRecordCommand;
2277
+ exports.UpdateRegistryRecordStatusCommand = UpdateRegistryRecordStatusCommand;
2057
2278
  exports.UpdateWorkloadIdentityCommand = UpdateWorkloadIdentityCommand;
2058
2279
  exports.ValidationExceptionReason = ValidationExceptionReason;
2059
2280
  exports.paginateListAgentRuntimeEndpoints = paginateListAgentRuntimeEndpoints;
@@ -2073,6 +2294,8 @@ exports.paginateListPolicies = paginateListPolicies;
2073
2294
  exports.paginateListPolicyEngines = paginateListPolicyEngines;
2074
2295
  exports.paginateListPolicyGenerationAssets = paginateListPolicyGenerationAssets;
2075
2296
  exports.paginateListPolicyGenerations = paginateListPolicyGenerations;
2297
+ exports.paginateListRegistries = paginateListRegistries;
2298
+ exports.paginateListRegistryRecords = paginateListRegistryRecords;
2076
2299
  exports.paginateListWorkloadIdentities = paginateListWorkloadIdentities;
2077
2300
  exports.waitForMemoryCreated = waitForMemoryCreated;
2078
2301
  exports.waitForPolicyActive = waitForPolicyActive;