@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
@@ -1,7 +1,10 @@
1
- const _AC = "AuthorizerConfiguration";
1
+ const _AC = "ApprovalConfiguration";
2
+ const _ACD = "AgentCardDefinition";
2
3
  const _ACMVT = "AuthorizingClaimMatchValueType";
3
- const _AD = "AuthorizationData";
4
+ const _ACu = "AuthorizerConfiguration";
5
+ const _AD = "A2aDescriptor";
4
6
  const _ADE = "AccessDeniedException";
7
+ const _ADu = "AuthorizationData";
5
8
  const _AGTC = "ApiGatewayTargetConfiguration";
6
9
  const _AGTCp = "ApiGatewayToolConfiguration";
7
10
  const _AGTF = "ApiGatewayToolFilter";
@@ -19,6 +22,7 @@ const _ARE = "AgentRuntimeEndpoint";
19
22
  const _AREg = "AgentRuntimeEndpoints";
20
23
  const _ARg = "AgentRuntimes";
21
24
  const _ASC = "ApiSchemaConfiguration";
25
+ const _ASD = "AgentSkillsDescriptor";
22
26
  const _BEMC = "BedrockEvaluatorModelConfig";
23
27
  const _BEP = "BrowserEnterprisePolicy";
24
28
  const _BEPr = "BrowserEnterprisePolicies";
@@ -59,6 +63,7 @@ const _CCVTu = "CustomClaimValidationsType";
59
63
  const _CCo = "ContainerConfiguration";
60
64
  const _CCon = "ContentConfiguration";
61
65
  const _CCons = "ConsolidationConfiguration";
66
+ const _CD = "CustomDescriptor";
62
67
  const _CE = "ConflictException";
63
68
  const _CEC = "CustomExtractionConfiguration";
64
69
  const _CECI = "CustomExtractionConfigurationInput";
@@ -100,8 +105,14 @@ const _CPR = "CreatePolicyRequest";
100
105
  const _CPRr = "CreatePolicyResponse";
101
106
  const _CPr = "CredentialProvider";
102
107
  const _CPre = "CreatePolicy";
108
+ const _CR = "CreateRegistry";
103
109
  const _CRC = "CustomReflectionConfiguration";
104
110
  const _CRCI = "CustomReflectionConfigurationInput";
111
+ const _CRR = "CreateRegistryRequest";
112
+ const _CRRR = "CreateRegistryRecordRequest";
113
+ const _CRRRr = "CreateRegistryRecordResponse";
114
+ const _CRRr = "CreateRegistryResponse";
115
+ const _CRRre = "CreateRegistryRecord";
105
116
  const _CSD = "CategoricalScaleDefinition";
106
117
  const _CSDa = "CategoricalScaleDefinitions";
107
118
  const _CST = "ClientSecretType";
@@ -159,13 +170,20 @@ const _DPER = "DeletePolicyEngineRequest";
159
170
  const _DPERe = "DeletePolicyEngineResponse";
160
171
  const _DPR = "DeletePolicyRequest";
161
172
  const _DPRe = "DeletePolicyResponse";
173
+ const _DR = "DeleteRegistry";
162
174
  const _DRP = "DeleteResourcePolicy";
163
175
  const _DRPR = "DeleteResourcePolicyRequest";
164
176
  const _DRPRe = "DeleteResourcePolicyResponse";
177
+ const _DRR = "DeleteRegistryRequest";
178
+ const _DRRR = "DeleteRegistryRecordRequest";
179
+ const _DRRRe = "DeleteRegistryRecordResponse";
180
+ const _DRRe = "DeleteRegistryResponse";
181
+ const _DRRel = "DeleteRegistryRecord";
165
182
  const _DSC = "DataSourceConfig";
166
183
  const _DWI = "DeleteWorkloadIdentity";
167
184
  const _DWIR = "DeleteWorkloadIdentityRequest";
168
185
  const _DWIRe = "DeleteWorkloadIdentityResponse";
186
+ const _De = "Descriptors";
169
187
  const _EC = "EvaluatorConfig";
170
188
  const _ECD = "EvaluationConfigDescription";
171
189
  const _ECO = "EpisodicConsolidationOverride";
@@ -193,6 +211,7 @@ const _F = "Filter";
193
211
  const _FC = "FilesystemConfigurations";
194
212
  const _FCi = "FilesystemConfiguration";
195
213
  const _FL = "FilterList";
214
+ const _FUSC = "FromUrlSynchronizationConfiguration";
196
215
  const _FV = "FilterValue";
197
216
  const _Fi = "Finding";
198
217
  const _Fin = "Findings";
@@ -252,9 +271,15 @@ const _GPGR = "GetPolicyGenerationRequest";
252
271
  const _GPGRe = "GetPolicyGenerationResponse";
253
272
  const _GPR = "GetPolicyRequest";
254
273
  const _GPRe = "GetPolicyResponse";
274
+ const _GR = "GetRegistry";
255
275
  const _GRP = "GetResourcePolicy";
256
276
  const _GRPR = "GetResourcePolicyRequest";
257
277
  const _GRPRe = "GetResourcePolicyResponse";
278
+ const _GRR = "GetRegistryRequest";
279
+ const _GRRR = "GetRegistryRecordRequest";
280
+ const _GRRRe = "GetRegistryRecordResponse";
281
+ const _GRRe = "GetRegistryResponse";
282
+ const _GRRet = "GetRegistryRecord";
258
283
  const _GS = "GatewaySummary";
259
284
  const _GSa = "GatewaySummaries";
260
285
  const _GT = "GatewayTarget";
@@ -334,6 +359,12 @@ const _LPGR = "ListPolicyGenerationsRequest";
334
359
  const _LPGRi = "ListPolicyGenerationsResponse";
335
360
  const _LPR = "ListPoliciesRequest";
336
361
  const _LPRi = "ListPoliciesResponse";
362
+ const _LR = "ListRegistries";
363
+ const _LRR = "ListRegistriesRequest";
364
+ const _LRRR = "ListRegistryRecordsRequest";
365
+ const _LRRRi = "ListRegistryRecordsResponse";
366
+ const _LRRi = "ListRegistriesResponse";
367
+ const _LRRis = "ListRegistryRecords";
337
368
  const _LTFR = "ListTagsForResource";
338
369
  const _LTFRR = "ListTagsForResourceRequest";
339
370
  const _LTFRRi = "ListTagsForResourceResponse";
@@ -346,6 +377,7 @@ const _MBTI = "MessageBasedTriggerInput";
346
377
  const _MC = "MetadataConfiguration";
347
378
  const _MCC = "ModifyConsolidationConfiguration";
348
379
  const _MCPGC = "MCPGatewayConfiguration";
380
+ const _MD = "McpDescriptor";
349
381
  const _MEC = "ModifyExtractionConfiguration";
350
382
  const _MICI = "ModifyInvocationConfigurationInput";
351
383
  const _MLR = "ManagedLatticeResource";
@@ -409,7 +441,16 @@ const _RL = "ResourceLocation";
409
441
  const _RLEE = "ResourceLimitExceededException";
410
442
  const _RMC = "RuntimeMetadataConfiguration";
411
443
  const _RNFE = "ResourceNotFoundException";
412
- const _RS = "RatingScale";
444
+ const _RRCPC = "RegistryRecordCredentialProviderConfiguration";
445
+ const _RRCPCL = "RegistryRecordCredentialProviderConfigurationList";
446
+ const _RRCPU = "RegistryRecordCredentialProviderUnion";
447
+ const _RRICP = "RegistryRecordIamCredentialProvider";
448
+ const _RROACP = "RegistryRecordOAuthCredentialProvider";
449
+ const _RRS = "RegistryRecordSummary";
450
+ const _RRSL = "RegistryRecordSummaryList";
451
+ const _RS = "RegistrySummary";
452
+ const _RSL = "RegistrySummaryList";
453
+ const _RSa = "RatingScale";
413
454
  const _Re = "Resource";
414
455
  const _S = "Secret";
415
456
  const _SC = "S3Configuration";
@@ -418,10 +459,13 @@ const _SCOu = "SummaryConsolidationOverride";
418
459
  const _SCa = "SamplingConfig";
419
460
  const _SCe = "SessionConfig";
420
461
  const _SCt = "StrategyConfiguration";
462
+ const _SCy = "SynchronizationConfiguration";
421
463
  const _SD = "SchemaDefinition";
422
464
  const _SDR = "StreamDeliveryResources";
423
465
  const _SDRL = "StreamDeliveryResourcesList";
424
466
  const _SDRt = "StreamDeliveryResource";
467
+ const _SDe = "ServerDefinition";
468
+ const _SDk = "SkillDefinition";
425
469
  const _SE = "ServiceException";
426
470
  const _SEO = "SemanticExtractionOverride";
427
471
  const _SGT = "SynchronizeGatewayTargets";
@@ -430,6 +474,7 @@ const _SGTRy = "SynchronizeGatewayTargetsResponse";
430
474
  const _SL = "S3Location";
431
475
  const _SMC = "SelfManagedConfiguration";
432
476
  const _SMCI = "SelfManagedConfigurationInput";
477
+ const _SMD = "SkillMdDefinition";
433
478
  const _SML = "SecretsManagerLocation";
434
479
  const _SMLR = "SelfManagedLatticeResource";
435
480
  const _SMSI = "SemanticMemoryStrategyInput";
@@ -448,6 +493,9 @@ const _SPG = "StartPolicyGeneration";
448
493
  const _SPGR = "StartPolicyGenerationRequest";
449
494
  const _SPGRt = "StartPolicyGenerationResponse";
450
495
  const _SQEE = "ServiceQuotaExceededException";
496
+ const _SRRFA = "SubmitRegistryRecordForApproval";
497
+ const _SRRFAR = "SubmitRegistryRecordForApprovalRequest";
498
+ const _SRRFARu = "SubmitRegistryRecordForApprovalResponse";
451
499
  const _SSC = "SessionStorageConfiguration";
452
500
  const _STVCMK = "SetTokenVaultCMK";
453
501
  const _STVCMKR = "SetTokenVaultCMKRequest";
@@ -463,7 +511,8 @@ const _TCL = "TriggerConditionsList";
463
511
  const _TCr = "TriggerCondition";
464
512
  const _TD = "TargetDescription";
465
513
  const _TDo = "ToolDefinition";
466
- const _TDoo = "ToolDefinitions";
514
+ const _TDoo = "ToolsDefinition";
515
+ const _TDool = "ToolDefinitions";
467
516
  const _TE = "ThrottledException";
468
517
  const _TEh = "ThrottlingException";
469
518
  const _TN = "TargetName";
@@ -473,6 +522,9 @@ const _TRRa = "TagResourceResponse";
473
522
  const _TS = "TargetSummary";
474
523
  const _TSa = "TargetSummaries";
475
524
  const _TSo = "ToolSchema";
525
+ const _UAC = "UpdatedApprovalConfiguration";
526
+ const _UACp = "UpdatedAuthorizerConfiguration";
527
+ const _UAD = "UpdatedA2aDescriptor";
476
528
  const _UAKCP = "UpdateApiKeyCredentialProvider";
477
529
  const _UAKCPR = "UpdateApiKeyCredentialProviderRequest";
478
530
  const _UAKCPRp = "UpdateApiKeyCredentialProviderResponse";
@@ -482,7 +534,12 @@ const _UARER = "UpdateAgentRuntimeEndpointRequest";
482
534
  const _UARERp = "UpdateAgentRuntimeEndpointResponse";
483
535
  const _UARR = "UpdateAgentRuntimeRequest";
484
536
  const _UARRp = "UpdateAgentRuntimeResponse";
537
+ const _UASD = "UpdatedAgentSkillsDescriptor";
538
+ const _UASDF = "UpdatedAgentSkillsDescriptorFields";
539
+ const _UCD = "UpdatedCustomDescriptor";
485
540
  const _UD = "UpdatedDescription";
541
+ const _UDU = "UpdatedDescriptorsUnion";
542
+ const _UDp = "UpdatedDescriptors";
486
543
  const _UE = "UnauthorizedException";
487
544
  const _UER = "UpdateEvaluatorRequest";
488
545
  const _UERp = "UpdateEvaluatorResponse";
@@ -494,6 +551,8 @@ const _UGT = "UpdateGatewayTarget";
494
551
  const _UGTR = "UpdateGatewayTargetRequest";
495
552
  const _UGTRp = "UpdateGatewayTargetResponse";
496
553
  const _UM = "UpdateMemory";
554
+ const _UMD = "UpdatedMcpDescriptor";
555
+ const _UMDF = "UpdatedMcpDescriptorFields";
497
556
  const _UMI = "UpdateMemoryInput";
498
557
  const _UMO = "UpdateMemoryOutput";
499
558
  const _UOCP = "UpdateOauth2CredentialProvider";
@@ -516,7 +575,22 @@ const _UPR = "UpdatePolicyRequest";
516
575
  const _UPRp = "UpdatePolicyResponse";
517
576
  const _UR = "UntagResource";
518
577
  const _URR = "UntagResourceRequest";
578
+ const _URRR = "UpdateRegistryRecordRequest";
579
+ const _URRRp = "UpdateRegistryRecordResponse";
580
+ const _URRS = "UpdateRegistryRecordStatus";
581
+ const _URRSR = "UpdateRegistryRecordStatusRequest";
582
+ const _URRSRp = "UpdateRegistryRecordStatusResponse";
519
583
  const _URRn = "UntagResourceResponse";
584
+ const _URRp = "UpdateRegistryRequest";
585
+ const _URRpd = "UpdateRegistryResponse";
586
+ const _URRpda = "UpdateRegistryRecord";
587
+ const _URp = "UpdateRegistry";
588
+ const _USC = "UpdatedSynchronizationConfiguration";
589
+ const _USD = "UpdatedServerDefinition";
590
+ const _USDp = "UpdatedSkillDefinition";
591
+ const _USMD = "UpdatedSkillMdDefinition";
592
+ const _UST = "UpdatedSynchronizationType";
593
+ const _UTD = "UpdatedToolsDefinition";
520
594
  const _UWI = "UpdateWorkloadIdentity";
521
595
  const _UWIR = "UpdateWorkloadIdentityRequest";
522
596
  const _UWIRp = "UpdateWorkloadIdentityResponse";
@@ -527,11 +601,14 @@ const _VEFL = "ValidationExceptionFieldList";
527
601
  const _WID = "WorkloadIdentityDetails";
528
602
  const _WIL = "WorkloadIdentityList";
529
603
  const _WIT = "WorkloadIdentityType";
530
- const _a = "arn";
531
- const _aA = "allowedAudience";
532
- const _aC = "authorizerConfiguration";
604
+ const _a = "a2a";
605
+ const _aA = "autoApproval";
606
+ const _aAl = "allowedAudience";
607
+ const _aC = "agentCard";
533
608
  const _aCMV = "authorizingClaimMatchValue";
534
609
  const _aCl = "allowedClients";
610
+ const _aCp = "approvalConfiguration";
611
+ const _aCu = "authorizerConfiguration";
535
612
  const _aD = "authorizationData";
536
613
  const _aE = "authorizationEndpoint";
537
614
  const _aG = "apiGateway";
@@ -555,9 +632,11 @@ const _aRORU = "allowedResourceOauth2ReturnUrls";
555
632
  const _aRV = "agentRuntimeVersion";
556
633
  const _aS = "allowedScopes";
557
634
  const _aSM = "authorizationServerMetadata";
635
+ const _aSg = "agentSkills";
558
636
  const _aT = "authorizerType";
559
637
  const _aTP = "appendToPrompt";
560
638
  const _aU = "authorizationUrl";
639
+ const _ar = "arn";
561
640
  const _b = "bucket";
562
641
  const _bA = "browserArn";
563
642
  const _bEMC = "bedrockEvaluatorModelConfig";
@@ -610,14 +689,17 @@ const _co = "code";
610
689
  const _con = "configuration";
611
690
  const _cons = "consolidation";
612
691
  const _cont = "content";
692
+ const _cu = "custom";
613
693
  const _d = "description";
614
694
  const _dMS = "deleteMemoryStrategies";
615
695
  const _dRU = "defaultReturnUrl";
616
696
  const _dSA = "dataStreamArn";
617
697
  const _dSC = "dataSourceConfig";
698
+ const _dT = "descriptorType";
618
699
  const _dU = "discoveryUrl";
619
700
  const _dV = "doubleValue";
620
701
  const _de = "definition";
702
+ const _des = "descriptors";
621
703
  const _do = "domain";
622
704
  const _e = "error";
623
705
  const _eA = "evaluatorArn";
@@ -652,6 +734,7 @@ const _fC = "filesystemConfigurations";
652
734
  const _fL = "fieldList";
653
735
  const _fP = "filterPath";
654
736
  const _fR = "failureReason";
737
+ const _fU = "fromUrl";
655
738
  const _fi = "filters";
656
739
  const _gA = "gatewayArn";
657
740
  const _gI = "gatewayId";
@@ -665,10 +748,11 @@ const _hCWS = "historicalContextWindowSize";
665
748
  const _hE = "httpError";
666
749
  const _hQ = "httpQuery";
667
750
  const _i = "id";
668
- const _iC = "inferenceConfig";
751
+ const _iC = "inlineContent";
669
752
  const _iCP = "iamCredentialProvider";
670
- const _iCn = "interceptorConfigurations";
753
+ const _iCn = "inferenceConfig";
671
754
  const _iCnp = "inputConfiguration";
755
+ const _iCnt = "interceptorConfigurations";
672
756
  const _iCnv = "invocationConfiguration";
673
757
  const _iOPC = "includedOauth2ProviderConfig";
674
758
  const _iP = "interceptionPoints";
@@ -781,6 +865,7 @@ const _pIo = "policyId";
781
865
  const _pRH = "passRequestHeaders";
782
866
  const _pS = "profileSummaries";
783
867
  const _pT = "protocolType";
868
+ const _pV = "protocolVersion";
784
869
  const _po = "policy";
785
870
  const _pol = "policies";
786
871
  const _pr = "prefix";
@@ -789,7 +874,9 @@ const _r = "reason";
789
874
  const _rA = "roleArn";
790
875
  const _rAA = "resourceAssociationArn";
791
876
  const _rAI = "restApiId";
792
- const _rAe = "resourceArn";
877
+ const _rAe = "recordArn";
878
+ const _rAeg = "registryArn";
879
+ const _rAes = "resourceArn";
793
880
  const _rC = "reflectionConfiguration";
794
881
  const _rCI = "resourceConfigurationIdentifier";
795
882
  const _rD = "routingDomain";
@@ -797,14 +884,19 @@ const _rE = "runtimeEndpoints";
797
884
  const _rGA = "resourceGatewayArn";
798
885
  const _rHA = "requestHeaderAllowlist";
799
886
  const _rHC = "requestHeaderConfiguration";
887
+ const _rI = "registryId";
888
+ const _rIe = "recordId";
800
889
  const _rMMDSV = "requireMMDSV2";
890
+ const _rR = "registryRecords";
801
891
  const _rS = "ratingScale";
802
892
  const _rT = "responseTypes";
803
893
  const _rTF = "rawTextFragment";
804
894
  const _rTa = "rawText";
895
+ const _rV = "recordVersion";
805
896
  const _re = "recording";
806
897
  const _ref = "reflection";
807
898
  const _reg = "region";
899
+ const _regi = "registries";
808
900
  const _req = "required";
809
901
  const _res = "resource";
810
902
  const _reso = "resources";
@@ -812,10 +904,12 @@ const _ru = "runtime";
812
904
  const _rul = "rule";
813
905
  const _s = "smithy.ts.sdk.synthetic.com.amazonaws.bedrockagentcorecontrol";
814
906
  const _sA = "secretArn";
815
- const _sC = "samplingConfig";
907
+ const _sC = "synchronizationConfiguration";
816
908
  const _sCO = "semanticConsolidationOverride";
817
909
  const _sCOu = "summaryConsolidationOverride";
910
+ const _sCa = "samplingConfig";
818
911
  const _sCe = "sessionConfig";
912
+ const _sD = "skillDefinition";
819
913
  const _sDR = "streamDeliveryResources";
820
914
  const _sEO = "semanticExtractionOverride";
821
915
  const _sG = "securityGroups";
@@ -823,11 +917,12 @@ const _sGI = "securityGroupIds";
823
917
  const _sI = "subnetIds";
824
918
  const _sIt = "strategyId";
825
919
  const _sL = "s3Location";
826
- const _sM = "secretsManager";
920
+ const _sM = "skillMd";
827
921
  const _sMC = "selfManagedConfiguration";
828
922
  const _sMLR = "selfManagedLatticeResource";
829
923
  const _sMS = "semanticMemoryStrategy";
830
924
  const _sMSu = "summaryMemoryStrategy";
925
+ const _sMe = "secretsManager";
831
926
  const _sMm = "smithyModel";
832
927
  const _sN = "serviceNames";
833
928
  const _sO = "semanticOverride";
@@ -837,12 +932,15 @@ const _sOu = "summaryOverride";
837
932
  const _sP = "serverProtocol";
838
933
  const _sPa = "samplingPercentage";
839
934
  const _sR = "statusReasons";
935
+ const _sRt = "statusReason";
840
936
  const _sS = "stopSequences";
841
937
  const _sSe = "sessionStorage";
842
- const _sT = "searchType";
938
+ const _sT = "synchronizationType";
843
939
  const _sTM = "sessionTimeoutMinutes";
844
- const _sV = "supportedVersions";
940
+ const _sTe = "searchType";
941
+ const _sV = "schemaVersion";
845
942
  const _sVt = "stringValue";
943
+ const _sVu = "supportedVersions";
846
944
  const _s_ = "s3";
847
945
  const _sc = "scopes";
848
946
  const _se = "server";
@@ -870,18 +968,21 @@ const _tO = "toolOverrides";
870
968
  const _tP = "topP";
871
969
  const _tRS = "targetResourceScope";
872
970
  const _tS = "toolSchema";
971
+ const _tSr = "triggerSynchronization";
873
972
  const _tV = "targetVersion";
874
973
  const _tVI = "tokenVaultId";
875
974
  const _ta = "tags";
876
975
  const _tar = "targets";
877
976
  const _te = "temperature";
878
- const _u = "uri";
977
+ const _to = "tools";
978
+ const _u = "url";
879
979
  const _uA = "updatedAt";
880
980
  const _uI = "userId";
881
981
  const _uPCO = "userPreferenceConsolidationOverride";
882
982
  const _uPEO = "userPreferenceExtractionOverride";
883
983
  const _uPMS = "userPreferenceMemoryStrategy";
884
984
  const _uPO = "userPreferenceOverride";
985
+ const _ur = "uri";
885
986
  const _v = "value";
886
987
  const _vC = "vpcConfig";
887
988
  const _vI = "vpcIdentifier";
@@ -1002,6 +1103,16 @@ var OAuthCustomParametersValue = [0, n0, _OACPV, 8, 0];
1002
1103
  var Prompt = [0, n0, _P, 8, 0];
1003
1104
  var TargetDescription = [0, n0, _TD, 8, 0];
1004
1105
  var TargetName = [0, n0, _TN, 8, 0];
1106
+ export var A2aDescriptor$ = [3, n0, _AD,
1107
+ 0,
1108
+ [_aC],
1109
+ [() => AgentCardDefinition$]
1110
+ ];
1111
+ export var AgentCardDefinition$ = [3, n0, _ACD,
1112
+ 0,
1113
+ [_sV, _iC],
1114
+ [0, 0]
1115
+ ];
1005
1116
  export var AgentRuntime$ = [3, n0, _AR,
1006
1117
  0,
1007
1118
  [_aRA, _aRI, _aRV, _aRN, _d, _lUA, _st],
@@ -1012,6 +1123,11 @@ export var AgentRuntimeEndpoint$ = [3, n0, _ARE,
1012
1123
  [_n, _aREA, _aRA, _st, _i, _cA, _lUA, _lV, _tV, _d],
1013
1124
  [[() => EndpointName, 0], 0, 0, 0, 0, 5, 5, 0, 0, 0], 7
1014
1125
  ];
1126
+ export var AgentSkillsDescriptor$ = [3, n0, _ASD,
1127
+ 0,
1128
+ [_sM, _sD],
1129
+ [() => SkillMdDefinition$, () => SkillDefinition$]
1130
+ ];
1015
1131
  export var ApiGatewayTargetConfiguration$ = [3, n0, _AGTC,
1016
1132
  0,
1017
1133
  [_rAI, _sta, _aGTC],
@@ -1037,6 +1153,11 @@ export var ApiKeyCredentialProviderItem$ = [3, n0, _AKCPI,
1037
1153
  [_n, _cPA, _cT, _lUT],
1038
1154
  [0, 0, 4, 4], 4
1039
1155
  ];
1156
+ export var ApprovalConfiguration$ = [3, n0, _AC,
1157
+ 0,
1158
+ [_aA],
1159
+ [2]
1160
+ ];
1040
1161
  export var AtlassianOauth2ProviderConfigInput$ = [3, n0, _AOPCI,
1041
1162
  0,
1042
1163
  [_cI, _cS],
@@ -1054,7 +1175,7 @@ export var AuthorizingClaimMatchValueType$ = [3, n0, _ACMVT,
1054
1175
  ];
1055
1176
  export var BedrockEvaluatorModelConfig$ = [3, n0, _BEMC,
1056
1177
  0,
1057
- [_mI, _iC, _aMRF],
1178
+ [_mI, _iCn, _aMRF],
1058
1179
  [0, () => InferenceConfiguration$, 15], 1
1059
1180
  ];
1060
1181
  export var BrowserEnterprisePolicy$ = [3, n0, _BEP,
@@ -1149,7 +1270,7 @@ export var CreateAgentRuntimeEndpointResponse$ = [3, n0, _CARERr,
1149
1270
  ];
1150
1271
  export var CreateAgentRuntimeRequest$ = [3, n0, _CARR,
1151
1272
  0,
1152
- [_aRN, _aRAg, _rA, _nC, _cTl, _d, _aC, _rHC, _pC, _lC, _eV, _fC, _ta],
1273
+ [_aRN, _aRAg, _rA, _nC, _cTl, _d, _aCu, _rHC, _pC, _lC, _eV, _fC, _ta],
1153
1274
  [0, () => AgentRuntimeArtifact$, 0, () => NetworkConfiguration$, [0, 4], [() => Description, 0], () => AuthorizerConfiguration$, () => RequestHeaderConfiguration$, () => ProtocolConfiguration$, () => LifecycleConfiguration$, [() => EnvironmentVariablesMap, 0], () => FilesystemConfigurations, 128 | 0], 4
1154
1275
  ];
1155
1276
  export var CreateAgentRuntimeResponse$ = [3, n0, _CARRr,
@@ -1209,12 +1330,12 @@ export var CreateEvaluatorResponse$ = [3, n0, _CERr,
1209
1330
  ];
1210
1331
  export var CreateGatewayRequest$ = [3, n0, _CGR,
1211
1332
  0,
1212
- [_n, _rA, _pT, _aT, _d, _cTl, _pC, _aC, _kKA, _iCn, _pEC, _eL, _ta],
1333
+ [_n, _rA, _pT, _aT, _d, _cTl, _pC, _aCu, _kKA, _iCnt, _pEC, _eL, _ta],
1213
1334
  [[() => GatewayName, 0], 0, 0, 0, [() => GatewayDescription, 0], [0, 4], () => GatewayProtocolConfiguration$, () => AuthorizerConfiguration$, 0, () => GatewayInterceptorConfigurations, () => GatewayPolicyEngineConfiguration$, 0, 128 | 0], 4
1214
1335
  ];
1215
1336
  export var CreateGatewayResponse$ = [3, n0, _CGRr,
1216
1337
  0,
1217
- [_gA, _gI, _cA, _uA, _st, _n, _pT, _aT, _gU, _sR, _d, _rA, _pC, _aC, _kKA, _iCn, _pEC, _wID, _eL],
1338
+ [_gA, _gI, _cA, _uA, _st, _n, _pT, _aT, _gU, _sR, _d, _rA, _pC, _aCu, _kKA, _iCnt, _pEC, _wID, _eL],
1218
1339
  [0, 0, 5, 5, 0, [() => GatewayName, 0], 0, 0, 0, 64 | 0, [() => GatewayDescription, 0], 0, () => GatewayProtocolConfiguration$, () => AuthorizerConfiguration$, 0, () => GatewayInterceptorConfigurations, () => GatewayPolicyEngineConfiguration$, () => WorkloadIdentityDetails$, 0], 8
1219
1340
  ];
1220
1341
  export var CreateGatewayTargetRequest$ = [3, n0, _CGTR,
@@ -1277,6 +1398,26 @@ export var CreatePolicyResponse$ = [3, n0, _CPRr,
1277
1398
  [_pIo, _n, _pEI, _de, _cA, _uA, _pAo, _st, _sR, _d],
1278
1399
  [0, 0, 0, () => PolicyDefinition$, 5, 5, 0, 0, 64 | 0, [() => Description, 0]], 9
1279
1400
  ];
1401
+ export var CreateRegistryRecordRequest$ = [3, n0, _CRRR,
1402
+ 0,
1403
+ [_rI, _n, _dT, _d, _des, _rV, _sT, _sC, _cTl],
1404
+ [[0, 1], 0, 0, [() => Description, 0], () => Descriptors$, 0, 0, () => SynchronizationConfiguration$, [0, 4]], 3
1405
+ ];
1406
+ export var CreateRegistryRecordResponse$ = [3, n0, _CRRRr,
1407
+ 0,
1408
+ [_rAe, _st],
1409
+ [0, 0], 2
1410
+ ];
1411
+ export var CreateRegistryRequest$ = [3, n0, _CRR,
1412
+ 0,
1413
+ [_n, _d, _aT, _aCu, _cTl, _aCp],
1414
+ [0, [() => Description, 0], 0, () => AuthorizerConfiguration$, [0, 4], () => ApprovalConfiguration$], 1
1415
+ ];
1416
+ export var CreateRegistryResponse$ = [3, n0, _CRRr,
1417
+ 0,
1418
+ [_rAeg],
1419
+ [0], 1
1420
+ ];
1280
1421
  export var CreateWorkloadIdentityRequest$ = [3, n0, _CWIR,
1281
1422
  0,
1282
1423
  [_n, _aRORU, _ta],
@@ -1297,9 +1438,14 @@ export var CustomClaimValidationType$ = [3, n0, _CCVT,
1297
1438
  [_iTCN, _iTCVT, _aCMV],
1298
1439
  [0, 0, () => AuthorizingClaimMatchValueType$], 3
1299
1440
  ];
1441
+ export var CustomDescriptor$ = [3, n0, _CD,
1442
+ 0,
1443
+ [_iC],
1444
+ [0]
1445
+ ];
1300
1446
  export var CustomJWTAuthorizerConfiguration$ = [3, n0, _CJWTAC,
1301
1447
  0,
1302
- [_dU, _aA, _aCl, _aS, _cC],
1448
+ [_dU, _aAl, _aCl, _aS, _cC],
1303
1449
  [0, 64 | 0, 64 | 0, 64 | 0, () => CustomClaimValidationsType], 1
1304
1450
  ];
1305
1451
  export var CustomMemoryStrategyInput$ = [3, n0, _CMSI,
@@ -1462,9 +1608,29 @@ export var DeletePolicyResponse$ = [3, n0, _DPRe,
1462
1608
  [_pIo, _n, _pEI, _de, _cA, _uA, _pAo, _st, _sR, _d],
1463
1609
  [0, 0, 0, () => PolicyDefinition$, 5, 5, 0, 0, 64 | 0, [() => Description, 0]], 9
1464
1610
  ];
1611
+ export var DeleteRegistryRecordRequest$ = [3, n0, _DRRR,
1612
+ 0,
1613
+ [_rI, _rIe],
1614
+ [[0, 1], [0, 1]], 2
1615
+ ];
1616
+ export var DeleteRegistryRecordResponse$ = [3, n0, _DRRRe,
1617
+ 0,
1618
+ [],
1619
+ []
1620
+ ];
1621
+ export var DeleteRegistryRequest$ = [3, n0, _DRR,
1622
+ 0,
1623
+ [_rI],
1624
+ [[0, 1]], 1
1625
+ ];
1626
+ export var DeleteRegistryResponse$ = [3, n0, _DRRe,
1627
+ 0,
1628
+ [_st],
1629
+ [0], 1
1630
+ ];
1465
1631
  export var DeleteResourcePolicyRequest$ = [3, n0, _DRPR,
1466
1632
  0,
1467
- [_rAe],
1633
+ [_rAes],
1468
1634
  [[0, 1]], 1
1469
1635
  ];
1470
1636
  export var DeleteResourcePolicyResponse$ = [3, n0, _DRPRe,
@@ -1482,6 +1648,11 @@ export var DeleteWorkloadIdentityResponse$ = [3, n0, _DWIRe,
1482
1648
  [],
1483
1649
  []
1484
1650
  ];
1651
+ export var Descriptors$ = [3, n0, _De,
1652
+ 0,
1653
+ [_mc, _a, _cu, _aSg],
1654
+ [() => McpDescriptor$, () => A2aDescriptor$, () => CustomDescriptor$, () => AgentSkillsDescriptor$]
1655
+ ];
1485
1656
  export var EpisodicConsolidationOverride$ = [3, n0, _ECO,
1486
1657
  0,
1487
1658
  [_aTP, _mI],
@@ -1547,6 +1718,11 @@ export var Finding$ = [3, n0, _Fi,
1547
1718
  [_t, _d],
1548
1719
  [0, 0]
1549
1720
  ];
1721
+ export var FromUrlSynchronizationConfiguration$ = [3, n0, _FUSC,
1722
+ 0,
1723
+ [_u, _cPC],
1724
+ [0, () => RegistryRecordCredentialProviderConfigurationList], 1
1725
+ ];
1550
1726
  export var GatewayApiKeyCredentialProvider$ = [3, n0, _GAKCP,
1551
1727
  0,
1552
1728
  [_pAr, _cPN, _cPr, _cL],
@@ -1559,7 +1735,7 @@ export var GatewayInterceptorConfiguration$ = [3, n0, _GIC,
1559
1735
  ];
1560
1736
  export var GatewayPolicyEngineConfiguration$ = [3, n0, _GPEC,
1561
1737
  0,
1562
- [_a, _mo],
1738
+ [_ar, _mo],
1563
1739
  [0, 0], 2
1564
1740
  ];
1565
1741
  export var GatewaySummary$ = [3, n0, _GS,
@@ -1589,7 +1765,7 @@ export var GetAgentRuntimeRequest$ = [3, n0, _GARR,
1589
1765
  ];
1590
1766
  export var GetAgentRuntimeResponse$ = [3, n0, _GARRe,
1591
1767
  0,
1592
- [_aRA, _aRN, _aRI, _aRV, _cA, _lUA, _rA, _nC, _st, _lC, _fR, _d, _wID, _aRAg, _pC, _eV, _aC, _rHC, _mC, _fC],
1768
+ [_aRA, _aRN, _aRI, _aRV, _cA, _lUA, _rA, _nC, _st, _lC, _fR, _d, _wID, _aRAg, _pC, _eV, _aCu, _rHC, _mC, _fC],
1593
1769
  [0, 0, 0, 0, 5, 5, 0, () => NetworkConfiguration$, 0, () => LifecycleConfiguration$, 0, [() => Description, 0], () => WorkloadIdentityDetails$, () => AgentRuntimeArtifact$, () => ProtocolConfiguration$, [() => EnvironmentVariablesMap, 0], () => AuthorizerConfiguration$, () => RequestHeaderConfiguration$, () => RuntimeMetadataConfiguration$, () => FilesystemConfigurations], 10
1594
1770
  ];
1595
1771
  export var GetApiKeyCredentialProviderRequest$ = [3, n0, _GAKCPR,
@@ -1649,7 +1825,7 @@ export var GetGatewayRequest$ = [3, n0, _GGR,
1649
1825
  ];
1650
1826
  export var GetGatewayResponse$ = [3, n0, _GGRe,
1651
1827
  0,
1652
- [_gA, _gI, _cA, _uA, _st, _n, _pT, _aT, _gU, _sR, _d, _rA, _pC, _aC, _kKA, _iCn, _pEC, _wID, _eL],
1828
+ [_gA, _gI, _cA, _uA, _st, _n, _pT, _aT, _gU, _sR, _d, _rA, _pC, _aCu, _kKA, _iCnt, _pEC, _wID, _eL],
1653
1829
  [0, 0, 5, 5, 0, [() => GatewayName, 0], 0, 0, 0, 64 | 0, [() => GatewayDescription, 0], 0, () => GatewayProtocolConfiguration$, () => AuthorizerConfiguration$, 0, () => GatewayInterceptorConfigurations, () => GatewayPolicyEngineConfiguration$, () => WorkloadIdentityDetails$, 0], 8
1654
1830
  ];
1655
1831
  export var GetGatewayTargetRequest$ = [3, n0, _GGTR,
@@ -1722,9 +1898,29 @@ export var GetPolicyResponse$ = [3, n0, _GPRe,
1722
1898
  [_pIo, _n, _pEI, _de, _cA, _uA, _pAo, _st, _sR, _d],
1723
1899
  [0, 0, 0, () => PolicyDefinition$, 5, 5, 0, 0, 64 | 0, [() => Description, 0]], 9
1724
1900
  ];
1901
+ export var GetRegistryRecordRequest$ = [3, n0, _GRRR,
1902
+ 0,
1903
+ [_rI, _rIe],
1904
+ [[0, 1], [0, 1]], 2
1905
+ ];
1906
+ export var GetRegistryRecordResponse$ = [3, n0, _GRRRe,
1907
+ 0,
1908
+ [_rAeg, _rAe, _rIe, _n, _dT, _des, _st, _cA, _uA, _d, _rV, _sRt, _sT, _sC],
1909
+ [0, 0, 0, 0, 0, () => Descriptors$, 0, 5, 5, [() => Description, 0], 0, 0, 0, () => SynchronizationConfiguration$], 9
1910
+ ];
1911
+ export var GetRegistryRequest$ = [3, n0, _GRR,
1912
+ 0,
1913
+ [_rI],
1914
+ [[0, 1]], 1
1915
+ ];
1916
+ export var GetRegistryResponse$ = [3, n0, _GRRe,
1917
+ 0,
1918
+ [_n, _rI, _rAeg, _st, _cA, _uA, _d, _aT, _aCu, _aCp, _sRt],
1919
+ [0, 0, 0, 0, 5, 5, [() => Description, 0], 0, () => AuthorizerConfiguration$, () => ApprovalConfiguration$, 0], 6
1920
+ ];
1725
1921
  export var GetResourcePolicyRequest$ = [3, n0, _GRPR,
1726
1922
  0,
1727
- [_rAe],
1923
+ [_rAes],
1728
1924
  [[0, 1]], 1
1729
1925
  ];
1730
1926
  export var GetResourcePolicyResponse$ = [3, n0, _GRPRe,
@@ -1824,7 +2020,7 @@ export var LambdaEvaluatorConfig$ = [3, n0, _LEC,
1824
2020
  ];
1825
2021
  export var LambdaInterceptorConfiguration$ = [3, n0, _LIC,
1826
2022
  0,
1827
- [_a],
2023
+ [_ar],
1828
2024
  [0], 1
1829
2025
  ];
1830
2026
  export var LifecycleConfiguration$ = [3, n0, _LC,
@@ -2012,9 +2208,29 @@ export var ListPolicyGenerationsResponse$ = [3, n0, _LPGRi,
2012
2208
  [_pG, _nTe],
2013
2209
  [() => PolicyGenerations, 0], 1
2014
2210
  ];
2211
+ export var ListRegistriesRequest$ = [3, n0, _LRR,
2212
+ 0,
2213
+ [_mR, _nTe, _st],
2214
+ [[1, { [_hQ]: _mR }], [0, { [_hQ]: _nTe }], [0, { [_hQ]: _st }]]
2215
+ ];
2216
+ export var ListRegistriesResponse$ = [3, n0, _LRRi,
2217
+ 0,
2218
+ [_regi, _nTe],
2219
+ [[() => RegistrySummaryList, 0], 0], 1
2220
+ ];
2221
+ export var ListRegistryRecordsRequest$ = [3, n0, _LRRR,
2222
+ 0,
2223
+ [_rI, _mR, _nTe, _n, _st, _dT],
2224
+ [[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nTe }], [0, { [_hQ]: _n }], [0, { [_hQ]: _st }], [0, { [_hQ]: _dT }]], 1
2225
+ ];
2226
+ export var ListRegistryRecordsResponse$ = [3, n0, _LRRRi,
2227
+ 0,
2228
+ [_rR, _nTe],
2229
+ [[() => RegistryRecordSummaryList, 0], 0], 1
2230
+ ];
2015
2231
  export var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
2016
2232
  0,
2017
- [_rAe],
2233
+ [_rAes],
2018
2234
  [[0, 1]], 1
2019
2235
  ];
2020
2236
  export var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
@@ -2035,7 +2251,7 @@ export var ListWorkloadIdentitiesResponse$ = [3, n0, _LWIRi,
2035
2251
  export var LlmAsAJudgeEvaluatorConfig$ = [3, n0, _LAAJEC,
2036
2252
  0,
2037
2253
  [_ins, _rS, _mCo],
2038
- [[() => EvaluatorInstructions, 0], () => RatingScale$, () => EvaluatorModelConfig$], 3
2254
+ [[() => EvaluatorInstructions, 0], [() => RatingScale$, 0], () => EvaluatorModelConfig$], 3
2039
2255
  ];
2040
2256
  export var ManagedLatticeResource$ = [3, n0, _MLR,
2041
2257
  0,
@@ -2047,9 +2263,14 @@ export var ManagedResourceDetails$ = [3, n0, _MRD,
2047
2263
  [_do, _rGA, _rAA],
2048
2264
  [0, 0, 0]
2049
2265
  ];
2266
+ export var McpDescriptor$ = [3, n0, _MD,
2267
+ 0,
2268
+ [_se, _to],
2269
+ [() => ServerDefinition$, () => ToolsDefinition$]
2270
+ ];
2050
2271
  export var MCPGatewayConfiguration$ = [3, n0, _MCPGC,
2051
2272
  0,
2052
- [_sV, _ins, _sT],
2273
+ [_sVu, _ins, _sTe],
2053
2274
  [64 | 0, 0, 0]
2054
2275
  ];
2055
2276
  export var McpLambdaTargetConfiguration$ = [3, n0, _MLTC,
@@ -2064,7 +2285,7 @@ export var McpServerTargetConfiguration$ = [3, n0, _MSTC,
2064
2285
  ];
2065
2286
  export var Memory$ = [3, n0, _M,
2066
2287
  0,
2067
- [_a, _i, _n, _eED, _st, _cA, _uA, _d, _eKA, _mERA, _fR, _str, _sDR],
2288
+ [_ar, _i, _n, _eED, _st, _cA, _uA, _d, _eKA, _mERA, _fR, _str, _sDR],
2068
2289
  [0, 0, 0, 1, 0, 4, 4, [() => Description, 0], 0, 0, 0, [() => MemoryStrategyList, 0], () => StreamDeliveryResources$], 7
2069
2290
  ];
2070
2291
  export var MemoryStrategy$ = [3, n0, _MS,
@@ -2074,7 +2295,7 @@ export var MemoryStrategy$ = [3, n0, _MS,
2074
2295
  ];
2075
2296
  export var MemorySummary$ = [3, n0, _MSe,
2076
2297
  0,
2077
- [_cA, _uA, _a, _i, _st],
2298
+ [_cA, _uA, _ar, _i, _st],
2078
2299
  [4, 4, 0, 0, 0], 2
2079
2300
  ];
2080
2301
  export var MessageBasedTrigger$ = [3, n0, _MBT,
@@ -2199,7 +2420,7 @@ export var ProtocolConfiguration$ = [3, n0, _PC,
2199
2420
  ];
2200
2421
  export var PutResourcePolicyRequest$ = [3, n0, _PRPR,
2201
2422
  0,
2202
- [_rAe, _po],
2423
+ [_rAes, _po],
2203
2424
  [[0, 1], 0], 2
2204
2425
  ];
2205
2426
  export var PutResourcePolicyResponse$ = [3, n0, _PRPRu,
@@ -2212,9 +2433,34 @@ export var RecordingConfig$ = [3, n0, _RC,
2212
2433
  [_en, _sL],
2213
2434
  [2, () => S3Location$]
2214
2435
  ];
2436
+ export var RegistryRecordCredentialProviderConfiguration$ = [3, n0, _RRCPC,
2437
+ 0,
2438
+ [_cPT, _cP],
2439
+ [0, () => RegistryRecordCredentialProviderUnion$], 2
2440
+ ];
2441
+ export var RegistryRecordIamCredentialProvider$ = [3, n0, _RRICP,
2442
+ 0,
2443
+ [_rA, _ser, _reg],
2444
+ [0, 0, 0]
2445
+ ];
2446
+ export var RegistryRecordOAuthCredentialProvider$ = [3, n0, _RROACP,
2447
+ 0,
2448
+ [_pAr, _gT, _sc, _cPu],
2449
+ [0, 0, 64 | 0, 128 | 0], 1
2450
+ ];
2451
+ export var RegistryRecordSummary$ = [3, n0, _RRS,
2452
+ 0,
2453
+ [_rAeg, _rAe, _rIe, _n, _dT, _rV, _st, _cA, _uA, _d],
2454
+ [0, 0, 0, 0, 0, 0, 0, 5, 5, [() => Description, 0]], 9
2455
+ ];
2456
+ export var RegistrySummary$ = [3, n0, _RS,
2457
+ 0,
2458
+ [_n, _rI, _rAeg, _st, _cA, _uA, _d, _aT, _sRt],
2459
+ [0, 0, 0, 0, 5, 5, [() => Description, 0], 0, 0], 6
2460
+ ];
2215
2461
  export var Rule$ = [3, n0, _R,
2216
2462
  0,
2217
- [_sC, _fi, _sCe],
2463
+ [_sCa, _fi, _sCe],
2218
2464
  [() => SamplingConfig$, () => FilterList, () => SessionConfig$], 1
2219
2465
  ];
2220
2466
  export var RuntimeMetadataConfiguration$ = [3, n0, _RMC,
@@ -2224,7 +2470,7 @@ export var RuntimeMetadataConfiguration$ = [3, n0, _RMC,
2224
2470
  ];
2225
2471
  export var S3Configuration$ = [3, n0, _SC,
2226
2472
  0,
2227
- [_u, _bOAI],
2473
+ [_ur, _bOAI],
2228
2474
  [0, 0]
2229
2475
  ];
2230
2476
  export var S3Location$ = [3, n0, _SL,
@@ -2302,6 +2548,11 @@ export var SemanticOverrideExtractionConfigurationInput$ = [3, n0, _SOECI,
2302
2548
  [_aTP, _mI],
2303
2549
  [[() => Prompt, 0], 0], 2
2304
2550
  ];
2551
+ export var ServerDefinition$ = [3, n0, _SDe,
2552
+ 0,
2553
+ [_sV, _iC],
2554
+ [0, 0]
2555
+ ];
2305
2556
  export var SessionConfig$ = [3, n0, _SCe,
2306
2557
  0,
2307
2558
  [_sTM],
@@ -2322,6 +2573,16 @@ export var SetTokenVaultCMKResponse$ = [3, n0, _STVCMKRe,
2322
2573
  [_tVI, _kC, _lMD],
2323
2574
  [0, () => KmsConfiguration$, 4], 3
2324
2575
  ];
2576
+ export var SkillDefinition$ = [3, n0, _SDk,
2577
+ 0,
2578
+ [_sV, _iC],
2579
+ [0, 0]
2580
+ ];
2581
+ export var SkillMdDefinition$ = [3, n0, _SMD,
2582
+ 0,
2583
+ [_iC],
2584
+ [0]
2585
+ ];
2325
2586
  export var SlackOauth2ProviderConfigInput$ = [3, n0, _SOPCIl,
2326
2587
  0,
2327
2588
  [_cI, _cS],
@@ -2352,6 +2613,16 @@ export var StreamDeliveryResources$ = [3, n0, _SDR,
2352
2613
  [_reso],
2353
2614
  [() => StreamDeliveryResourcesList], 1
2354
2615
  ];
2616
+ export var SubmitRegistryRecordForApprovalRequest$ = [3, n0, _SRRFAR,
2617
+ 0,
2618
+ [_rI, _rIe],
2619
+ [[0, 1], [0, 1]], 2
2620
+ ];
2621
+ export var SubmitRegistryRecordForApprovalResponse$ = [3, n0, _SRRFARu,
2622
+ 0,
2623
+ [_rAeg, _rAe, _rIe, _st, _uA],
2624
+ [0, 0, 0, 0, 5], 5
2625
+ ];
2355
2626
  export var SummaryConsolidationOverride$ = [3, n0, _SCOu,
2356
2627
  0,
2357
2628
  [_aTP, _mI],
@@ -2372,6 +2643,11 @@ export var SummaryOverrideConsolidationConfigurationInput$ = [3, n0, _SOCCIu,
2372
2643
  [_aTP, _mI],
2373
2644
  [[() => Prompt, 0], 0], 2
2374
2645
  ];
2646
+ export var SynchronizationConfiguration$ = [3, n0, _SCy,
2647
+ 0,
2648
+ [_fU],
2649
+ [() => FromUrlSynchronizationConfiguration$]
2650
+ ];
2375
2651
  export var SynchronizeGatewayTargetsRequest$ = [3, n0, _SGTR,
2376
2652
  0,
2377
2653
  [_gIa, _tIL],
@@ -2384,7 +2660,7 @@ export var SynchronizeGatewayTargetsResponse$ = [3, n0, _SGTRy,
2384
2660
  ];
2385
2661
  export var TagResourceRequest$ = [3, n0, _TRR,
2386
2662
  0,
2387
- [_rAe, _ta],
2663
+ [_rAes, _ta],
2388
2664
  [[0, 1], 128 | 0], 2
2389
2665
  ];
2390
2666
  export var TagResourceResponse$ = [3, n0, _TRRa,
@@ -2422,9 +2698,14 @@ export var ToolDefinition$ = [3, n0, _TDo,
2422
2698
  [_n, _d, _iS, _oS],
2423
2699
  [0, 0, () => SchemaDefinition$, () => SchemaDefinition$], 3
2424
2700
  ];
2701
+ export var ToolsDefinition$ = [3, n0, _TDoo,
2702
+ 0,
2703
+ [_pV, _iC],
2704
+ [0, 0]
2705
+ ];
2425
2706
  export var UntagResourceRequest$ = [3, n0, _URR,
2426
2707
  0,
2427
- [_rAe, _tK],
2708
+ [_rAes, _tK],
2428
2709
  [[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
2429
2710
  ];
2430
2711
  export var UntagResourceResponse$ = [3, n0, _URRn,
@@ -2444,7 +2725,7 @@ export var UpdateAgentRuntimeEndpointResponse$ = [3, n0, _UARERp,
2444
2725
  ];
2445
2726
  export var UpdateAgentRuntimeRequest$ = [3, n0, _UARR,
2446
2727
  0,
2447
- [_aRI, _aRAg, _rA, _nC, _d, _aC, _rHC, _pC, _lC, _mC, _eV, _fC, _cTl],
2728
+ [_aRI, _aRAg, _rA, _nC, _d, _aCu, _rHC, _pC, _lC, _mC, _eV, _fC, _cTl],
2448
2729
  [[0, 1], () => AgentRuntimeArtifact$, 0, () => NetworkConfiguration$, [() => Description, 0], () => AuthorizerConfiguration$, () => RequestHeaderConfiguration$, () => ProtocolConfiguration$, () => LifecycleConfiguration$, () => RuntimeMetadataConfiguration$, [() => EnvironmentVariablesMap, 0], () => FilesystemConfigurations, [0, 4]], 4
2449
2730
  ];
2450
2731
  export var UpdateAgentRuntimeResponse$ = [3, n0, _UARRp,
@@ -2462,11 +2743,91 @@ export var UpdateApiKeyCredentialProviderResponse$ = [3, n0, _UAKCPRp,
2462
2743
  [_aKSA, _n, _cPA, _cT, _lUT],
2463
2744
  [() => Secret$, 0, 0, 4, 4], 5
2464
2745
  ];
2746
+ export var UpdatedA2aDescriptor$ = [3, n0, _UAD,
2747
+ 0,
2748
+ [_oV],
2749
+ [() => A2aDescriptor$]
2750
+ ];
2751
+ export var UpdatedAgentSkillsDescriptor$ = [3, n0, _UASD,
2752
+ 0,
2753
+ [_oV],
2754
+ [() => UpdatedAgentSkillsDescriptorFields$]
2755
+ ];
2756
+ export var UpdatedAgentSkillsDescriptorFields$ = [3, n0, _UASDF,
2757
+ 0,
2758
+ [_sM, _sD],
2759
+ [() => UpdatedSkillMdDefinition$, () => UpdatedSkillDefinition$]
2760
+ ];
2761
+ export var UpdatedApprovalConfiguration$ = [3, n0, _UAC,
2762
+ 0,
2763
+ [_oV],
2764
+ [() => ApprovalConfiguration$]
2765
+ ];
2766
+ export var UpdatedAuthorizerConfiguration$ = [3, n0, _UACp,
2767
+ 0,
2768
+ [_oV],
2769
+ [() => AuthorizerConfiguration$]
2770
+ ];
2771
+ export var UpdatedCustomDescriptor$ = [3, n0, _UCD,
2772
+ 0,
2773
+ [_oV],
2774
+ [() => CustomDescriptor$]
2775
+ ];
2465
2776
  export var UpdatedDescription$ = [3, n0, _UD,
2466
2777
  0,
2467
2778
  [_oV],
2468
2779
  [[() => Description, 0]]
2469
2780
  ];
2781
+ export var UpdatedDescriptors$ = [3, n0, _UDp,
2782
+ 0,
2783
+ [_oV],
2784
+ [() => UpdatedDescriptorsUnion$]
2785
+ ];
2786
+ export var UpdatedDescriptorsUnion$ = [3, n0, _UDU,
2787
+ 0,
2788
+ [_mc, _a, _cu, _aSg],
2789
+ [() => UpdatedMcpDescriptor$, () => UpdatedA2aDescriptor$, () => UpdatedCustomDescriptor$, () => UpdatedAgentSkillsDescriptor$]
2790
+ ];
2791
+ export var UpdatedMcpDescriptor$ = [3, n0, _UMD,
2792
+ 0,
2793
+ [_oV],
2794
+ [() => UpdatedMcpDescriptorFields$]
2795
+ ];
2796
+ export var UpdatedMcpDescriptorFields$ = [3, n0, _UMDF,
2797
+ 0,
2798
+ [_se, _to],
2799
+ [() => UpdatedServerDefinition$, () => UpdatedToolsDefinition$]
2800
+ ];
2801
+ export var UpdatedServerDefinition$ = [3, n0, _USD,
2802
+ 0,
2803
+ [_oV],
2804
+ [() => ServerDefinition$]
2805
+ ];
2806
+ export var UpdatedSkillDefinition$ = [3, n0, _USDp,
2807
+ 0,
2808
+ [_oV],
2809
+ [() => SkillDefinition$]
2810
+ ];
2811
+ export var UpdatedSkillMdDefinition$ = [3, n0, _USMD,
2812
+ 0,
2813
+ [_oV],
2814
+ [() => SkillMdDefinition$]
2815
+ ];
2816
+ export var UpdatedSynchronizationConfiguration$ = [3, n0, _USC,
2817
+ 0,
2818
+ [_oV],
2819
+ [() => SynchronizationConfiguration$]
2820
+ ];
2821
+ export var UpdatedSynchronizationType$ = [3, n0, _UST,
2822
+ 0,
2823
+ [_oV],
2824
+ [0]
2825
+ ];
2826
+ export var UpdatedToolsDefinition$ = [3, n0, _UTD,
2827
+ 0,
2828
+ [_oV],
2829
+ [() => ToolsDefinition$]
2830
+ ];
2470
2831
  export var UpdateEvaluatorRequest$ = [3, n0, _UER,
2471
2832
  0,
2472
2833
  [_eI, _cTl, _d, _eC, _le],
@@ -2479,12 +2840,12 @@ export var UpdateEvaluatorResponse$ = [3, n0, _UERp,
2479
2840
  ];
2480
2841
  export var UpdateGatewayRequest$ = [3, n0, _UGR,
2481
2842
  0,
2482
- [_gIa, _n, _rA, _pT, _aT, _d, _pC, _aC, _kKA, _iCn, _pEC, _eL],
2843
+ [_gIa, _n, _rA, _pT, _aT, _d, _pC, _aCu, _kKA, _iCnt, _pEC, _eL],
2483
2844
  [[0, 1], [() => GatewayName, 0], 0, 0, 0, [() => GatewayDescription, 0], () => GatewayProtocolConfiguration$, () => AuthorizerConfiguration$, 0, () => GatewayInterceptorConfigurations, () => GatewayPolicyEngineConfiguration$, 0], 5
2484
2845
  ];
2485
2846
  export var UpdateGatewayResponse$ = [3, n0, _UGRp,
2486
2847
  0,
2487
- [_gA, _gI, _cA, _uA, _st, _n, _pT, _aT, _gU, _sR, _d, _rA, _pC, _aC, _kKA, _iCn, _pEC, _wID, _eL],
2848
+ [_gA, _gI, _cA, _uA, _st, _n, _pT, _aT, _gU, _sR, _d, _rA, _pC, _aCu, _kKA, _iCnt, _pEC, _wID, _eL],
2488
2849
  [0, 0, 5, 5, 0, [() => GatewayName, 0], 0, 0, 0, 64 | 0, [() => GatewayDescription, 0], 0, () => GatewayProtocolConfiguration$, () => AuthorizerConfiguration$, 0, () => GatewayInterceptorConfigurations, () => GatewayPolicyEngineConfiguration$, () => WorkloadIdentityDetails$, 0], 8
2489
2850
  ];
2490
2851
  export var UpdateGatewayTargetRequest$ = [3, n0, _UGTR,
@@ -2547,6 +2908,36 @@ export var UpdatePolicyResponse$ = [3, n0, _UPRp,
2547
2908
  [_pIo, _n, _pEI, _de, _cA, _uA, _pAo, _st, _sR, _d],
2548
2909
  [0, 0, 0, () => PolicyDefinition$, 5, 5, 0, 0, 64 | 0, [() => Description, 0]], 9
2549
2910
  ];
2911
+ export var UpdateRegistryRecordRequest$ = [3, n0, _URRR,
2912
+ 0,
2913
+ [_rI, _rIe, _n, _d, _dT, _des, _rV, _sT, _sC, _tSr],
2914
+ [[0, 1], [0, 1], 0, [() => UpdatedDescription$, 0], 0, () => UpdatedDescriptors$, 0, () => UpdatedSynchronizationType$, () => UpdatedSynchronizationConfiguration$, 2], 2
2915
+ ];
2916
+ export var UpdateRegistryRecordResponse$ = [3, n0, _URRRp,
2917
+ 0,
2918
+ [_rAeg, _rAe, _rIe, _n, _dT, _des, _st, _cA, _uA, _d, _rV, _sRt, _sT, _sC],
2919
+ [0, 0, 0, 0, 0, () => Descriptors$, 0, 5, 5, [() => Description, 0], 0, 0, 0, () => SynchronizationConfiguration$], 9
2920
+ ];
2921
+ export var UpdateRegistryRecordStatusRequest$ = [3, n0, _URRSR,
2922
+ 0,
2923
+ [_rI, _rIe, _st, _sRt],
2924
+ [[0, 1], [0, 1], 0, 0], 4
2925
+ ];
2926
+ export var UpdateRegistryRecordStatusResponse$ = [3, n0, _URRSRp,
2927
+ 0,
2928
+ [_rAeg, _rAe, _rIe, _st, _sRt, _uA],
2929
+ [0, 0, 0, 0, 0, 5], 6
2930
+ ];
2931
+ export var UpdateRegistryRequest$ = [3, n0, _URRp,
2932
+ 0,
2933
+ [_rI, _n, _d, _aCu, _aCp],
2934
+ [[0, 1], 0, [() => UpdatedDescription$, 0], () => UpdatedAuthorizerConfiguration$, () => UpdatedApprovalConfiguration$], 1
2935
+ ];
2936
+ export var UpdateRegistryResponse$ = [3, n0, _URRpd,
2937
+ 0,
2938
+ [_n, _rI, _rAeg, _st, _cA, _uA, _d, _aT, _aCu, _aCp, _sRt],
2939
+ [0, 0, 0, 0, 5, 5, [() => Description, 0], 0, () => AuthorizerConfiguration$, () => ApprovalConfiguration$, 0], 6
2940
+ ];
2550
2941
  export var UpdateWorkloadIdentityRequest$ = [3, n0, _UWIR,
2551
2942
  0,
2552
2943
  [_n, _aRORU],
@@ -2742,11 +3133,23 @@ var PolicyStatusReasons = 64 | 0;
2742
3133
  var PrivateEndpointManagedResources = [1, n0, _PEMR,
2743
3134
  0, () => ManagedResourceDetails$
2744
3135
  ];
3136
+ var RegistryRecordCredentialProviderConfigurationList = [1, n0, _RRCPCL,
3137
+ 0, () => RegistryRecordCredentialProviderConfiguration$
3138
+ ];
3139
+ var RegistryRecordSummaryList = [1, n0, _RRSL,
3140
+ 0, [() => RegistryRecordSummary$,
3141
+ 0]
3142
+ ];
3143
+ var RegistrySummaryList = [1, n0, _RSL,
3144
+ 0, [() => RegistrySummary$,
3145
+ 0]
3146
+ ];
2745
3147
  var RequestHeaderAllowlist = 64 | 0;
2746
3148
  var RequiredProperties = 64 | 0;
2747
3149
  var ResourceOauth2ReturnUrlListType = 64 | 0;
2748
3150
  var ResponseListType = 64 | 0;
2749
3151
  var RestApiMethods = 64 | 0;
3152
+ var ScopeList = 64 | 0;
2750
3153
  var SecurityGroupIds = 64 | 0;
2751
3154
  var SecurityGroups = 64 | 0;
2752
3155
  var ServiceNamesList = 64 | 0;
@@ -2763,7 +3166,7 @@ var TargetSummaries = [1, n0, _TSa,
2763
3166
  0]
2764
3167
  ];
2765
3168
  var TokenEndpointAuthMethodsType = 64 | 0;
2766
- var ToolDefinitions = [1, n0, _TDoo,
3169
+ var ToolDefinitions = [1, n0, _TDool,
2767
3170
  0, () => ToolDefinition$
2768
3171
  ];
2769
3172
  var TriggerConditionInputList = [1, n0, _TCIL,
@@ -2778,6 +3181,7 @@ var ValidationExceptionFieldList = [1, n0, _VEFL,
2778
3181
  var WorkloadIdentityList = [1, n0, _WIL,
2779
3182
  0, () => WorkloadIdentityType$
2780
3183
  ];
3184
+ var CustomParameterMap = 128 | 0;
2781
3185
  var EnvironmentVariablesMap = [2, n0, _EVM,
2782
3186
  8, 0, 0
2783
3187
  ];
@@ -2801,19 +3205,19 @@ export var ApiSchemaConfiguration$ = [4, n0, _ASC,
2801
3205
  [_s_, _iPn],
2802
3206
  [() => S3Configuration$, [() => InlinePayload, 0]]
2803
3207
  ];
2804
- export var AuthorizationData$ = [4, n0, _AD,
3208
+ export var AuthorizationData$ = [4, n0, _ADu,
2805
3209
  0,
2806
3210
  [_oa],
2807
3211
  [() => OAuth2AuthorizationData$]
2808
3212
  ];
2809
- export var AuthorizerConfiguration$ = [4, n0, _AC,
3213
+ export var AuthorizerConfiguration$ = [4, n0, _ACu,
2810
3214
  0,
2811
3215
  [_cJWTA],
2812
3216
  [() => CustomJWTAuthorizerConfiguration$]
2813
3217
  ];
2814
3218
  export var CertificateLocation$ = [4, n0, _CL,
2815
3219
  0,
2816
- [_sM],
3220
+ [_sMe],
2817
3221
  [() => SecretsManagerLocation$]
2818
3222
  ];
2819
3223
  export var ClaimMatchValueType$ = [4, n0, _CMVT,
@@ -2981,8 +3385,8 @@ export var PrivateEndpoint$ = [4, n0, _PEr,
2981
3385
  [_sMLR, _mLR],
2982
3386
  [() => SelfManagedLatticeResource$, () => ManagedLatticeResource$]
2983
3387
  ];
2984
- export var RatingScale$ = [4, n0, _RS,
2985
- 0,
3388
+ export var RatingScale$ = [4, n0, _RSa,
3389
+ 8,
2986
3390
  [_nu, _ca],
2987
3391
  [() => NumericalScaleDefinitions, () => CategoricalScaleDefinitions]
2988
3392
  ];
@@ -2991,6 +3395,11 @@ export var ReflectionConfiguration$ = [4, n0, _RCe,
2991
3395
  [_cRC, _eRC],
2992
3396
  [[() => CustomReflectionConfiguration$, 0], () => EpisodicReflectionConfiguration$]
2993
3397
  ];
3398
+ export var RegistryRecordCredentialProviderUnion$ = [4, n0, _RRCPU,
3399
+ 0,
3400
+ [_oCP, _iCP],
3401
+ [() => RegistryRecordOAuthCredentialProvider$, () => RegistryRecordIamCredentialProvider$]
3402
+ ];
2994
3403
  export var RequestHeaderConfiguration$ = [4, n0, _RHC,
2995
3404
  0,
2996
3405
  [_rHA],
@@ -2998,7 +3407,7 @@ export var RequestHeaderConfiguration$ = [4, n0, _RHC,
2998
3407
  ];
2999
3408
  export var Resource$ = [4, n0, _Re,
3000
3409
  0,
3001
- [_a],
3410
+ [_ar],
3002
3411
  [0]
3003
3412
  ];
3004
3413
  export var ResourceLocation$ = [4, n0, _RL,
@@ -3078,6 +3487,12 @@ export var CreatePolicy$ = [9, n0, _CPre,
3078
3487
  export var CreatePolicyEngine$ = [9, n0, _CPE,
3079
3488
  { [_h]: ["POST", "/policy-engines", 202] }, () => CreatePolicyEngineRequest$, () => CreatePolicyEngineResponse$
3080
3489
  ];
3490
+ export var CreateRegistry$ = [9, n0, _CR,
3491
+ { [_h]: ["POST", "/registries", 202] }, () => CreateRegistryRequest$, () => CreateRegistryResponse$
3492
+ ];
3493
+ export var CreateRegistryRecord$ = [9, n0, _CRRre,
3494
+ { [_h]: ["POST", "/registries/{registryId}/records", 202] }, () => CreateRegistryRecordRequest$, () => CreateRegistryRecordResponse$
3495
+ ];
3081
3496
  export var CreateWorkloadIdentity$ = [9, n0, _CWI,
3082
3497
  { [_h]: ["POST", "/identities/CreateWorkloadIdentity", 201] }, () => CreateWorkloadIdentityRequest$, () => CreateWorkloadIdentityResponse$
3083
3498
  ];
@@ -3123,6 +3538,12 @@ export var DeletePolicy$ = [9, n0, _DP,
3123
3538
  export var DeletePolicyEngine$ = [9, n0, _DPE,
3124
3539
  { [_h]: ["DELETE", "/policy-engines/{policyEngineId}", 202] }, () => DeletePolicyEngineRequest$, () => DeletePolicyEngineResponse$
3125
3540
  ];
3541
+ export var DeleteRegistry$ = [9, n0, _DR,
3542
+ { [_h]: ["DELETE", "/registries/{registryId}", 202] }, () => DeleteRegistryRequest$, () => DeleteRegistryResponse$
3543
+ ];
3544
+ export var DeleteRegistryRecord$ = [9, n0, _DRRel,
3545
+ { [_h]: ["DELETE", "/registries/{registryId}/records/{recordId}", 200] }, () => DeleteRegistryRecordRequest$, () => DeleteRegistryRecordResponse$
3546
+ ];
3126
3547
  export var DeleteResourcePolicy$ = [9, n0, _DRP,
3127
3548
  { [_h]: ["DELETE", "/resourcepolicy/{resourceArn}", 204] }, () => DeleteResourcePolicyRequest$, () => DeleteResourcePolicyResponse$
3128
3549
  ];
@@ -3174,6 +3595,12 @@ export var GetPolicyEngine$ = [9, n0, _GPE,
3174
3595
  export var GetPolicyGeneration$ = [9, n0, _GPG,
3175
3596
  { [_h]: ["GET", "/policy-engines/{policyEngineId}/policy-generations/{policyGenerationId}", 200] }, () => GetPolicyGenerationRequest$, () => GetPolicyGenerationResponse$
3176
3597
  ];
3598
+ export var GetRegistry$ = [9, n0, _GR,
3599
+ { [_h]: ["GET", "/registries/{registryId}", 200] }, () => GetRegistryRequest$, () => GetRegistryResponse$
3600
+ ];
3601
+ export var GetRegistryRecord$ = [9, n0, _GRRet,
3602
+ { [_h]: ["GET", "/registries/{registryId}/records/{recordId}", 200] }, () => GetRegistryRecordRequest$, () => GetRegistryRecordResponse$
3603
+ ];
3177
3604
  export var GetResourcePolicy$ = [9, n0, _GRP,
3178
3605
  { [_h]: ["GET", "/resourcepolicy/{resourceArn}", 200] }, () => GetResourcePolicyRequest$, () => GetResourcePolicyResponse$
3179
3606
  ];
@@ -3234,6 +3661,12 @@ export var ListPolicyGenerationAssets$ = [9, n0, _LPGA,
3234
3661
  export var ListPolicyGenerations$ = [9, n0, _LPG,
3235
3662
  { [_h]: ["GET", "/policy-engines/{policyEngineId}/policy-generations", 200] }, () => ListPolicyGenerationsRequest$, () => ListPolicyGenerationsResponse$
3236
3663
  ];
3664
+ export var ListRegistries$ = [9, n0, _LR,
3665
+ { [_h]: ["GET", "/registries", 200] }, () => ListRegistriesRequest$, () => ListRegistriesResponse$
3666
+ ];
3667
+ export var ListRegistryRecords$ = [9, n0, _LRRis,
3668
+ { [_h]: ["GET", "/registries/{registryId}/records", 200] }, () => ListRegistryRecordsRequest$, () => ListRegistryRecordsResponse$
3669
+ ];
3237
3670
  export var ListTagsForResource$ = [9, n0, _LTFR,
3238
3671
  { [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
3239
3672
  ];
@@ -3249,6 +3682,9 @@ export var SetTokenVaultCMK$ = [9, n0, _STVCMK,
3249
3682
  export var StartPolicyGeneration$ = [9, n0, _SPG,
3250
3683
  { [_h]: ["POST", "/policy-engines/{policyEngineId}/policy-generations", 202] }, () => StartPolicyGenerationRequest$, () => StartPolicyGenerationResponse$
3251
3684
  ];
3685
+ export var SubmitRegistryRecordForApproval$ = [9, n0, _SRRFA,
3686
+ { [_h]: ["POST", "/registries/{registryId}/records/{recordId}/submit-for-approval", 202] }, () => SubmitRegistryRecordForApprovalRequest$, () => SubmitRegistryRecordForApprovalResponse$
3687
+ ];
3252
3688
  export var SynchronizeGatewayTargets$ = [9, n0, _SGT,
3253
3689
  { [_h]: ["PUT", "/gateways/{gatewayIdentifier}/synchronizeTargets", 202] }, () => SynchronizeGatewayTargetsRequest$, () => SynchronizeGatewayTargetsResponse$
3254
3690
  ];
@@ -3291,6 +3727,15 @@ export var UpdatePolicy$ = [9, n0, _UP,
3291
3727
  export var UpdatePolicyEngine$ = [9, n0, _UPE,
3292
3728
  { [_h]: ["PATCH", "/policy-engines/{policyEngineId}", 202] }, () => UpdatePolicyEngineRequest$, () => UpdatePolicyEngineResponse$
3293
3729
  ];
3730
+ export var UpdateRegistry$ = [9, n0, _URp,
3731
+ { [_h]: ["PATCH", "/registries/{registryId}", 202] }, () => UpdateRegistryRequest$, () => UpdateRegistryResponse$
3732
+ ];
3733
+ export var UpdateRegistryRecord$ = [9, n0, _URRpda,
3734
+ { [_h]: ["PATCH", "/registries/{registryId}/records/{recordId}", 202] }, () => UpdateRegistryRecordRequest$, () => UpdateRegistryRecordResponse$
3735
+ ];
3736
+ export var UpdateRegistryRecordStatus$ = [9, n0, _URRS,
3737
+ { [_h]: ["PATCH", "/registries/{registryId}/records/{recordId}/status", 202] }, () => UpdateRegistryRecordStatusRequest$, () => UpdateRegistryRecordStatusResponse$
3738
+ ];
3294
3739
  export var UpdateWorkloadIdentity$ = [9, n0, _UWI,
3295
3740
  { [_h]: ["POST", "/identities/UpdateWorkloadIdentity", 200] }, () => UpdateWorkloadIdentityRequest$, () => UpdateWorkloadIdentityResponse$
3296
3741
  ];