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.
@@ -55,7 +55,7 @@ module Aws::BedrockAgentCoreControl
55
55
  autoload :EndpointProvider, 'aws-sdk-bedrockagentcorecontrol/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-bedrockagentcorecontrol/endpoints'
57
57
 
58
- GEM_VERSION = '1.44.0'
58
+ GEM_VERSION = '1.45.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -1461,6 +1461,140 @@ module Aws
1461
1461
  ) -> _CreateOnlineEvaluationConfigResponseSuccess
1462
1462
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateOnlineEvaluationConfigResponseSuccess
1463
1463
 
1464
+ interface _CreatePaymentConnectorResponseSuccess
1465
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreatePaymentConnectorResponse]
1466
+ def payment_connector_id: () -> ::String
1467
+ def payment_manager_id: () -> ::String
1468
+ def name: () -> ::String
1469
+ def type: () -> ("CoinbaseCDP" | "StripePrivy")
1470
+ def credential_provider_configurations: () -> ::Array[Types::CredentialsProviderConfiguration]
1471
+ def created_at: () -> ::Time
1472
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
1473
+ end
1474
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_payment_connector-instance_method
1475
+ def create_payment_connector: (
1476
+ payment_manager_id: ::String,
1477
+ name: ::String,
1478
+ ?description: ::String,
1479
+ type: ("CoinbaseCDP" | "StripePrivy"),
1480
+ credential_provider_configurations: Array[
1481
+ {
1482
+ coinbase_cdp: {
1483
+ credential_provider_arn: ::String
1484
+ }?,
1485
+ stripe_privy: {
1486
+ credential_provider_arn: ::String
1487
+ }?
1488
+ },
1489
+ ],
1490
+ ?client_token: ::String
1491
+ ) -> _CreatePaymentConnectorResponseSuccess
1492
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePaymentConnectorResponseSuccess
1493
+
1494
+ interface _CreatePaymentCredentialProviderResponseSuccess
1495
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreatePaymentCredentialProviderResponse]
1496
+ def name: () -> ::String
1497
+ def credential_provider_vendor: () -> ("CoinbaseCDP" | "StripePrivy")
1498
+ def credential_provider_arn: () -> ::String
1499
+ def provider_configuration_output: () -> Types::PaymentProviderConfigurationOutput
1500
+ end
1501
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_payment_credential_provider-instance_method
1502
+ def create_payment_credential_provider: (
1503
+ name: ::String,
1504
+ credential_provider_vendor: ("CoinbaseCDP" | "StripePrivy"),
1505
+ provider_configuration_input: {
1506
+ coinbase_cdp_configuration: {
1507
+ api_key_id: ::String,
1508
+ api_key_secret: ::String,
1509
+ wallet_secret: ::String
1510
+ }?,
1511
+ stripe_privy_configuration: {
1512
+ app_id: ::String,
1513
+ app_secret: ::String,
1514
+ authorization_private_key: ::String,
1515
+ authorization_id: ::String
1516
+ }?
1517
+ },
1518
+ ?tags: Hash[::String, ::String]
1519
+ ) -> _CreatePaymentCredentialProviderResponseSuccess
1520
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePaymentCredentialProviderResponseSuccess
1521
+
1522
+ interface _CreatePaymentManagerResponseSuccess
1523
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreatePaymentManagerResponse]
1524
+ def payment_manager_arn: () -> ::String
1525
+ def payment_manager_id: () -> ::String
1526
+ def name: () -> ::String
1527
+ def authorizer_type: () -> ("CUSTOM_JWT" | "AWS_IAM")
1528
+ def authorizer_configuration: () -> Types::AuthorizerConfiguration
1529
+ def role_arn: () -> ::String
1530
+ def workload_identity_details: () -> Types::WorkloadIdentityDetails
1531
+ def created_at: () -> ::Time
1532
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
1533
+ def tags: () -> ::Hash[::String, ::String]
1534
+ end
1535
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_payment_manager-instance_method
1536
+ def create_payment_manager: (
1537
+ name: ::String,
1538
+ ?description: ::String,
1539
+ authorizer_type: ("CUSTOM_JWT" | "AWS_IAM"),
1540
+ ?authorizer_configuration: {
1541
+ custom_jwt_authorizer: {
1542
+ discovery_url: ::String,
1543
+ allowed_audience: Array[::String]?,
1544
+ allowed_clients: Array[::String]?,
1545
+ allowed_scopes: Array[::String]?,
1546
+ custom_claims: Array[
1547
+ {
1548
+ inbound_token_claim_name: ::String,
1549
+ inbound_token_claim_value_type: ("STRING" | "STRING_ARRAY"),
1550
+ authorizing_claim_match_value: {
1551
+ claim_match_value: {
1552
+ match_value_string: ::String?,
1553
+ match_value_string_list: Array[::String]?
1554
+ },
1555
+ claim_match_operator: ("EQUALS" | "CONTAINS" | "CONTAINS_ANY")
1556
+ }
1557
+ },
1558
+ ]?,
1559
+ private_endpoint: {
1560
+ self_managed_lattice_resource: {
1561
+ resource_configuration_identifier: ::String?
1562
+ }?,
1563
+ managed_vpc_resource: {
1564
+ vpc_identifier: ::String,
1565
+ subnet_ids: Array[::String],
1566
+ endpoint_ip_address_type: ("IPV4" | "IPV6"),
1567
+ security_group_ids: Array[::String]?,
1568
+ tags: Hash[::String, ::String]?,
1569
+ routing_domain: ::String?
1570
+ }?
1571
+ }?,
1572
+ private_endpoint_overrides: Array[
1573
+ {
1574
+ domain: ::String,
1575
+ private_endpoint: {
1576
+ self_managed_lattice_resource: {
1577
+ resource_configuration_identifier: ::String?
1578
+ }?,
1579
+ managed_vpc_resource: {
1580
+ vpc_identifier: ::String,
1581
+ subnet_ids: Array[::String],
1582
+ endpoint_ip_address_type: ("IPV4" | "IPV6"),
1583
+ security_group_ids: Array[::String]?,
1584
+ tags: Hash[::String, ::String]?,
1585
+ routing_domain: ::String?
1586
+ }?
1587
+ }
1588
+ },
1589
+ ]?
1590
+ }?
1591
+ },
1592
+ role_arn: ::String,
1593
+ ?client_token: ::String,
1594
+ ?tags: Hash[::String, ::String]
1595
+ ) -> _CreatePaymentManagerResponseSuccess
1596
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePaymentManagerResponseSuccess
1597
+
1464
1598
  interface _CreatePolicyResponseSuccess
1465
1599
  include ::Seahorse::Client::_ResponseSuccess[Types::CreatePolicyResponse]
1466
1600
  def policy_id: () -> ::String
@@ -1848,6 +1982,40 @@ module Aws
1848
1982
  ) -> _DeleteOnlineEvaluationConfigResponseSuccess
1849
1983
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteOnlineEvaluationConfigResponseSuccess
1850
1984
 
1985
+ interface _DeletePaymentConnectorResponseSuccess
1986
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeletePaymentConnectorResponse]
1987
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
1988
+ def payment_connector_id: () -> ::String
1989
+ end
1990
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_payment_connector-instance_method
1991
+ def delete_payment_connector: (
1992
+ payment_manager_id: ::String,
1993
+ payment_connector_id: ::String,
1994
+ ?client_token: ::String
1995
+ ) -> _DeletePaymentConnectorResponseSuccess
1996
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeletePaymentConnectorResponseSuccess
1997
+
1998
+ interface _DeletePaymentCredentialProviderResponseSuccess
1999
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeletePaymentCredentialProviderResponse]
2000
+ end
2001
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_payment_credential_provider-instance_method
2002
+ def delete_payment_credential_provider: (
2003
+ name: ::String
2004
+ ) -> _DeletePaymentCredentialProviderResponseSuccess
2005
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeletePaymentCredentialProviderResponseSuccess
2006
+
2007
+ interface _DeletePaymentManagerResponseSuccess
2008
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeletePaymentManagerResponse]
2009
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
2010
+ def payment_manager_id: () -> ::String
2011
+ end
2012
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_payment_manager-instance_method
2013
+ def delete_payment_manager: (
2014
+ payment_manager_id: ::String,
2015
+ ?client_token: ::String
2016
+ ) -> _DeletePaymentManagerResponseSuccess
2017
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeletePaymentManagerResponseSuccess
2018
+
1851
2019
  interface _DeletePolicyResponseSuccess
1852
2020
  include ::Seahorse::Client::_ResponseSuccess[Types::DeletePolicyResponse]
1853
2021
  def policy_id: () -> ::String
@@ -2247,6 +2415,61 @@ module Aws
2247
2415
  ) -> _GetOnlineEvaluationConfigResponseSuccess
2248
2416
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetOnlineEvaluationConfigResponseSuccess
2249
2417
 
2418
+ interface _GetPaymentConnectorResponseSuccess
2419
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetPaymentConnectorResponse]
2420
+ def payment_connector_id: () -> ::String
2421
+ def name: () -> ::String
2422
+ def description: () -> ::String
2423
+ def type: () -> ("CoinbaseCDP" | "StripePrivy")
2424
+ def credential_provider_configurations: () -> ::Array[Types::CredentialsProviderConfiguration]
2425
+ def created_at: () -> ::Time
2426
+ def last_updated_at: () -> ::Time
2427
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
2428
+ end
2429
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_payment_connector-instance_method
2430
+ def get_payment_connector: (
2431
+ payment_manager_id: ::String,
2432
+ payment_connector_id: ::String
2433
+ ) -> _GetPaymentConnectorResponseSuccess
2434
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPaymentConnectorResponseSuccess
2435
+
2436
+ interface _GetPaymentCredentialProviderResponseSuccess
2437
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetPaymentCredentialProviderResponse]
2438
+ def name: () -> ::String
2439
+ def credential_provider_arn: () -> ::String
2440
+ def credential_provider_vendor: () -> ("CoinbaseCDP" | "StripePrivy")
2441
+ def provider_configuration_output: () -> Types::PaymentProviderConfigurationOutput
2442
+ def created_time: () -> ::Time
2443
+ def last_updated_time: () -> ::Time
2444
+ def tags: () -> ::Hash[::String, ::String]
2445
+ end
2446
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_payment_credential_provider-instance_method
2447
+ def get_payment_credential_provider: (
2448
+ name: ::String
2449
+ ) -> _GetPaymentCredentialProviderResponseSuccess
2450
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPaymentCredentialProviderResponseSuccess
2451
+
2452
+ interface _GetPaymentManagerResponseSuccess
2453
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetPaymentManagerResponse]
2454
+ def payment_manager_arn: () -> ::String
2455
+ def payment_manager_id: () -> ::String
2456
+ def name: () -> ::String
2457
+ def description: () -> ::String
2458
+ def authorizer_type: () -> ("CUSTOM_JWT" | "AWS_IAM")
2459
+ def authorizer_configuration: () -> Types::AuthorizerConfiguration
2460
+ def role_arn: () -> ::String
2461
+ def workload_identity_details: () -> Types::WorkloadIdentityDetails
2462
+ def created_at: () -> ::Time
2463
+ def last_updated_at: () -> ::Time
2464
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
2465
+ def tags: () -> ::Hash[::String, ::String]
2466
+ end
2467
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_payment_manager-instance_method
2468
+ def get_payment_manager: (
2469
+ payment_manager_id: ::String
2470
+ ) -> _GetPaymentManagerResponseSuccess
2471
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPaymentManagerResponseSuccess
2472
+
2250
2473
  interface _GetPolicyResponseSuccess
2251
2474
  include ::Seahorse::Client::_ResponseSuccess[Types::GetPolicyResponse]
2252
2475
  def policy_id: () -> ::String
@@ -2602,6 +2825,43 @@ module Aws
2602
2825
  ) -> _ListOnlineEvaluationConfigsResponseSuccess
2603
2826
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListOnlineEvaluationConfigsResponseSuccess
2604
2827
 
2828
+ interface _ListPaymentConnectorsResponseSuccess
2829
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListPaymentConnectorsResponse]
2830
+ def payment_connectors: () -> ::Array[Types::PaymentConnectorSummary]
2831
+ def next_token: () -> ::String
2832
+ end
2833
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_payment_connectors-instance_method
2834
+ def list_payment_connectors: (
2835
+ payment_manager_id: ::String,
2836
+ ?max_results: ::Integer,
2837
+ ?next_token: ::String
2838
+ ) -> _ListPaymentConnectorsResponseSuccess
2839
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPaymentConnectorsResponseSuccess
2840
+
2841
+ interface _ListPaymentCredentialProvidersResponseSuccess
2842
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListPaymentCredentialProvidersResponse]
2843
+ def credential_providers: () -> ::Array[Types::PaymentCredentialProviderItem]
2844
+ def next_token: () -> ::String
2845
+ end
2846
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_payment_credential_providers-instance_method
2847
+ def list_payment_credential_providers: (
2848
+ ?next_token: ::String,
2849
+ ?max_results: ::Integer
2850
+ ) -> _ListPaymentCredentialProvidersResponseSuccess
2851
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPaymentCredentialProvidersResponseSuccess
2852
+
2853
+ interface _ListPaymentManagersResponseSuccess
2854
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListPaymentManagersResponse]
2855
+ def payment_managers: () -> ::Array[Types::PaymentManagerSummary]
2856
+ def next_token: () -> ::String
2857
+ end
2858
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_payment_managers-instance_method
2859
+ def list_payment_managers: (
2860
+ ?max_results: ::Integer,
2861
+ ?next_token: ::String
2862
+ ) -> _ListPaymentManagersResponseSuccess
2863
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPaymentManagersResponseSuccess
2864
+
2605
2865
  interface _ListPoliciesResponseSuccess
2606
2866
  include ::Seahorse::Client::_ResponseSuccess[Types::ListPoliciesResponse]
2607
2867
  def policies: () -> ::Array[Types::Policy]
@@ -4258,6 +4518,138 @@ module Aws
4258
4518
  ) -> _UpdateOnlineEvaluationConfigResponseSuccess
4259
4519
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateOnlineEvaluationConfigResponseSuccess
4260
4520
 
4521
+ interface _UpdatePaymentConnectorResponseSuccess
4522
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdatePaymentConnectorResponse]
4523
+ def payment_connector_id: () -> ::String
4524
+ def payment_manager_id: () -> ::String
4525
+ def name: () -> ::String
4526
+ def type: () -> ("CoinbaseCDP" | "StripePrivy")
4527
+ def credential_provider_configurations: () -> ::Array[Types::CredentialsProviderConfiguration]
4528
+ def last_updated_at: () -> ::Time
4529
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
4530
+ end
4531
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_payment_connector-instance_method
4532
+ def update_payment_connector: (
4533
+ payment_manager_id: ::String,
4534
+ payment_connector_id: ::String,
4535
+ ?description: ::String,
4536
+ ?type: ("CoinbaseCDP" | "StripePrivy"),
4537
+ ?credential_provider_configurations: Array[
4538
+ {
4539
+ coinbase_cdp: {
4540
+ credential_provider_arn: ::String
4541
+ }?,
4542
+ stripe_privy: {
4543
+ credential_provider_arn: ::String
4544
+ }?
4545
+ },
4546
+ ],
4547
+ ?client_token: ::String
4548
+ ) -> _UpdatePaymentConnectorResponseSuccess
4549
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePaymentConnectorResponseSuccess
4550
+
4551
+ interface _UpdatePaymentCredentialProviderResponseSuccess
4552
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdatePaymentCredentialProviderResponse]
4553
+ def name: () -> ::String
4554
+ def credential_provider_vendor: () -> ("CoinbaseCDP" | "StripePrivy")
4555
+ def credential_provider_arn: () -> ::String
4556
+ def provider_configuration_output: () -> Types::PaymentProviderConfigurationOutput
4557
+ def created_time: () -> ::Time
4558
+ def last_updated_time: () -> ::Time
4559
+ end
4560
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_payment_credential_provider-instance_method
4561
+ def update_payment_credential_provider: (
4562
+ name: ::String,
4563
+ credential_provider_vendor: ("CoinbaseCDP" | "StripePrivy"),
4564
+ provider_configuration_input: {
4565
+ coinbase_cdp_configuration: {
4566
+ api_key_id: ::String,
4567
+ api_key_secret: ::String,
4568
+ wallet_secret: ::String
4569
+ }?,
4570
+ stripe_privy_configuration: {
4571
+ app_id: ::String,
4572
+ app_secret: ::String,
4573
+ authorization_private_key: ::String,
4574
+ authorization_id: ::String
4575
+ }?
4576
+ }
4577
+ ) -> _UpdatePaymentCredentialProviderResponseSuccess
4578
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePaymentCredentialProviderResponseSuccess
4579
+
4580
+ interface _UpdatePaymentManagerResponseSuccess
4581
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdatePaymentManagerResponse]
4582
+ def payment_manager_arn: () -> ::String
4583
+ def payment_manager_id: () -> ::String
4584
+ def name: () -> ::String
4585
+ def authorizer_type: () -> ("CUSTOM_JWT" | "AWS_IAM")
4586
+ def role_arn: () -> ::String
4587
+ def workload_identity_details: () -> Types::WorkloadIdentityDetails
4588
+ def last_updated_at: () -> ::Time
4589
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
4590
+ end
4591
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_payment_manager-instance_method
4592
+ def update_payment_manager: (
4593
+ payment_manager_id: ::String,
4594
+ ?description: ::String,
4595
+ ?authorizer_type: ("CUSTOM_JWT" | "AWS_IAM"),
4596
+ ?authorizer_configuration: {
4597
+ custom_jwt_authorizer: {
4598
+ discovery_url: ::String,
4599
+ allowed_audience: Array[::String]?,
4600
+ allowed_clients: Array[::String]?,
4601
+ allowed_scopes: Array[::String]?,
4602
+ custom_claims: Array[
4603
+ {
4604
+ inbound_token_claim_name: ::String,
4605
+ inbound_token_claim_value_type: ("STRING" | "STRING_ARRAY"),
4606
+ authorizing_claim_match_value: {
4607
+ claim_match_value: {
4608
+ match_value_string: ::String?,
4609
+ match_value_string_list: Array[::String]?
4610
+ },
4611
+ claim_match_operator: ("EQUALS" | "CONTAINS" | "CONTAINS_ANY")
4612
+ }
4613
+ },
4614
+ ]?,
4615
+ private_endpoint: {
4616
+ self_managed_lattice_resource: {
4617
+ resource_configuration_identifier: ::String?
4618
+ }?,
4619
+ managed_vpc_resource: {
4620
+ vpc_identifier: ::String,
4621
+ subnet_ids: Array[::String],
4622
+ endpoint_ip_address_type: ("IPV4" | "IPV6"),
4623
+ security_group_ids: Array[::String]?,
4624
+ tags: Hash[::String, ::String]?,
4625
+ routing_domain: ::String?
4626
+ }?
4627
+ }?,
4628
+ private_endpoint_overrides: Array[
4629
+ {
4630
+ domain: ::String,
4631
+ private_endpoint: {
4632
+ self_managed_lattice_resource: {
4633
+ resource_configuration_identifier: ::String?
4634
+ }?,
4635
+ managed_vpc_resource: {
4636
+ vpc_identifier: ::String,
4637
+ subnet_ids: Array[::String],
4638
+ endpoint_ip_address_type: ("IPV4" | "IPV6"),
4639
+ security_group_ids: Array[::String]?,
4640
+ tags: Hash[::String, ::String]?,
4641
+ routing_domain: ::String?
4642
+ }?
4643
+ }
4644
+ },
4645
+ ]?
4646
+ }?
4647
+ },
4648
+ ?role_arn: ::String,
4649
+ ?client_token: ::String
4650
+ ) -> _UpdatePaymentManagerResponseSuccess
4651
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePaymentManagerResponseSuccess
4652
+
4261
4653
  interface _UpdatePolicyResponseSuccess
4262
4654
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdatePolicyResponse]
4263
4655
  def policy_id: () -> ::String