aws-sdk-bedrockagentcorecontrol 1.44.0 → 1.45.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.
data/sig/types.rbs CHANGED
@@ -337,6 +337,20 @@ module Aws::BedrockAgentCoreControl
337
337
  SENSITIVE: [:description]
338
338
  end
339
339
 
340
+ class CoinbaseCdpConfigurationInput
341
+ attr_accessor api_key_id: ::String
342
+ attr_accessor api_key_secret: ::String
343
+ attr_accessor wallet_secret: ::String
344
+ SENSITIVE: [:api_key_secret, :wallet_secret]
345
+ end
346
+
347
+ class CoinbaseCdpConfigurationOutput
348
+ attr_accessor api_key_id: ::String
349
+ attr_accessor api_key_secret_arn: Types::Secret
350
+ attr_accessor wallet_secret_arn: Types::Secret
351
+ SENSITIVE: []
352
+ end
353
+
340
354
  class ComponentConfiguration
341
355
  attr_accessor configuration: untyped
342
356
  SENSITIVE: []
@@ -777,6 +791,68 @@ module Aws::BedrockAgentCoreControl
777
791
  SENSITIVE: []
778
792
  end
779
793
 
794
+ class CreatePaymentConnectorRequest
795
+ attr_accessor payment_manager_id: ::String
796
+ attr_accessor name: ::String
797
+ attr_accessor description: ::String
798
+ attr_accessor type: ("CoinbaseCDP" | "StripePrivy")
799
+ attr_accessor credential_provider_configurations: ::Array[Types::CredentialsProviderConfiguration]
800
+ attr_accessor client_token: ::String
801
+ SENSITIVE: []
802
+ end
803
+
804
+ class CreatePaymentConnectorResponse
805
+ attr_accessor payment_connector_id: ::String
806
+ attr_accessor payment_manager_id: ::String
807
+ attr_accessor name: ::String
808
+ attr_accessor type: ("CoinbaseCDP" | "StripePrivy")
809
+ attr_accessor credential_provider_configurations: ::Array[Types::CredentialsProviderConfiguration]
810
+ attr_accessor created_at: ::Time
811
+ attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
812
+ SENSITIVE: []
813
+ end
814
+
815
+ class CreatePaymentCredentialProviderRequest
816
+ attr_accessor name: ::String
817
+ attr_accessor credential_provider_vendor: ("CoinbaseCDP" | "StripePrivy")
818
+ attr_accessor provider_configuration_input: Types::PaymentProviderConfigurationInput
819
+ attr_accessor tags: ::Hash[::String, ::String]
820
+ SENSITIVE: []
821
+ end
822
+
823
+ class CreatePaymentCredentialProviderResponse
824
+ attr_accessor name: ::String
825
+ attr_accessor credential_provider_vendor: ("CoinbaseCDP" | "StripePrivy")
826
+ attr_accessor credential_provider_arn: ::String
827
+ attr_accessor provider_configuration_output: Types::PaymentProviderConfigurationOutput
828
+ SENSITIVE: []
829
+ end
830
+
831
+ class CreatePaymentManagerRequest
832
+ attr_accessor name: ::String
833
+ attr_accessor description: ::String
834
+ attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM")
835
+ attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
836
+ attr_accessor role_arn: ::String
837
+ attr_accessor client_token: ::String
838
+ attr_accessor tags: ::Hash[::String, ::String]
839
+ SENSITIVE: []
840
+ end
841
+
842
+ class CreatePaymentManagerResponse
843
+ attr_accessor payment_manager_arn: ::String
844
+ attr_accessor payment_manager_id: ::String
845
+ attr_accessor name: ::String
846
+ attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM")
847
+ attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
848
+ attr_accessor role_arn: ::String
849
+ attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
850
+ attr_accessor created_at: ::Time
851
+ attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
852
+ attr_accessor tags: ::Hash[::String, ::String]
853
+ SENSITIVE: []
854
+ end
855
+
780
856
  class CreatePolicyEngineRequest
781
857
  attr_accessor name: ::String
782
858
  attr_accessor description: ::String
@@ -894,6 +970,20 @@ module Aws::BedrockAgentCoreControl
894
970
  SENSITIVE: []
895
971
  end
896
972
 
973
+ class CredentialsProviderConfiguration
974
+ attr_accessor coinbase_cdp: Types::PaymentCredentialProviderConfiguration
975
+ attr_accessor stripe_privy: Types::PaymentCredentialProviderConfiguration
976
+ attr_accessor unknown: untyped
977
+ SENSITIVE: []
978
+
979
+ class CoinbaseCdp < CredentialsProviderConfiguration
980
+ end
981
+ class StripePrivy < CredentialsProviderConfiguration
982
+ end
983
+ class Unknown < CredentialsProviderConfiguration
984
+ end
985
+ end
986
+
897
987
  class CustomClaimValidationType
898
988
  attr_accessor inbound_token_claim_name: ::String
899
989
  attr_accessor inbound_token_claim_value_type: ("STRING" | "STRING_ARRAY")
@@ -1267,6 +1357,39 @@ module Aws::BedrockAgentCoreControl
1267
1357
  SENSITIVE: []
1268
1358
  end
1269
1359
 
1360
+ class DeletePaymentConnectorRequest
1361
+ attr_accessor payment_manager_id: ::String
1362
+ attr_accessor payment_connector_id: ::String
1363
+ attr_accessor client_token: ::String
1364
+ SENSITIVE: []
1365
+ end
1366
+
1367
+ class DeletePaymentConnectorResponse
1368
+ attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
1369
+ attr_accessor payment_connector_id: ::String
1370
+ SENSITIVE: []
1371
+ end
1372
+
1373
+ class DeletePaymentCredentialProviderRequest
1374
+ attr_accessor name: ::String
1375
+ SENSITIVE: []
1376
+ end
1377
+
1378
+ class DeletePaymentCredentialProviderResponse < Aws::EmptyStructure
1379
+ end
1380
+
1381
+ class DeletePaymentManagerRequest
1382
+ attr_accessor payment_manager_id: ::String
1383
+ attr_accessor client_token: ::String
1384
+ SENSITIVE: []
1385
+ end
1386
+
1387
+ class DeletePaymentManagerResponse
1388
+ attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
1389
+ attr_accessor payment_manager_id: ::String
1390
+ SENSITIVE: []
1391
+ end
1392
+
1270
1393
  class DeletePolicyEngineRequest
1271
1394
  attr_accessor policy_engine_id: ::String
1272
1395
  SENSITIVE: []
@@ -1951,6 +2074,61 @@ module Aws::BedrockAgentCoreControl
1951
2074
  SENSITIVE: [:description]
1952
2075
  end
1953
2076
 
2077
+ class GetPaymentConnectorRequest
2078
+ attr_accessor payment_manager_id: ::String
2079
+ attr_accessor payment_connector_id: ::String
2080
+ SENSITIVE: []
2081
+ end
2082
+
2083
+ class GetPaymentConnectorResponse
2084
+ attr_accessor payment_connector_id: ::String
2085
+ attr_accessor name: ::String
2086
+ attr_accessor description: ::String
2087
+ attr_accessor type: ("CoinbaseCDP" | "StripePrivy")
2088
+ attr_accessor credential_provider_configurations: ::Array[Types::CredentialsProviderConfiguration]
2089
+ attr_accessor created_at: ::Time
2090
+ attr_accessor last_updated_at: ::Time
2091
+ attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
2092
+ SENSITIVE: []
2093
+ end
2094
+
2095
+ class GetPaymentCredentialProviderRequest
2096
+ attr_accessor name: ::String
2097
+ SENSITIVE: []
2098
+ end
2099
+
2100
+ class GetPaymentCredentialProviderResponse
2101
+ attr_accessor name: ::String
2102
+ attr_accessor credential_provider_arn: ::String
2103
+ attr_accessor credential_provider_vendor: ("CoinbaseCDP" | "StripePrivy")
2104
+ attr_accessor provider_configuration_output: Types::PaymentProviderConfigurationOutput
2105
+ attr_accessor created_time: ::Time
2106
+ attr_accessor last_updated_time: ::Time
2107
+ attr_accessor tags: ::Hash[::String, ::String]
2108
+ SENSITIVE: []
2109
+ end
2110
+
2111
+ class GetPaymentManagerRequest
2112
+ attr_accessor payment_manager_id: ::String
2113
+ SENSITIVE: []
2114
+ end
2115
+
2116
+ class GetPaymentManagerResponse
2117
+ attr_accessor payment_manager_arn: ::String
2118
+ attr_accessor payment_manager_id: ::String
2119
+ attr_accessor name: ::String
2120
+ attr_accessor description: ::String
2121
+ attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM")
2122
+ attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
2123
+ attr_accessor role_arn: ::String
2124
+ attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
2125
+ attr_accessor created_at: ::Time
2126
+ attr_accessor last_updated_at: ::Time
2127
+ attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
2128
+ attr_accessor tags: ::Hash[::String, ::String]
2129
+ SENSITIVE: []
2130
+ end
2131
+
1954
2132
  class GetPolicyEngineRequest
1955
2133
  attr_accessor policy_engine_id: ::String
1956
2134
  SENSITIVE: []
@@ -2737,6 +2915,43 @@ module Aws::BedrockAgentCoreControl
2737
2915
  SENSITIVE: []
2738
2916
  end
2739
2917
 
2918
+ class ListPaymentConnectorsRequest
2919
+ attr_accessor payment_manager_id: ::String
2920
+ attr_accessor max_results: ::Integer
2921
+ attr_accessor next_token: ::String
2922
+ SENSITIVE: []
2923
+ end
2924
+
2925
+ class ListPaymentConnectorsResponse
2926
+ attr_accessor payment_connectors: ::Array[Types::PaymentConnectorSummary]
2927
+ attr_accessor next_token: ::String
2928
+ SENSITIVE: []
2929
+ end
2930
+
2931
+ class ListPaymentCredentialProvidersRequest
2932
+ attr_accessor next_token: ::String
2933
+ attr_accessor max_results: ::Integer
2934
+ SENSITIVE: []
2935
+ end
2936
+
2937
+ class ListPaymentCredentialProvidersResponse
2938
+ attr_accessor credential_providers: ::Array[Types::PaymentCredentialProviderItem]
2939
+ attr_accessor next_token: ::String
2940
+ SENSITIVE: []
2941
+ end
2942
+
2943
+ class ListPaymentManagersRequest
2944
+ attr_accessor max_results: ::Integer
2945
+ attr_accessor next_token: ::String
2946
+ SENSITIVE: []
2947
+ end
2948
+
2949
+ class ListPaymentManagersResponse
2950
+ attr_accessor payment_managers: ::Array[Types::PaymentManagerSummary]
2951
+ attr_accessor next_token: ::String
2952
+ SENSITIVE: []
2953
+ end
2954
+
2740
2955
  class ListPoliciesRequest
2741
2956
  attr_accessor next_token: ::String
2742
2957
  attr_accessor max_results: ::Integer
@@ -3300,6 +3515,70 @@ module Aws::BedrockAgentCoreControl
3300
3515
  SENSITIVE: []
3301
3516
  end
3302
3517
 
3518
+ class PaymentConnectorSummary
3519
+ attr_accessor payment_connector_id: ::String
3520
+ attr_accessor name: ::String
3521
+ attr_accessor type: ("CoinbaseCDP" | "StripePrivy")
3522
+ attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
3523
+ attr_accessor last_updated_at: ::Time
3524
+ SENSITIVE: []
3525
+ end
3526
+
3527
+ class PaymentCredentialProviderConfiguration
3528
+ attr_accessor credential_provider_arn: ::String
3529
+ SENSITIVE: []
3530
+ end
3531
+
3532
+ class PaymentCredentialProviderItem
3533
+ attr_accessor name: ::String
3534
+ attr_accessor credential_provider_vendor: ("CoinbaseCDP" | "StripePrivy")
3535
+ attr_accessor credential_provider_arn: ::String
3536
+ attr_accessor created_time: ::Time
3537
+ attr_accessor last_updated_time: ::Time
3538
+ SENSITIVE: []
3539
+ end
3540
+
3541
+ class PaymentManagerSummary
3542
+ attr_accessor payment_manager_arn: ::String
3543
+ attr_accessor payment_manager_id: ::String
3544
+ attr_accessor name: ::String
3545
+ attr_accessor description: ::String
3546
+ attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM")
3547
+ attr_accessor role_arn: ::String
3548
+ attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
3549
+ attr_accessor created_at: ::Time
3550
+ attr_accessor last_updated_at: ::Time
3551
+ SENSITIVE: []
3552
+ end
3553
+
3554
+ class PaymentProviderConfigurationInput
3555
+ attr_accessor coinbase_cdp_configuration: Types::CoinbaseCdpConfigurationInput
3556
+ attr_accessor stripe_privy_configuration: Types::StripePrivyConfigurationInput
3557
+ attr_accessor unknown: untyped
3558
+ SENSITIVE: []
3559
+
3560
+ class CoinbaseCdpConfiguration < PaymentProviderConfigurationInput
3561
+ end
3562
+ class StripePrivyConfiguration < PaymentProviderConfigurationInput
3563
+ end
3564
+ class Unknown < PaymentProviderConfigurationInput
3565
+ end
3566
+ end
3567
+
3568
+ class PaymentProviderConfigurationOutput
3569
+ attr_accessor coinbase_cdp_configuration: Types::CoinbaseCdpConfigurationOutput
3570
+ attr_accessor stripe_privy_configuration: Types::StripePrivyConfigurationOutput
3571
+ attr_accessor unknown: untyped
3572
+ SENSITIVE: []
3573
+
3574
+ class CoinbaseCdpConfiguration < PaymentProviderConfigurationOutput
3575
+ end
3576
+ class StripePrivyConfiguration < PaymentProviderConfigurationOutput
3577
+ end
3578
+ class Unknown < PaymentProviderConfigurationOutput
3579
+ end
3580
+ end
3581
+
3303
3582
  class Policy
3304
3583
  attr_accessor policy_id: ::String
3305
3584
  attr_accessor name: ::String
@@ -3837,6 +4116,22 @@ module Aws::BedrockAgentCoreControl
3837
4116
  SENSITIVE: []
3838
4117
  end
3839
4118
 
4119
+ class StripePrivyConfigurationInput
4120
+ attr_accessor app_id: ::String
4121
+ attr_accessor app_secret: ::String
4122
+ attr_accessor authorization_private_key: ::String
4123
+ attr_accessor authorization_id: ::String
4124
+ SENSITIVE: [:app_secret, :authorization_private_key]
4125
+ end
4126
+
4127
+ class StripePrivyConfigurationOutput
4128
+ attr_accessor app_id: ::String
4129
+ attr_accessor app_secret_arn: Types::Secret
4130
+ attr_accessor authorization_private_key_arn: Types::Secret
4131
+ attr_accessor authorization_id: ::String
4132
+ SENSITIVE: []
4133
+ end
4134
+
3840
4135
  class SubmitRegistryRecordForApprovalRequest
3841
4136
  attr_accessor registry_id: ::String
3842
4137
  attr_accessor record_id: ::String
@@ -4348,6 +4643,66 @@ module Aws::BedrockAgentCoreControl
4348
4643
  SENSITIVE: []
4349
4644
  end
4350
4645
 
4646
+ class UpdatePaymentConnectorRequest
4647
+ attr_accessor payment_manager_id: ::String
4648
+ attr_accessor payment_connector_id: ::String
4649
+ attr_accessor description: ::String
4650
+ attr_accessor type: ("CoinbaseCDP" | "StripePrivy")
4651
+ attr_accessor credential_provider_configurations: ::Array[Types::CredentialsProviderConfiguration]
4652
+ attr_accessor client_token: ::String
4653
+ SENSITIVE: []
4654
+ end
4655
+
4656
+ class UpdatePaymentConnectorResponse
4657
+ attr_accessor payment_connector_id: ::String
4658
+ attr_accessor payment_manager_id: ::String
4659
+ attr_accessor name: ::String
4660
+ attr_accessor type: ("CoinbaseCDP" | "StripePrivy")
4661
+ attr_accessor credential_provider_configurations: ::Array[Types::CredentialsProviderConfiguration]
4662
+ attr_accessor last_updated_at: ::Time
4663
+ attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
4664
+ SENSITIVE: []
4665
+ end
4666
+
4667
+ class UpdatePaymentCredentialProviderRequest
4668
+ attr_accessor name: ::String
4669
+ attr_accessor credential_provider_vendor: ("CoinbaseCDP" | "StripePrivy")
4670
+ attr_accessor provider_configuration_input: Types::PaymentProviderConfigurationInput
4671
+ SENSITIVE: []
4672
+ end
4673
+
4674
+ class UpdatePaymentCredentialProviderResponse
4675
+ attr_accessor name: ::String
4676
+ attr_accessor credential_provider_vendor: ("CoinbaseCDP" | "StripePrivy")
4677
+ attr_accessor credential_provider_arn: ::String
4678
+ attr_accessor provider_configuration_output: Types::PaymentProviderConfigurationOutput
4679
+ attr_accessor created_time: ::Time
4680
+ attr_accessor last_updated_time: ::Time
4681
+ SENSITIVE: []
4682
+ end
4683
+
4684
+ class UpdatePaymentManagerRequest
4685
+ attr_accessor payment_manager_id: ::String
4686
+ attr_accessor description: ::String
4687
+ attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM")
4688
+ attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
4689
+ attr_accessor role_arn: ::String
4690
+ attr_accessor client_token: ::String
4691
+ SENSITIVE: []
4692
+ end
4693
+
4694
+ class UpdatePaymentManagerResponse
4695
+ attr_accessor payment_manager_arn: ::String
4696
+ attr_accessor payment_manager_id: ::String
4697
+ attr_accessor name: ::String
4698
+ attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM")
4699
+ attr_accessor role_arn: ::String
4700
+ attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
4701
+ attr_accessor last_updated_at: ::Time
4702
+ attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
4703
+ SENSITIVE: []
4704
+ end
4705
+
4351
4706
  class UpdatePolicyEngineRequest
4352
4707
  attr_accessor policy_engine_id: ::String
4353
4708
  attr_accessor description: Types::UpdatedDescription
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-bedrockagentcorecontrol
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.44.0
4
+ version: 1.45.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services