@aws-sdk/client-bedrock-agentcore-control 3.1043.0 → 3.1045.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 (86) hide show
  1. package/README.md +105 -0
  2. package/dist-cjs/index.js +257 -0
  3. package/dist-cjs/schemas/schemas_0.js +385 -18
  4. package/dist-es/BedrockAgentCoreControl.js +36 -0
  5. package/dist-es/commands/CreatePaymentConnectorCommand.js +16 -0
  6. package/dist-es/commands/CreatePaymentCredentialProviderCommand.js +16 -0
  7. package/dist-es/commands/CreatePaymentManagerCommand.js +16 -0
  8. package/dist-es/commands/DeletePaymentConnectorCommand.js +16 -0
  9. package/dist-es/commands/DeletePaymentCredentialProviderCommand.js +16 -0
  10. package/dist-es/commands/DeletePaymentManagerCommand.js +16 -0
  11. package/dist-es/commands/GetPaymentConnectorCommand.js +16 -0
  12. package/dist-es/commands/GetPaymentCredentialProviderCommand.js +16 -0
  13. package/dist-es/commands/GetPaymentManagerCommand.js +16 -0
  14. package/dist-es/commands/ListPaymentConnectorsCommand.js +16 -0
  15. package/dist-es/commands/ListPaymentCredentialProvidersCommand.js +16 -0
  16. package/dist-es/commands/ListPaymentManagersCommand.js +16 -0
  17. package/dist-es/commands/UpdatePaymentConnectorCommand.js +16 -0
  18. package/dist-es/commands/UpdatePaymentCredentialProviderCommand.js +16 -0
  19. package/dist-es/commands/UpdatePaymentManagerCommand.js +16 -0
  20. package/dist-es/commands/index.js +15 -0
  21. package/dist-es/models/enums.js +30 -0
  22. package/dist-es/pagination/ListPaymentConnectorsPaginator.js +4 -0
  23. package/dist-es/pagination/ListPaymentCredentialProvidersPaginator.js +4 -0
  24. package/dist-es/pagination/ListPaymentManagersPaginator.js +4 -0
  25. package/dist-es/pagination/index.js +3 -0
  26. package/dist-es/schemas/schemas_0.js +370 -4
  27. package/dist-types/BedrockAgentCoreControl.d.ts +128 -0
  28. package/dist-types/BedrockAgentCoreControlClient.d.ts +17 -2
  29. package/dist-types/commands/CreateAgentRuntimeCommand.d.ts +8 -0
  30. package/dist-types/commands/CreateHarnessCommand.d.ts +16 -0
  31. package/dist-types/commands/CreatePaymentConnectorCommand.d.ts +124 -0
  32. package/dist-types/commands/CreatePaymentCredentialProviderCommand.d.ts +147 -0
  33. package/dist-types/commands/CreatePaymentManagerCommand.d.ts +251 -0
  34. package/dist-types/commands/DeleteHarnessCommand.d.ts +8 -0
  35. package/dist-types/commands/DeletePaymentConnectorCommand.d.ts +92 -0
  36. package/dist-types/commands/DeletePaymentCredentialProviderCommand.d.ts +90 -0
  37. package/dist-types/commands/DeletePaymentManagerCommand.d.ts +91 -0
  38. package/dist-types/commands/GetAgentRuntimeCommand.d.ts +8 -0
  39. package/dist-types/commands/GetHarnessCommand.d.ts +8 -0
  40. package/dist-types/commands/GetPaymentConnectorCommand.d.ts +106 -0
  41. package/dist-types/commands/GetPaymentCredentialProviderCommand.d.ts +123 -0
  42. package/dist-types/commands/GetPaymentManagerCommand.d.ts +173 -0
  43. package/dist-types/commands/ListPaymentConnectorsCommand.d.ts +97 -0
  44. package/dist-types/commands/ListPaymentCredentialProvidersCommand.d.ts +102 -0
  45. package/dist-types/commands/ListPaymentManagersCommand.d.ts +100 -0
  46. package/dist-types/commands/UpdateAgentRuntimeCommand.d.ts +8 -0
  47. package/dist-types/commands/UpdateHarnessCommand.d.ts +16 -0
  48. package/dist-types/commands/UpdatePaymentConnectorCommand.d.ts +124 -0
  49. package/dist-types/commands/UpdatePaymentCredentialProviderCommand.d.ts +143 -0
  50. package/dist-types/commands/UpdatePaymentManagerCommand.d.ts +180 -0
  51. package/dist-types/commands/index.d.ts +15 -0
  52. package/dist-types/models/enums.d.ts +76 -0
  53. package/dist-types/models/models_0.d.ts +60 -68
  54. package/dist-types/models/models_1.d.ts +1215 -6
  55. package/dist-types/pagination/ListPaymentConnectorsPaginator.d.ts +7 -0
  56. package/dist-types/pagination/ListPaymentCredentialProvidersPaginator.d.ts +7 -0
  57. package/dist-types/pagination/ListPaymentManagersPaginator.d.ts +7 -0
  58. package/dist-types/pagination/index.d.ts +3 -0
  59. package/dist-types/schemas/schemas_0.d.ts +58 -0
  60. package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +278 -0
  61. package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +90 -0
  62. package/dist-types/ts3.4/commands/CreatePaymentConnectorCommand.d.ts +51 -0
  63. package/dist-types/ts3.4/commands/CreatePaymentCredentialProviderCommand.d.ts +51 -0
  64. package/dist-types/ts3.4/commands/CreatePaymentManagerCommand.d.ts +51 -0
  65. package/dist-types/ts3.4/commands/DeletePaymentConnectorCommand.d.ts +51 -0
  66. package/dist-types/ts3.4/commands/DeletePaymentCredentialProviderCommand.d.ts +51 -0
  67. package/dist-types/ts3.4/commands/DeletePaymentManagerCommand.d.ts +51 -0
  68. package/dist-types/ts3.4/commands/GetPaymentConnectorCommand.d.ts +51 -0
  69. package/dist-types/ts3.4/commands/GetPaymentCredentialProviderCommand.d.ts +51 -0
  70. package/dist-types/ts3.4/commands/GetPaymentManagerCommand.d.ts +51 -0
  71. package/dist-types/ts3.4/commands/ListPaymentConnectorsCommand.d.ts +51 -0
  72. package/dist-types/ts3.4/commands/ListPaymentCredentialProvidersCommand.d.ts +51 -0
  73. package/dist-types/ts3.4/commands/ListPaymentManagersCommand.d.ts +51 -0
  74. package/dist-types/ts3.4/commands/UpdatePaymentConnectorCommand.d.ts +51 -0
  75. package/dist-types/ts3.4/commands/UpdatePaymentCredentialProviderCommand.d.ts +51 -0
  76. package/dist-types/ts3.4/commands/UpdatePaymentManagerCommand.d.ts +51 -0
  77. package/dist-types/ts3.4/commands/index.d.ts +15 -0
  78. package/dist-types/ts3.4/models/enums.d.ts +40 -0
  79. package/dist-types/ts3.4/models/models_0.d.ts +28 -14
  80. package/dist-types/ts3.4/models/models_1.d.ts +345 -2
  81. package/dist-types/ts3.4/pagination/ListPaymentConnectorsPaginator.d.ts +11 -0
  82. package/dist-types/ts3.4/pagination/ListPaymentCredentialProvidersPaginator.d.ts +11 -0
  83. package/dist-types/ts3.4/pagination/ListPaymentManagersPaginator.d.ts +11 -0
  84. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  85. package/dist-types/ts3.4/schemas/schemas_0.d.ts +58 -0
  86. package/package.json +1 -1
@@ -60,11 +60,14 @@ const _CBSL = "ConfigurationBundleSummaryList";
60
60
  const _CBVS = "ConfigurationBundleVersionSummary";
61
61
  const _CBVSL = "ConfigurationBundleVersionSummaryList";
62
62
  const _CC = "CodeConfiguration";
63
+ const _CCAKST = "CoinbaseCdpApiKeySecretType";
63
64
  const _CCB = "CreateConfigurationBundle";
64
65
  const _CCBR = "CreateConfigurationBundleRequest";
65
66
  const _CCBRr = "CreateConfigurationBundleResponse";
66
67
  const _CCC = "CustomConsolidationConfiguration";
67
- const _CCCI = "CustomConsolidationConfigurationInput";
68
+ const _CCCI = "CoinbaseCdpConfigurationInput";
69
+ const _CCCIu = "CustomConsolidationConfigurationInput";
70
+ const _CCCO = "CoinbaseCdpConfigurationOutput";
68
71
  const _CCI = "CustomConfigurationInput";
69
72
  const _CCIR = "CreateCodeInterpreterRequest";
70
73
  const _CCIRr = "CreateCodeInterpreterResponse";
@@ -73,6 +76,7 @@ const _CCL = "ContentConfigurationList";
73
76
  const _CCM = "ComponentConfigurationMap";
74
77
  const _CCVT = "CustomClaimValidationType";
75
78
  const _CCVTu = "CustomClaimValidationsType";
79
+ const _CCWST = "CoinbaseCdpWalletSecretType";
76
80
  const _CCo = "ComponentConfiguration";
77
81
  const _CCon = "ContainerConfiguration";
78
82
  const _CCons = "ConsolidationConfiguration";
@@ -117,10 +121,21 @@ const _COPCI = "CustomOauth2ProviderConfigInput";
117
121
  const _COPCO = "CustomOauth2ProviderConfigOutput";
118
122
  const _CP = "CedarPolicy";
119
123
  const _CPC = "CredentialProviderConfiguration";
124
+ const _CPCP = "CreatePaymentCredentialProvider";
125
+ const _CPCPR = "CreatePaymentCredentialProviderRequest";
126
+ const _CPCPRr = "CreatePaymentCredentialProviderResponse";
127
+ const _CPCR = "CreatePaymentConnectorRequest";
128
+ const _CPCRr = "CreatePaymentConnectorResponse";
120
129
  const _CPCr = "CredentialProviderConfigurations";
130
+ const _CPCre = "CredentialsProviderConfigurations";
131
+ const _CPCrea = "CreatePaymentConnector";
132
+ const _CPCred = "CredentialsProviderConfiguration";
121
133
  const _CPE = "CreatePolicyEngine";
122
134
  const _CPER = "CreatePolicyEngineRequest";
123
135
  const _CPERr = "CreatePolicyEngineResponse";
136
+ const _CPM = "CreatePaymentManager";
137
+ const _CPMR = "CreatePaymentManagerRequest";
138
+ const _CPMRr = "CreatePaymentManagerResponse";
124
139
  const _CPR = "CreatePolicyRequest";
125
140
  const _CPRr = "CreatePolicyResponse";
126
141
  const _CPr = "CredentialProvider";
@@ -197,9 +212,18 @@ const _DOEC = "DeleteOnlineEvaluationConfig";
197
212
  const _DOECR = "DeleteOnlineEvaluationConfigRequest";
198
213
  const _DOECRe = "DeleteOnlineEvaluationConfigResponse";
199
214
  const _DP = "DeletePolicy";
215
+ const _DPC = "DeletePaymentConnector";
216
+ const _DPCP = "DeletePaymentCredentialProvider";
217
+ const _DPCPR = "DeletePaymentCredentialProviderRequest";
218
+ const _DPCPRe = "DeletePaymentCredentialProviderResponse";
219
+ const _DPCR = "DeletePaymentConnectorRequest";
220
+ const _DPCRe = "DeletePaymentConnectorResponse";
200
221
  const _DPE = "DeletePolicyEngine";
201
222
  const _DPER = "DeletePolicyEngineRequest";
202
223
  const _DPERe = "DeletePolicyEngineResponse";
224
+ const _DPM = "DeletePaymentManager";
225
+ const _DPMR = "DeletePaymentManagerRequest";
226
+ const _DPMRe = "DeletePaymentManagerResponse";
203
227
  const _DPR = "DeletePolicyRequest";
204
228
  const _DPRe = "DeletePolicyResponse";
205
229
  const _DR = "DeleteRegistry";
@@ -217,6 +241,7 @@ const _DWIR = "DeleteWorkloadIdentityRequest";
217
241
  const _DWIRe = "DeleteWorkloadIdentityResponse";
218
242
  const _De = "Description";
219
243
  const _Des = "Descriptors";
244
+ const _EAPC = "EfsAccessPointConfiguration";
220
245
  const _EC = "EvaluatorConfig";
221
246
  const _ECD = "EvaluationConfigDescription";
222
247
  const _ECO = "EpisodicConsolidationOverride";
@@ -308,6 +333,12 @@ const _GOPCO = "GithubOauth2ProviderConfigOutput";
308
333
  const _GOPCOo = "GoogleOauth2ProviderConfigOutput";
309
334
  const _GP = "GetPolicy";
310
335
  const _GPC = "GatewayProtocolConfiguration";
336
+ const _GPCP = "GetPaymentCredentialProvider";
337
+ const _GPCPR = "GetPaymentCredentialProviderRequest";
338
+ const _GPCPRe = "GetPaymentCredentialProviderResponse";
339
+ const _GPCR = "GetPaymentConnectorRequest";
340
+ const _GPCRe = "GetPaymentConnectorResponse";
341
+ const _GPCe = "GetPaymentConnector";
311
342
  const _GPE = "GetPolicyEngine";
312
343
  const _GPEC = "GatewayPolicyEngineConfiguration";
313
344
  const _GPER = "GetPolicyEngineRequest";
@@ -315,6 +346,9 @@ const _GPERe = "GetPolicyEngineResponse";
315
346
  const _GPG = "GetPolicyGeneration";
316
347
  const _GPGR = "GetPolicyGenerationRequest";
317
348
  const _GPGRe = "GetPolicyGenerationResponse";
349
+ const _GPM = "GetPaymentManager";
350
+ const _GPMR = "GetPaymentManagerRequest";
351
+ const _GPMRe = "GetPaymentManagerResponse";
318
352
  const _GPR = "GetPolicyRequest";
319
353
  const _GPRe = "GetPolicyResponse";
320
354
  const _GR = "GatewayRules";
@@ -450,6 +484,12 @@ const _LOECRi = "ListOnlineEvaluationConfigsResponse";
450
484
  const _LOPCI = "LinkedinOauth2ProviderConfigInput";
451
485
  const _LOPCO = "LinkedinOauth2ProviderConfigOutput";
452
486
  const _LP = "ListPolicies";
487
+ const _LPC = "ListPaymentConnectors";
488
+ const _LPCP = "ListPaymentCredentialProviders";
489
+ const _LPCPR = "ListPaymentCredentialProvidersRequest";
490
+ const _LPCPRi = "ListPaymentCredentialProvidersResponse";
491
+ const _LPCR = "ListPaymentConnectorsRequest";
492
+ const _LPCRi = "ListPaymentConnectorsResponse";
453
493
  const _LPE = "ListPolicyEngines";
454
494
  const _LPER = "ListPolicyEnginesRequest";
455
495
  const _LPERi = "ListPolicyEnginesResponse";
@@ -459,6 +499,9 @@ const _LPGAR = "ListPolicyGenerationAssetsRequest";
459
499
  const _LPGARi = "ListPolicyGenerationAssetsResponse";
460
500
  const _LPGR = "ListPolicyGenerationsRequest";
461
501
  const _LPGRi = "ListPolicyGenerationsResponse";
502
+ const _LPM = "ListPaymentManagers";
503
+ const _LPMR = "ListPaymentManagersRequest";
504
+ const _LPMRi = "ListPaymentManagersResponse";
462
505
  const _LPR = "ListPoliciesRequest";
463
506
  const _LPRi = "ListPoliciesResponse";
464
507
  const _LR = "ListRegistries";
@@ -529,6 +572,11 @@ const _OPCI = "Oauth2ProviderConfigInput";
529
572
  const _OPCO = "Oauth2ProviderConfigOutput";
530
573
  const _P = "Prompt";
531
574
  const _PC = "ProtocolConfiguration";
575
+ const _PCP = "PaymentCredentialProviders";
576
+ const _PCPC = "PaymentCredentialProviderConfiguration";
577
+ const _PCPI = "PaymentCredentialProviderItem";
578
+ const _PCS = "PaymentConnectorSummary";
579
+ const _PCSa = "PaymentConnectorSummaries";
532
580
  const _PD = "PolicyDefinition";
533
581
  const _PE = "PolicyEngine";
534
582
  const _PEMR = "PrivateEndpointManagedResources";
@@ -541,6 +589,10 @@ const _PGA = "PolicyGenerationAsset";
541
589
  const _PGAo = "PolicyGenerationAssets";
542
590
  const _PGD = "PolicyGenerationDetails";
543
591
  const _PGo = "PolicyGenerations";
592
+ const _PMS = "PaymentManagerSummary";
593
+ const _PMSa = "PaymentManagerSummaries";
594
+ const _PPCI = "PaymentProviderConfigurationInput";
595
+ const _PPCO = "PaymentProviderConfigurationOutput";
544
596
  const _PRP = "PutResourcePolicy";
545
597
  const _PRPR = "PutResourcePolicyRequest";
546
598
  const _PRPRu = "PutResourcePolicyResponse";
@@ -585,6 +637,7 @@ const _SDe = "ServerDefinition";
585
637
  const _SDk = "SkillDefinition";
586
638
  const _SE = "ServiceException";
587
639
  const _SEO = "SemanticExtractionOverride";
640
+ const _SFAPC = "S3FilesAccessPointConfiguration";
588
641
  const _SGT = "SynchronizeGatewayTargets";
589
642
  const _SGTR = "SynchronizeGatewayTargetsRequest";
590
643
  const _SGTRy = "SynchronizeGatewayTargetsResponse";
@@ -610,6 +663,10 @@ const _SOPCIl = "SlackOauth2ProviderConfigInput";
610
663
  const _SOPCO = "SalesforceOauth2ProviderConfigOutput";
611
664
  const _SOPCOl = "SlackOauth2ProviderConfigOutput";
612
665
  const _SP = "SchemaProperties";
666
+ const _SPAPKT = "StripePrivyAuthorizationPrivateKeyType";
667
+ const _SPAST = "StripePrivyAppSecretType";
668
+ const _SPCI = "StripePrivyConfigurationInput";
669
+ const _SPCO = "StripePrivyConfigurationOutput";
613
670
  const _SPG = "StartPolicyGeneration";
614
671
  const _SPGR = "StartPolicyGenerationRequest";
615
672
  const _SPGRt = "StartPolicyGenerationResponse";
@@ -702,11 +759,20 @@ const _UOEC = "UpdateOnlineEvaluationConfig";
702
759
  const _UOECR = "UpdateOnlineEvaluationConfigRequest";
703
760
  const _UOECRp = "UpdateOnlineEvaluationConfigResponse";
704
761
  const _UP = "UpdatePolicy";
762
+ const _UPC = "UpdatePaymentConnector";
705
763
  const _UPCO = "UserPreferenceConsolidationOverride";
764
+ const _UPCP = "UpdatePaymentCredentialProvider";
765
+ const _UPCPR = "UpdatePaymentCredentialProviderRequest";
766
+ const _UPCPRp = "UpdatePaymentCredentialProviderResponse";
767
+ const _UPCR = "UpdatePaymentConnectorRequest";
768
+ const _UPCRp = "UpdatePaymentConnectorResponse";
706
769
  const _UPE = "UpdatePolicyEngine";
707
770
  const _UPEO = "UserPreferenceExtractionOverride";
708
771
  const _UPER = "UpdatePolicyEngineRequest";
709
772
  const _UPERp = "UpdatePolicyEngineResponse";
773
+ const _UPM = "UpdatePaymentManager";
774
+ const _UPMR = "UpdatePaymentManagerRequest";
775
+ const _UPMRp = "UpdatePaymentManagerResponse";
710
776
  const _UPMSI = "UserPreferenceMemoryStrategyInput";
711
777
  const _UPOCCI = "UserPreferenceOverrideConsolidationConfigurationInput";
712
778
  const _UPOCI = "UserPreferenceOverrideConfigurationInput";
@@ -766,15 +832,22 @@ const _aG = "apiGateway";
766
832
  const _aGTC = "apiGatewayToolConfiguration";
767
833
  const _aI = "actorId";
768
834
  const _aIK = "addIndexedKeys";
835
+ const _aIp = "appId";
836
+ const _aIu = "authorizationId";
769
837
  const _aIw = "awsIam";
770
838
  const _aK = "apiKey";
771
839
  const _aKA = "apiKeyArn";
772
840
  const _aKCP = "apiKeyCredentialProvider";
841
+ const _aKI = "apiKeyId";
842
+ const _aKS = "apiKeySecret";
773
843
  const _aKSA = "apiKeySecretArn";
774
844
  const _aMRF = "additionalModelRequestFields";
775
845
  const _aMS = "addMemoryStrategies";
776
846
  const _aO = "anyOf";
777
847
  const _aOPC = "atlassianOauth2ProviderConfig";
848
+ const _aPA = "accessPointArn";
849
+ const _aPK = "authorizationPrivateKey";
850
+ const _aPKA = "authorizationPrivateKeyArn";
778
851
  const _aQP = "allowedQueryParameters";
779
852
  const _aR = "agentRuntimes";
780
853
  const _aRA = "agentRuntimeArn";
@@ -788,8 +861,10 @@ const _aRORU = "allowedResourceOauth2ReturnUrls";
788
861
  const _aRV = "agentRuntimeVersion";
789
862
  const _aRg = "agentcoreRuntime";
790
863
  const _aS = "allowedScopes";
864
+ const _aSA = "appSecretArn";
791
865
  const _aSM = "authorizationServerMetadata";
792
866
  const _aSg = "agentSkills";
867
+ const _aSp = "appSecret";
793
868
  const _aT = "authorizerType";
794
869
  const _aTC = "actorTokenContent";
795
870
  const _aTP = "appendToPrompt";
@@ -823,6 +898,8 @@ const _cBo = "configurationBundle";
823
898
  const _cBod = "codeBased";
824
899
  const _cC = "customClaims";
825
900
  const _cCC = "customConsolidationConfiguration";
901
+ const _cCCo = "coinbaseCdpConfiguration";
902
+ const _cCDP = "coinbaseCDP";
826
903
  const _cCo = "contentConfigurations";
827
904
  const _cCod = "codeConfiguration";
828
905
  const _cCon = "containerConfiguration";
@@ -880,6 +957,7 @@ const _des = "descriptors";
880
957
  const _do = "domain";
881
958
  const _e = "error";
882
959
  const _eA = "evaluatorArn";
960
+ const _eAP = "efsAccessPoint";
883
961
  const _eAn = "environmentArtifact";
884
962
  const _eC = "evaluatorConfig";
885
963
  const _eCO = "episodicConsolidationOverride";
@@ -1063,6 +1141,10 @@ const _pA = "profileArn";
1063
1141
  const _pAo = "policyArn";
1064
1142
  const _pAr = "providerArn";
1065
1143
  const _pC = "protocolConfiguration";
1144
+ const _pCI = "paymentConnectorId";
1145
+ const _pCIr = "providerConfigurationInput";
1146
+ const _pCO = "providerConfigurationOutput";
1147
+ const _pCa = "paymentConnectors";
1066
1148
  const _pDBN = "payloadDeliveryBucketName";
1067
1149
  const _pE = "privateEndpoint";
1068
1150
  const _pEA = "policyEngineArn";
@@ -1079,6 +1161,9 @@ const _pGI = "policyGenerationId";
1079
1161
  const _pGo = "policyGeneration";
1080
1162
  const _pI = "profileId";
1081
1163
  const _pIo = "policyId";
1164
+ const _pM = "paymentManagers";
1165
+ const _pMA = "paymentManagerArn";
1166
+ const _pMI = "paymentManagerId";
1082
1167
  const _pRH = "passRequestHeaders";
1083
1168
  const _pRM = "preserveRecentMessages";
1084
1169
  const _pS = "profileSummaries";
@@ -1141,6 +1226,7 @@ const _sCt = "streamingConfiguration";
1141
1226
  const _sD = "skillDefinition";
1142
1227
  const _sDR = "streamDeliveryResources";
1143
1228
  const _sEO = "semanticExtractionOverride";
1229
+ const _sFAP = "s3FilesAccessPoint";
1144
1230
  const _sG = "securityGroups";
1145
1231
  const _sGI = "securityGroupIds";
1146
1232
  const _sI = "strategyId";
@@ -1161,8 +1247,10 @@ const _sOPCa = "salesforceOauth2ProviderConfig";
1161
1247
  const _sOe = "semanticOverride";
1162
1248
  const _sOu = "summaryOverride";
1163
1249
  const _sP = "systemPrompt";
1250
+ const _sPC = "stripePrivyConfiguration";
1164
1251
  const _sPa = "samplingPercentage";
1165
1252
  const _sPe = "serverProtocol";
1253
+ const _sPt = "stripePrivy";
1166
1254
  const _sR = "statusReasons";
1167
1255
  const _sRt = "statusReason";
1168
1256
  const _sRta = "staticRoute";
@@ -1248,6 +1336,8 @@ const _wIA = "workloadIdentityArn";
1248
1336
  const _wID = "workloadIdentityDetails";
1249
1337
  const _wO = "weightedOverride";
1250
1338
  const _wR = "weightedRoute";
1339
+ const _wS = "walletSecret";
1340
+ const _wSA = "walletSecretArn";
1251
1341
  const n0 = "com.amazonaws.bedrockagentcorecontrol";
1252
1342
  import { TypeRegistry } from "@smithy/core/schema";
1253
1343
  import { BedrockAgentCoreControlServiceException } from "../models/BedrockAgentCoreControlServiceException";
@@ -1346,6 +1436,8 @@ export const errorTypeRegistries = [
1346
1436
  ];
1347
1437
  var ApiKeyType = [0, n0, _AKT, 8, 0];
1348
1438
  var ClientSecretType = [0, n0, _CST, 8, 0];
1439
+ var CoinbaseCdpApiKeySecretType = [0, n0, _CCAKST, 8, 0];
1440
+ var CoinbaseCdpWalletSecretType = [0, n0, _CCWST, 8, 0];
1349
1441
  var ConfigurationBundleDescription = [0, n0, _CBD, 8, 0];
1350
1442
  var DefaultClientSecretType = [0, n0, _DCST, 8, 0];
1351
1443
  var Definition = [0, n0, _D, 8, 0];
@@ -1364,6 +1456,8 @@ var OAuthCustomParametersValue = [0, n0, _OACPV, 8, 0];
1364
1456
  var Prompt = [0, n0, _P, 8, 0];
1365
1457
  var SensitiveJson = [0, n0, _SJ, 8, 15];
1366
1458
  var SensitiveText = [0, n0, _ST, 8, 0];
1459
+ var StripePrivyAppSecretType = [0, n0, _SPAST, 8, 0];
1460
+ var StripePrivyAuthorizationPrivateKeyType = [0, n0, _SPAPKT, 8, 0];
1367
1461
  var TargetDescription = [0, n0, _TD, 8, 0];
1368
1462
  var TargetName = [0, n0, _TN, 8, 0];
1369
1463
  export var A2aDescriptor$ = [3, n0, _AD,
@@ -1511,6 +1605,16 @@ export var CodeInterpreterSummary$ = [3, n0, _CIS,
1511
1605
  [_cII, _cIA, _st, _cA, _n, _d, _lUA],
1512
1606
  [0, 0, 0, 5, 0, [() => Description, 0], 5], 4
1513
1607
  ];
1608
+ export var CoinbaseCdpConfigurationInput$ = [3, n0, _CCCI,
1609
+ 0,
1610
+ [_aKI, _aKS, _wS],
1611
+ [0, [() => CoinbaseCdpApiKeySecretType, 0], [() => CoinbaseCdpWalletSecretType, 0]], 3
1612
+ ];
1613
+ export var CoinbaseCdpConfigurationOutput$ = [3, n0, _CCCO,
1614
+ 0,
1615
+ [_aKI, _aKSA, _wSA],
1616
+ [0, () => Secret$, () => Secret$], 3
1617
+ ];
1514
1618
  export var ComponentConfiguration$ = [3, n0, _CCo,
1515
1619
  8,
1516
1620
  [_con],
@@ -1691,6 +1795,36 @@ export var CreateOnlineEvaluationConfigResponse$ = [3, n0, _COECRr,
1691
1795
  [_oECA, _oECI, _cA, _st, _eS, _oC, _fR],
1692
1796
  [0, 0, 4, 0, 0, () => OutputConfig$, 0], 5
1693
1797
  ];
1798
+ export var CreatePaymentConnectorRequest$ = [3, n0, _CPCR,
1799
+ 0,
1800
+ [_pMI, _n, _t, _cPC, _d, _cTl],
1801
+ [[0, 1], 0, 0, () => CredentialsProviderConfigurations, 0, [0, 4]], 4
1802
+ ];
1803
+ export var CreatePaymentConnectorResponse$ = [3, n0, _CPCRr,
1804
+ 0,
1805
+ [_pCI, _pMI, _n, _t, _cPC, _cA, _st],
1806
+ [0, 0, 0, 0, () => CredentialsProviderConfigurations, 5, 0], 7
1807
+ ];
1808
+ export var CreatePaymentCredentialProviderRequest$ = [3, n0, _CPCPR,
1809
+ 0,
1810
+ [_n, _cPV, _pCIr, _ta],
1811
+ [0, 0, [() => PaymentProviderConfigurationInput$, 0], 128 | 0], 3
1812
+ ];
1813
+ export var CreatePaymentCredentialProviderResponse$ = [3, n0, _CPCPRr,
1814
+ 0,
1815
+ [_n, _cPV, _cPA, _pCO],
1816
+ [0, 0, 0, () => PaymentProviderConfigurationOutput$], 4
1817
+ ];
1818
+ export var CreatePaymentManagerRequest$ = [3, n0, _CPMR,
1819
+ 0,
1820
+ [_n, _aT, _rA, _d, _aCu, _cTl, _ta],
1821
+ [0, 0, 0, 0, () => AuthorizerConfiguration$, [0, 4], 128 | 0], 3
1822
+ ];
1823
+ export var CreatePaymentManagerResponse$ = [3, n0, _CPMRr,
1824
+ 0,
1825
+ [_pMA, _pMI, _n, _aT, _rA, _cA, _st, _aCu, _wID, _ta],
1826
+ [0, 0, 0, 0, 0, 5, 0, () => AuthorizerConfiguration$, () => WorkloadIdentityDetails$, 128 | 0], 7
1827
+ ];
1694
1828
  export var CreatePolicyEngineRequest$ = [3, n0, _CPER,
1695
1829
  0,
1696
1830
  [_n, _d, _cTl, _eKA, _ta],
@@ -1931,6 +2065,36 @@ export var DeleteOnlineEvaluationConfigResponse$ = [3, n0, _DOECRe,
1931
2065
  [_oECA, _oECI, _st],
1932
2066
  [0, 0, 0], 3
1933
2067
  ];
2068
+ export var DeletePaymentConnectorRequest$ = [3, n0, _DPCR,
2069
+ 0,
2070
+ [_pMI, _pCI, _cTl],
2071
+ [[0, 1], [0, 1], [0, { [_hQ]: _cTl, [_iT]: 1 }]], 2
2072
+ ];
2073
+ export var DeletePaymentConnectorResponse$ = [3, n0, _DPCRe,
2074
+ 0,
2075
+ [_st, _pCI],
2076
+ [0, 0], 1
2077
+ ];
2078
+ export var DeletePaymentCredentialProviderRequest$ = [3, n0, _DPCPR,
2079
+ 0,
2080
+ [_n],
2081
+ [0], 1
2082
+ ];
2083
+ export var DeletePaymentCredentialProviderResponse$ = [3, n0, _DPCPRe,
2084
+ 0,
2085
+ [],
2086
+ []
2087
+ ];
2088
+ export var DeletePaymentManagerRequest$ = [3, n0, _DPMR,
2089
+ 0,
2090
+ [_pMI, _cTl],
2091
+ [[0, 1], [0, { [_hQ]: _cTl, [_iT]: 1 }]], 1
2092
+ ];
2093
+ export var DeletePaymentManagerResponse$ = [3, n0, _DPMRe,
2094
+ 0,
2095
+ [_st, _pMI],
2096
+ [0, 0], 1
2097
+ ];
1934
2098
  export var DeletePolicyEngineRequest$ = [3, n0, _DPER,
1935
2099
  0,
1936
2100
  [_pEI],
@@ -1996,6 +2160,11 @@ export var Descriptors$ = [3, n0, _Des,
1996
2160
  [_mc, _aa, _cu, _aSg],
1997
2161
  [() => McpDescriptor$, () => A2aDescriptor$, () => CustomDescriptor$, () => AgentSkillsDescriptor$]
1998
2162
  ];
2163
+ export var EfsAccessPointConfiguration$ = [3, n0, _EAPC,
2164
+ 0,
2165
+ [_aPA, _mP],
2166
+ [0, 0], 2
2167
+ ];
1999
2168
  export var EpisodicConsolidationOverride$ = [3, n0, _ECO,
2000
2169
  0,
2001
2170
  [_aTP, _mI],
@@ -2256,6 +2425,36 @@ export var GetOnlineEvaluationConfigResponse$ = [3, n0, _GOECRe,
2256
2425
  [_oECA, _oECI, _oECN, _rul, _dSC, _ev, _st, _eS, _cA, _uA, _d, _oC, _eERA, _fR],
2257
2426
  [0, 0, 0, () => Rule$, () => DataSourceConfig$, () => EvaluatorList, 0, 0, 4, 4, [() => EvaluationConfigDescription, 0], () => OutputConfig$, 0, 0], 10
2258
2427
  ];
2428
+ export var GetPaymentConnectorRequest$ = [3, n0, _GPCR,
2429
+ 0,
2430
+ [_pMI, _pCI],
2431
+ [[0, 1], [0, 1]], 2
2432
+ ];
2433
+ export var GetPaymentConnectorResponse$ = [3, n0, _GPCRe,
2434
+ 0,
2435
+ [_pCI, _n, _t, _cPC, _cA, _lUA, _st, _d],
2436
+ [0, 0, 0, () => CredentialsProviderConfigurations, 5, 5, 0, 0], 7
2437
+ ];
2438
+ export var GetPaymentCredentialProviderRequest$ = [3, n0, _GPCPR,
2439
+ 0,
2440
+ [_n],
2441
+ [0], 1
2442
+ ];
2443
+ export var GetPaymentCredentialProviderResponse$ = [3, n0, _GPCPRe,
2444
+ 0,
2445
+ [_n, _cPA, _cPV, _pCO, _cT, _lUT, _ta],
2446
+ [0, 0, 0, () => PaymentProviderConfigurationOutput$, 4, 4, 128 | 0], 6
2447
+ ];
2448
+ export var GetPaymentManagerRequest$ = [3, n0, _GPMR,
2449
+ 0,
2450
+ [_pMI],
2451
+ [[0, 1]], 1
2452
+ ];
2453
+ export var GetPaymentManagerResponse$ = [3, n0, _GPMRe,
2454
+ 0,
2455
+ [_pMA, _pMI, _n, _aT, _rA, _cA, _lUA, _st, _d, _aCu, _wID, _ta],
2456
+ [0, 0, 0, 0, 0, 5, 5, 0, 0, () => AuthorizerConfiguration$, () => WorkloadIdentityDetails$, 128 | 0], 8
2457
+ ];
2259
2458
  export var GetPolicyEngineRequest$ = [3, n0, _GPER,
2260
2459
  0,
2261
2460
  [_pEI],
@@ -2696,6 +2895,36 @@ export var ListOnlineEvaluationConfigsResponse$ = [3, n0, _LOECRi,
2696
2895
  [_oEC, _nTe],
2697
2896
  [[() => OnlineEvaluationConfigSummaryList, 0], 0], 1
2698
2897
  ];
2898
+ export var ListPaymentConnectorsRequest$ = [3, n0, _LPCR,
2899
+ 0,
2900
+ [_pMI, _mR, _nTe],
2901
+ [[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nTe }]], 1
2902
+ ];
2903
+ export var ListPaymentConnectorsResponse$ = [3, n0, _LPCRi,
2904
+ 0,
2905
+ [_pCa, _nTe],
2906
+ [() => PaymentConnectorSummaries, 0], 1
2907
+ ];
2908
+ export var ListPaymentCredentialProvidersRequest$ = [3, n0, _LPCPR,
2909
+ 0,
2910
+ [_nTe, _mR],
2911
+ [0, 1]
2912
+ ];
2913
+ export var ListPaymentCredentialProvidersResponse$ = [3, n0, _LPCPRi,
2914
+ 0,
2915
+ [_cPre, _nTe],
2916
+ [() => PaymentCredentialProviders, 0], 1
2917
+ ];
2918
+ export var ListPaymentManagersRequest$ = [3, n0, _LPMR,
2919
+ 0,
2920
+ [_mR, _nTe],
2921
+ [[1, { [_hQ]: _mR }], [0, { [_hQ]: _nTe }]]
2922
+ ];
2923
+ export var ListPaymentManagersResponse$ = [3, n0, _LPMRi,
2924
+ 0,
2925
+ [_pM, _nTe],
2926
+ [() => PaymentManagerSummaries, 0], 1
2927
+ ];
2699
2928
  export var ListPoliciesRequest$ = [3, n0, _LPR,
2700
2929
  0,
2701
2930
  [_pEI, _nTe, _mR, _tRS],
@@ -2951,6 +3180,26 @@ export var OutputConfig$ = [3, n0, _OC,
2951
3180
  [_cWC],
2952
3181
  [() => CloudWatchOutputConfig$], 1
2953
3182
  ];
3183
+ export var PaymentConnectorSummary$ = [3, n0, _PCS,
3184
+ 0,
3185
+ [_pCI, _n, _t, _st, _lUA],
3186
+ [0, 0, 0, 0, 5], 5
3187
+ ];
3188
+ export var PaymentCredentialProviderConfiguration$ = [3, n0, _PCPC,
3189
+ 0,
3190
+ [_cPA],
3191
+ [0], 1
3192
+ ];
3193
+ export var PaymentCredentialProviderItem$ = [3, n0, _PCPI,
3194
+ 0,
3195
+ [_n, _cPV, _cPA, _cT, _lUT],
3196
+ [0, 0, 0, 4, 4], 5
3197
+ ];
3198
+ export var PaymentManagerSummary$ = [3, n0, _PMS,
3199
+ 0,
3200
+ [_pMA, _pMI, _n, _aT, _rA, _st, _lUA, _d, _cA],
3201
+ [0, 0, 0, 0, 0, 0, 5, 0, 5], 7
3202
+ ];
2954
3203
  export var Policy$ = [3, n0, _Po,
2955
3204
  0,
2956
3205
  [_pIo, _n, _pEI, _de, _cA, _uA, _pAo, _st, _sR, _d],
@@ -3046,6 +3295,11 @@ export var S3Configuration$ = [3, n0, _SC,
3046
3295
  [_ur, _bOAI],
3047
3296
  [0, 0]
3048
3297
  ];
3298
+ export var S3FilesAccessPointConfiguration$ = [3, n0, _SFAPC,
3299
+ 0,
3300
+ [_aPA, _mP],
3301
+ [0, 0], 2
3302
+ ];
3049
3303
  export var S3Location$ = [3, n0, _SL,
3050
3304
  0,
3051
3305
  [_bu, _pre, _vI],
@@ -3216,6 +3470,16 @@ export var StringValidation$ = [3, n0, _SV,
3216
3470
  [_aV],
3217
3471
  [64 | 0], 1
3218
3472
  ];
3473
+ export var StripePrivyConfigurationInput$ = [3, n0, _SPCI,
3474
+ 0,
3475
+ [_aIp, _aSp, _aPK, _aIu],
3476
+ [0, [() => StripePrivyAppSecretType, 0], [() => StripePrivyAuthorizationPrivateKeyType, 0], 0], 4
3477
+ ];
3478
+ export var StripePrivyConfigurationOutput$ = [3, n0, _SPCO,
3479
+ 0,
3480
+ [_aIp, _aSA, _aPKA, _aIu],
3481
+ [0, () => Secret$, () => Secret$, 0], 4
3482
+ ];
3219
3483
  export var SubmitRegistryRecordForApprovalRequest$ = [3, n0, _SRRFAR,
3220
3484
  0,
3221
3485
  [_rIe, _rIec],
@@ -3551,6 +3815,36 @@ export var UpdateOnlineEvaluationConfigResponse$ = [3, n0, _UOECRp,
3551
3815
  [_oECA, _oECI, _uA, _st, _eS, _fR],
3552
3816
  [0, 0, 4, 0, 0, 0], 5
3553
3817
  ];
3818
+ export var UpdatePaymentConnectorRequest$ = [3, n0, _UPCR,
3819
+ 0,
3820
+ [_pMI, _pCI, _d, _t, _cPC, _cTl],
3821
+ [[0, 1], [0, 1], 0, 0, () => CredentialsProviderConfigurations, [0, 4]], 2
3822
+ ];
3823
+ export var UpdatePaymentConnectorResponse$ = [3, n0, _UPCRp,
3824
+ 0,
3825
+ [_pCI, _pMI, _n, _t, _cPC, _lUA, _st],
3826
+ [0, 0, 0, 0, () => CredentialsProviderConfigurations, 5, 0], 7
3827
+ ];
3828
+ export var UpdatePaymentCredentialProviderRequest$ = [3, n0, _UPCPR,
3829
+ 0,
3830
+ [_n, _cPV, _pCIr],
3831
+ [0, 0, [() => PaymentProviderConfigurationInput$, 0]], 3
3832
+ ];
3833
+ export var UpdatePaymentCredentialProviderResponse$ = [3, n0, _UPCPRp,
3834
+ 0,
3835
+ [_n, _cPV, _cPA, _pCO, _cT, _lUT],
3836
+ [0, 0, 0, () => PaymentProviderConfigurationOutput$, 4, 4], 6
3837
+ ];
3838
+ export var UpdatePaymentManagerRequest$ = [3, n0, _UPMR,
3839
+ 0,
3840
+ [_pMI, _d, _aT, _aCu, _rA, _cTl],
3841
+ [[0, 1], 0, 0, () => AuthorizerConfiguration$, 0, [0, 4]], 1
3842
+ ];
3843
+ export var UpdatePaymentManagerResponse$ = [3, n0, _UPMRp,
3844
+ 0,
3845
+ [_pMA, _pMI, _n, _aT, _rA, _lUA, _st, _wID],
3846
+ [0, 0, 0, 0, 0, 5, 0, () => WorkloadIdentityDetails$], 7
3847
+ ];
3554
3848
  export var UpdatePolicyEngineRequest$ = [3, n0, _UPER,
3555
3849
  0,
3556
3850
  [_pEI, _d],
@@ -3755,6 +4049,9 @@ var CredentialProviderConfigurations = [1, n0, _CPCr,
3755
4049
  0, [() => CredentialProviderConfiguration$,
3756
4050
  0]
3757
4051
  ];
4052
+ var CredentialsProviderConfigurations = [1, n0, _CPCre,
4053
+ 0, () => CredentialsProviderConfiguration$
4054
+ ];
3758
4055
  var CustomClaimValidationsType = [1, n0, _CCVTu,
3759
4056
  0, () => CustomClaimValidationType$
3760
4057
  ];
@@ -3851,6 +4148,15 @@ var OnlineEvaluationConfigSummaryList = [1, n0, _OECSL,
3851
4148
  0, [() => OnlineEvaluationConfigSummary$,
3852
4149
  0]
3853
4150
  ];
4151
+ var PaymentConnectorSummaries = [1, n0, _PCSa,
4152
+ 0, () => PaymentConnectorSummary$
4153
+ ];
4154
+ var PaymentCredentialProviders = [1, n0, _PCP,
4155
+ 0, () => PaymentCredentialProviderItem$
4156
+ ];
4157
+ var PaymentManagerSummaries = [1, n0, _PMSa,
4158
+ 0, () => PaymentManagerSummary$
4159
+ ];
3854
4160
  var Policies = [1, n0, _Pol,
3855
4161
  0, [() => Policy$,
3856
4162
  0]
@@ -4025,6 +4331,11 @@ export var CredentialProvider$ = [4, n0, _CPr,
4025
4331
  [_oCP, _aKCP, _iCP],
4026
4332
  [[() => OAuthCredentialProvider$, 0], () => GatewayApiKeyCredentialProvider$, () => IamCredentialProvider$]
4027
4333
  ];
4334
+ export var CredentialsProviderConfiguration$ = [4, n0, _CPCred,
4335
+ 0,
4336
+ [_cCDP, _sPt],
4337
+ [() => PaymentCredentialProviderConfiguration$, () => PaymentCredentialProviderConfiguration$]
4338
+ ];
4028
4339
  export var CustomConfigurationInput$ = [4, n0, _CCI,
4029
4340
  0,
4030
4341
  [_sOe, _sOu, _uPO, _eO, _sMC],
@@ -4035,7 +4346,7 @@ export var CustomConsolidationConfiguration$ = [4, n0, _CCC,
4035
4346
  [_sCO, _sCOu, _uPCO, _eCO],
4036
4347
  [[() => SemanticConsolidationOverride$, 0], [() => SummaryConsolidationOverride$, 0], [() => UserPreferenceConsolidationOverride$, 0], [() => EpisodicConsolidationOverride$, 0]]
4037
4348
  ];
4038
- export var CustomConsolidationConfigurationInput$ = [4, n0, _CCCI,
4349
+ export var CustomConsolidationConfigurationInput$ = [4, n0, _CCCIu,
4039
4350
  0,
4040
4351
  [_sCO, _sCOu, _uPCO, _eCO],
4041
4352
  [[() => SemanticOverrideConsolidationConfigurationInput$, 0], [() => SummaryOverrideConsolidationConfigurationInput$, 0], [() => UserPreferenceOverrideConsolidationConfigurationInput$, 0], [() => EpisodicOverrideConsolidationConfigurationInput$, 0]]
@@ -4092,8 +4403,8 @@ export var ExtractionConfiguration$ = [4, n0, _ECxt,
4092
4403
  ];
4093
4404
  export var FilesystemConfiguration$ = [4, n0, _FCi,
4094
4405
  0,
4095
- [_sSe],
4096
- [() => SessionStorageConfiguration$]
4406
+ [_sSe, _sFAP, _eAP],
4407
+ [() => SessionStorageConfiguration$, () => S3FilesAccessPointConfiguration$, () => EfsAccessPointConfiguration$]
4097
4408
  ];
4098
4409
  export var FilterValue$ = [4, n0, _FV,
4099
4410
  0,
@@ -4215,6 +4526,16 @@ export var Oauth2ProviderConfigOutput$ = [4, n0, _OPCO,
4215
4526
  [_cOPC, _gOPC, _gOPCi, _sOPC, _sOPCa, _mOPC, _aOPC, _lOPC, _iOPC],
4216
4527
  [() => CustomOauth2ProviderConfigOutput$, () => GoogleOauth2ProviderConfigOutput$, () => GithubOauth2ProviderConfigOutput$, () => SlackOauth2ProviderConfigOutput$, () => SalesforceOauth2ProviderConfigOutput$, () => MicrosoftOauth2ProviderConfigOutput$, () => AtlassianOauth2ProviderConfigOutput$, () => LinkedinOauth2ProviderConfigOutput$, () => IncludedOauth2ProviderConfigOutput$]
4217
4528
  ];
4529
+ export var PaymentProviderConfigurationInput$ = [4, n0, _PPCI,
4530
+ 0,
4531
+ [_cCCo, _sPC],
4532
+ [[() => CoinbaseCdpConfigurationInput$, 0], [() => StripePrivyConfigurationInput$, 0]]
4533
+ ];
4534
+ export var PaymentProviderConfigurationOutput$ = [4, n0, _PPCO,
4535
+ 0,
4536
+ [_cCCo, _sPC],
4537
+ [() => CoinbaseCdpConfigurationOutput$, () => StripePrivyConfigurationOutput$]
4538
+ ];
4218
4539
  export var PolicyDefinition$ = [4, n0, _PD,
4219
4540
  0,
4220
4541
  [_ced, _pGo],
@@ -4340,6 +4661,15 @@ export var CreateOauth2CredentialProvider$ = [9, n0, _COCP,
4340
4661
  export var CreateOnlineEvaluationConfig$ = [9, n0, _COEC,
4341
4662
  { [_ht]: ["POST", "/online-evaluation-configs/create", 202] }, () => CreateOnlineEvaluationConfigRequest$, () => CreateOnlineEvaluationConfigResponse$
4342
4663
  ];
4664
+ export var CreatePaymentConnector$ = [9, n0, _CPCrea,
4665
+ { [_ht]: ["POST", "/payments/managers/{paymentManagerId}/connectors", 202] }, () => CreatePaymentConnectorRequest$, () => CreatePaymentConnectorResponse$
4666
+ ];
4667
+ export var CreatePaymentCredentialProvider$ = [9, n0, _CPCP,
4668
+ { [_ht]: ["POST", "/identities/CreatePaymentCredentialProvider", 201] }, () => CreatePaymentCredentialProviderRequest$, () => CreatePaymentCredentialProviderResponse$
4669
+ ];
4670
+ export var CreatePaymentManager$ = [9, n0, _CPM,
4671
+ { [_ht]: ["POST", "/payments/managers", 202] }, () => CreatePaymentManagerRequest$, () => CreatePaymentManagerResponse$
4672
+ ];
4343
4673
  export var CreatePolicy$ = [9, n0, _CPre,
4344
4674
  { [_ht]: ["POST", "/policy-engines/{policyEngineId}/policies", 202] }, () => CreatePolicyRequest$, () => CreatePolicyResponse$
4345
4675
  ];
@@ -4400,6 +4730,15 @@ export var DeleteOauth2CredentialProvider$ = [9, n0, _DOCP,
4400
4730
  export var DeleteOnlineEvaluationConfig$ = [9, n0, _DOEC,
4401
4731
  { [_ht]: ["DELETE", "/online-evaluation-configs/{onlineEvaluationConfigId}", 202] }, () => DeleteOnlineEvaluationConfigRequest$, () => DeleteOnlineEvaluationConfigResponse$
4402
4732
  ];
4733
+ export var DeletePaymentConnector$ = [9, n0, _DPC,
4734
+ { [_ht]: ["DELETE", "/payments/managers/{paymentManagerId}/connectors/{paymentConnectorId}", 202] }, () => DeletePaymentConnectorRequest$, () => DeletePaymentConnectorResponse$
4735
+ ];
4736
+ export var DeletePaymentCredentialProvider$ = [9, n0, _DPCP,
4737
+ { [_ht]: ["POST", "/identities/DeletePaymentCredentialProvider", 204] }, () => DeletePaymentCredentialProviderRequest$, () => DeletePaymentCredentialProviderResponse$
4738
+ ];
4739
+ export var DeletePaymentManager$ = [9, n0, _DPM,
4740
+ { [_ht]: ["DELETE", "/payments/managers/{paymentManagerId}", 202] }, () => DeletePaymentManagerRequest$, () => DeletePaymentManagerResponse$
4741
+ ];
4403
4742
  export var DeletePolicy$ = [9, n0, _DP,
4404
4743
  { [_ht]: ["DELETE", "/policy-engines/{policyEngineId}/policies/{policyId}", 202] }, () => DeletePolicyRequest$, () => DeletePolicyResponse$
4405
4744
  ];
@@ -4466,6 +4805,15 @@ export var GetOauth2CredentialProvider$ = [9, n0, _GOCP,
4466
4805
  export var GetOnlineEvaluationConfig$ = [9, n0, _GOEC,
4467
4806
  { [_ht]: ["GET", "/online-evaluation-configs/{onlineEvaluationConfigId}", 200] }, () => GetOnlineEvaluationConfigRequest$, () => GetOnlineEvaluationConfigResponse$
4468
4807
  ];
4808
+ export var GetPaymentConnector$ = [9, n0, _GPCe,
4809
+ { [_ht]: ["GET", "/payments/managers/{paymentManagerId}/connectors/{paymentConnectorId}", 200] }, () => GetPaymentConnectorRequest$, () => GetPaymentConnectorResponse$
4810
+ ];
4811
+ export var GetPaymentCredentialProvider$ = [9, n0, _GPCP,
4812
+ { [_ht]: ["POST", "/identities/GetPaymentCredentialProvider", 200] }, () => GetPaymentCredentialProviderRequest$, () => GetPaymentCredentialProviderResponse$
4813
+ ];
4814
+ export var GetPaymentManager$ = [9, n0, _GPM,
4815
+ { [_ht]: ["GET", "/payments/managers/{paymentManagerId}", 200] }, () => GetPaymentManagerRequest$, () => GetPaymentManagerResponse$
4816
+ ];
4469
4817
  export var GetPolicy$ = [9, n0, _GP,
4470
4818
  { [_ht]: ["GET", "/policy-engines/{policyEngineId}/policies/{policyId}", 200] }, () => GetPolicyRequest$, () => GetPolicyResponse$
4471
4819
  ];
@@ -4541,6 +4889,15 @@ export var ListOauth2CredentialProviders$ = [9, n0, _LOCP,
4541
4889
  export var ListOnlineEvaluationConfigs$ = [9, n0, _LOEC,
4542
4890
  { [_ht]: ["POST", "/online-evaluation-configs", 200] }, () => ListOnlineEvaluationConfigsRequest$, () => ListOnlineEvaluationConfigsResponse$
4543
4891
  ];
4892
+ export var ListPaymentConnectors$ = [9, n0, _LPC,
4893
+ { [_ht]: ["POST", "/payments/managers/{paymentManagerId}/connectors-list", 200] }, () => ListPaymentConnectorsRequest$, () => ListPaymentConnectorsResponse$
4894
+ ];
4895
+ export var ListPaymentCredentialProviders$ = [9, n0, _LPCP,
4896
+ { [_ht]: ["POST", "/identities/ListPaymentCredentialProviders", 200] }, () => ListPaymentCredentialProvidersRequest$, () => ListPaymentCredentialProvidersResponse$
4897
+ ];
4898
+ export var ListPaymentManagers$ = [9, n0, _LPM,
4899
+ { [_ht]: ["POST", "/payments/managers-list", 200] }, () => ListPaymentManagersRequest$, () => ListPaymentManagersResponse$
4900
+ ];
4544
4901
  export var ListPolicies$ = [9, n0, _LP,
4545
4902
  { [_ht]: ["GET", "/policy-engines/{policyEngineId}/policies", 200] }, () => ListPoliciesRequest$, () => ListPoliciesResponse$
4546
4903
  ];
@@ -4622,6 +4979,15 @@ export var UpdateOauth2CredentialProvider$ = [9, n0, _UOCP,
4622
4979
  export var UpdateOnlineEvaluationConfig$ = [9, n0, _UOEC,
4623
4980
  { [_ht]: ["PUT", "/online-evaluation-configs/{onlineEvaluationConfigId}", 202] }, () => UpdateOnlineEvaluationConfigRequest$, () => UpdateOnlineEvaluationConfigResponse$
4624
4981
  ];
4982
+ export var UpdatePaymentConnector$ = [9, n0, _UPC,
4983
+ { [_ht]: ["PATCH", "/payments/managers/{paymentManagerId}/connectors/{paymentConnectorId}", 202] }, () => UpdatePaymentConnectorRequest$, () => UpdatePaymentConnectorResponse$
4984
+ ];
4985
+ export var UpdatePaymentCredentialProvider$ = [9, n0, _UPCP,
4986
+ { [_ht]: ["POST", "/identities/UpdatePaymentCredentialProvider", 200] }, () => UpdatePaymentCredentialProviderRequest$, () => UpdatePaymentCredentialProviderResponse$
4987
+ ];
4988
+ export var UpdatePaymentManager$ = [9, n0, _UPM,
4989
+ { [_ht]: ["PATCH", "/payments/managers/{paymentManagerId}", 202] }, () => UpdatePaymentManagerRequest$, () => UpdatePaymentManagerResponse$
4990
+ ];
4625
4991
  export var UpdatePolicy$ = [9, n0, _UP,
4626
4992
  { [_ht]: ["PATCH", "/policy-engines/{policyEngineId}/policies/{policyId}", 202] }, () => UpdatePolicyRequest$, () => UpdatePolicyResponse$
4627
4993
  ];