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.
@@ -3338,6 +3338,347 @@ module Aws::BedrockAgentCoreControl
3338
3338
  req.send_request(options)
3339
3339
  end
3340
3340
 
3341
+ # Creates a new payment connector for a payment manager. A payment
3342
+ # connector integrates with a supported payment provider to enable
3343
+ # payment processing capabilities.
3344
+ #
3345
+ # @option params [required, String] :payment_manager_id
3346
+ # The unique identifier of the payment manager to create the connector
3347
+ # for.
3348
+ #
3349
+ # @option params [required, String] :name
3350
+ # The name of the payment connector.
3351
+ #
3352
+ # @option params [String] :description
3353
+ # A description of the payment connector.
3354
+ #
3355
+ # @option params [required, String] :type
3356
+ # The type of payment connector, which determines the payment provider
3357
+ # integration.
3358
+ #
3359
+ # @option params [required, Array<Types::CredentialsProviderConfiguration>] :credential_provider_configurations
3360
+ # The credential provider configurations for the payment connector.
3361
+ # These configurations specify how the connector authenticates with the
3362
+ # payment provider.
3363
+ #
3364
+ # @option params [String] :client_token
3365
+ # A unique, case-sensitive identifier to ensure that the API request
3366
+ # completes no more than one time. If you don't specify this field, a
3367
+ # value is randomly generated for you. If this token matches a previous
3368
+ # request, the service ignores the request, but doesn't return an
3369
+ # error. For more information, see [Ensuring idempotency][1].
3370
+ #
3371
+ # **A suitable default value is auto-generated.** You should normally
3372
+ # not need to pass this option.**
3373
+ #
3374
+ #
3375
+ #
3376
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
3377
+ #
3378
+ # @return [Types::CreatePaymentConnectorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3379
+ #
3380
+ # * {Types::CreatePaymentConnectorResponse#payment_connector_id #payment_connector_id} => String
3381
+ # * {Types::CreatePaymentConnectorResponse#payment_manager_id #payment_manager_id} => String
3382
+ # * {Types::CreatePaymentConnectorResponse#name #name} => String
3383
+ # * {Types::CreatePaymentConnectorResponse#type #type} => String
3384
+ # * {Types::CreatePaymentConnectorResponse#credential_provider_configurations #credential_provider_configurations} => Array&lt;Types::CredentialsProviderConfiguration&gt;
3385
+ # * {Types::CreatePaymentConnectorResponse#created_at #created_at} => Time
3386
+ # * {Types::CreatePaymentConnectorResponse#status #status} => String
3387
+ #
3388
+ # @example Request syntax with placeholder values
3389
+ #
3390
+ # resp = client.create_payment_connector({
3391
+ # payment_manager_id: "PaymentManagerId", # required
3392
+ # name: "PaymentConnectorName", # required
3393
+ # description: "PaymentsDescription",
3394
+ # type: "CoinbaseCDP", # required, accepts CoinbaseCDP, StripePrivy
3395
+ # credential_provider_configurations: [ # required
3396
+ # {
3397
+ # coinbase_cdp: {
3398
+ # credential_provider_arn: "PaymentCredentialProviderArn", # required
3399
+ # },
3400
+ # stripe_privy: {
3401
+ # credential_provider_arn: "PaymentCredentialProviderArn", # required
3402
+ # },
3403
+ # },
3404
+ # ],
3405
+ # client_token: "ClientToken",
3406
+ # })
3407
+ #
3408
+ # @example Response structure
3409
+ #
3410
+ # resp.payment_connector_id #=> String
3411
+ # resp.payment_manager_id #=> String
3412
+ # resp.name #=> String
3413
+ # resp.type #=> String, one of "CoinbaseCDP", "StripePrivy"
3414
+ # resp.credential_provider_configurations #=> Array
3415
+ # resp.credential_provider_configurations[0].coinbase_cdp.credential_provider_arn #=> String
3416
+ # resp.credential_provider_configurations[0].stripe_privy.credential_provider_arn #=> String
3417
+ # resp.created_at #=> Time
3418
+ # resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
3419
+ #
3420
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreatePaymentConnector AWS API Documentation
3421
+ #
3422
+ # @overload create_payment_connector(params = {})
3423
+ # @param [Hash] params ({})
3424
+ def create_payment_connector(params = {}, options = {})
3425
+ req = build_request(:create_payment_connector, params)
3426
+ req.send_request(options)
3427
+ end
3428
+
3429
+ # Creates a new payment credential provider for storing authentication
3430
+ # credentials used by payment connectors to communicate with external
3431
+ # payment providers.
3432
+ #
3433
+ # @option params [required, String] :name
3434
+ # Unique name for the payment credential provider
3435
+ #
3436
+ # @option params [required, String] :credential_provider_vendor
3437
+ # The vendor type (e.g., CoinbaseCDP)
3438
+ #
3439
+ # @option params [required, Types::PaymentProviderConfigurationInput] :provider_configuration_input
3440
+ # Configuration specific to the vendor, including API credentials
3441
+ #
3442
+ # @option params [Hash<String,String>] :tags
3443
+ # Optional tags for resource organization
3444
+ #
3445
+ # @return [Types::CreatePaymentCredentialProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3446
+ #
3447
+ # * {Types::CreatePaymentCredentialProviderResponse#name #name} => String
3448
+ # * {Types::CreatePaymentCredentialProviderResponse#credential_provider_vendor #credential_provider_vendor} => String
3449
+ # * {Types::CreatePaymentCredentialProviderResponse#credential_provider_arn #credential_provider_arn} => String
3450
+ # * {Types::CreatePaymentCredentialProviderResponse#provider_configuration_output #provider_configuration_output} => Types::PaymentProviderConfigurationOutput
3451
+ #
3452
+ # @example Request syntax with placeholder values
3453
+ #
3454
+ # resp = client.create_payment_credential_provider({
3455
+ # name: "CredentialProviderName", # required
3456
+ # credential_provider_vendor: "CoinbaseCDP", # required, accepts CoinbaseCDP, StripePrivy
3457
+ # provider_configuration_input: { # required
3458
+ # coinbase_cdp_configuration: {
3459
+ # api_key_id: "CoinbaseCdpApiKeyIdType", # required
3460
+ # api_key_secret: "CoinbaseCdpApiKeySecretType", # required
3461
+ # wallet_secret: "CoinbaseCdpWalletSecretType", # required
3462
+ # },
3463
+ # stripe_privy_configuration: {
3464
+ # app_id: "StripePrivyAppIdType", # required
3465
+ # app_secret: "StripePrivyAppSecretType", # required
3466
+ # authorization_private_key: "StripePrivyAuthorizationPrivateKeyType", # required
3467
+ # authorization_id: "StripePrivyAuthorizationIdType", # required
3468
+ # },
3469
+ # },
3470
+ # tags: {
3471
+ # "TagKey" => "TagValue",
3472
+ # },
3473
+ # })
3474
+ #
3475
+ # @example Response structure
3476
+ #
3477
+ # resp.name #=> String
3478
+ # resp.credential_provider_vendor #=> String, one of "CoinbaseCDP", "StripePrivy"
3479
+ # resp.credential_provider_arn #=> String
3480
+ # resp.provider_configuration_output.coinbase_cdp_configuration.api_key_id #=> String
3481
+ # resp.provider_configuration_output.coinbase_cdp_configuration.api_key_secret_arn.secret_arn #=> String
3482
+ # resp.provider_configuration_output.coinbase_cdp_configuration.wallet_secret_arn.secret_arn #=> String
3483
+ # resp.provider_configuration_output.stripe_privy_configuration.app_id #=> String
3484
+ # resp.provider_configuration_output.stripe_privy_configuration.app_secret_arn.secret_arn #=> String
3485
+ # resp.provider_configuration_output.stripe_privy_configuration.authorization_private_key_arn.secret_arn #=> String
3486
+ # resp.provider_configuration_output.stripe_privy_configuration.authorization_id #=> String
3487
+ #
3488
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreatePaymentCredentialProvider AWS API Documentation
3489
+ #
3490
+ # @overload create_payment_credential_provider(params = {})
3491
+ # @param [Hash] params ({})
3492
+ def create_payment_credential_provider(params = {}, options = {})
3493
+ req = build_request(:create_payment_credential_provider, params)
3494
+ req.send_request(options)
3495
+ end
3496
+
3497
+ # Creates a new payment manager in your Amazon Web Services account. A
3498
+ # payment manager serves as the top-level resource for managing payment
3499
+ # processing capabilities, including payment connectors that integrate
3500
+ # with supported payment providers.
3501
+ #
3502
+ # If you specify `CUSTOM_JWT` as the `authorizerType`, you must provide
3503
+ # an `authorizerConfiguration`.
3504
+ #
3505
+ # @option params [required, String] :name
3506
+ # The name of the payment manager.
3507
+ #
3508
+ # @option params [String] :description
3509
+ # A description of the payment manager.
3510
+ #
3511
+ # @option params [required, String] :authorizer_type
3512
+ # The type of authorizer to use for the payment manager.
3513
+ #
3514
+ # * `CUSTOM_JWT` - Authorize with a bearer token.
3515
+ #
3516
+ # * `AWS_IAM` - Authorize with your Amazon Web Services IAM credentials.
3517
+ #
3518
+ # @option params [Types::AuthorizerConfiguration] :authorizer_configuration
3519
+ # The authorizer configuration for the payment manager.
3520
+ #
3521
+ # @option params [required, String] :role_arn
3522
+ # The Amazon Resource Name (ARN) of the IAM role that the payment
3523
+ # manager assumes to access resources on your behalf.
3524
+ #
3525
+ # @option params [String] :client_token
3526
+ # A unique, case-sensitive identifier to ensure that the API request
3527
+ # completes no more than one time. If you don't specify this field, a
3528
+ # value is randomly generated for you. If this token matches a previous
3529
+ # request, the service ignores the request, but doesn't return an
3530
+ # error. For more information, see [Ensuring idempotency][1].
3531
+ #
3532
+ # **A suitable default value is auto-generated.** You should normally
3533
+ # not need to pass this option.**
3534
+ #
3535
+ #
3536
+ #
3537
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
3538
+ #
3539
+ # @option params [Hash<String,String>] :tags
3540
+ # A map of tag keys and values to assign to the payment manager.
3541
+ #
3542
+ # @return [Types::CreatePaymentManagerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3543
+ #
3544
+ # * {Types::CreatePaymentManagerResponse#payment_manager_arn #payment_manager_arn} => String
3545
+ # * {Types::CreatePaymentManagerResponse#payment_manager_id #payment_manager_id} => String
3546
+ # * {Types::CreatePaymentManagerResponse#name #name} => String
3547
+ # * {Types::CreatePaymentManagerResponse#authorizer_type #authorizer_type} => String
3548
+ # * {Types::CreatePaymentManagerResponse#authorizer_configuration #authorizer_configuration} => Types::AuthorizerConfiguration
3549
+ # * {Types::CreatePaymentManagerResponse#role_arn #role_arn} => String
3550
+ # * {Types::CreatePaymentManagerResponse#workload_identity_details #workload_identity_details} => Types::WorkloadIdentityDetails
3551
+ # * {Types::CreatePaymentManagerResponse#created_at #created_at} => Time
3552
+ # * {Types::CreatePaymentManagerResponse#status #status} => String
3553
+ # * {Types::CreatePaymentManagerResponse#tags #tags} => Hash&lt;String,String&gt;
3554
+ #
3555
+ # @example Request syntax with placeholder values
3556
+ #
3557
+ # resp = client.create_payment_manager({
3558
+ # name: "PaymentManagerName", # required
3559
+ # description: "PaymentsDescription",
3560
+ # authorizer_type: "CUSTOM_JWT", # required, accepts CUSTOM_JWT, AWS_IAM
3561
+ # authorizer_configuration: {
3562
+ # custom_jwt_authorizer: {
3563
+ # discovery_url: "DiscoveryUrl", # required
3564
+ # allowed_audience: ["AllowedAudience"],
3565
+ # allowed_clients: ["AllowedClient"],
3566
+ # allowed_scopes: ["AllowedScopeType"],
3567
+ # custom_claims: [
3568
+ # {
3569
+ # inbound_token_claim_name: "InboundTokenClaimNameType", # required
3570
+ # inbound_token_claim_value_type: "STRING", # required, accepts STRING, STRING_ARRAY
3571
+ # authorizing_claim_match_value: { # required
3572
+ # claim_match_value: { # required
3573
+ # match_value_string: "MatchValueString",
3574
+ # match_value_string_list: ["MatchValueString"],
3575
+ # },
3576
+ # claim_match_operator: "EQUALS", # required, accepts EQUALS, CONTAINS, CONTAINS_ANY
3577
+ # },
3578
+ # },
3579
+ # ],
3580
+ # private_endpoint: {
3581
+ # self_managed_lattice_resource: {
3582
+ # resource_configuration_identifier: "ResourceConfigurationIdentifier",
3583
+ # },
3584
+ # managed_vpc_resource: {
3585
+ # vpc_identifier: "VpcIdentifier", # required
3586
+ # subnet_ids: ["SubnetId"], # required
3587
+ # endpoint_ip_address_type: "IPV4", # required, accepts IPV4, IPV6
3588
+ # security_group_ids: ["SecurityGroupIdentifier"],
3589
+ # tags: {
3590
+ # "TagKey" => "TagValue",
3591
+ # },
3592
+ # routing_domain: "RoutingDomain",
3593
+ # },
3594
+ # },
3595
+ # private_endpoint_overrides: [
3596
+ # {
3597
+ # domain: "PrivateEndpointOverrideDomain", # required
3598
+ # private_endpoint: { # required
3599
+ # self_managed_lattice_resource: {
3600
+ # resource_configuration_identifier: "ResourceConfigurationIdentifier",
3601
+ # },
3602
+ # managed_vpc_resource: {
3603
+ # vpc_identifier: "VpcIdentifier", # required
3604
+ # subnet_ids: ["SubnetId"], # required
3605
+ # endpoint_ip_address_type: "IPV4", # required, accepts IPV4, IPV6
3606
+ # security_group_ids: ["SecurityGroupIdentifier"],
3607
+ # tags: {
3608
+ # "TagKey" => "TagValue",
3609
+ # },
3610
+ # routing_domain: "RoutingDomain",
3611
+ # },
3612
+ # },
3613
+ # },
3614
+ # ],
3615
+ # },
3616
+ # },
3617
+ # role_arn: "RoleArn", # required
3618
+ # client_token: "ClientToken",
3619
+ # tags: {
3620
+ # "TagKey" => "TagValue",
3621
+ # },
3622
+ # })
3623
+ #
3624
+ # @example Response structure
3625
+ #
3626
+ # resp.payment_manager_arn #=> String
3627
+ # resp.payment_manager_id #=> String
3628
+ # resp.name #=> String
3629
+ # resp.authorizer_type #=> String, one of "CUSTOM_JWT", "AWS_IAM"
3630
+ # resp.authorizer_configuration.custom_jwt_authorizer.discovery_url #=> String
3631
+ # resp.authorizer_configuration.custom_jwt_authorizer.allowed_audience #=> Array
3632
+ # resp.authorizer_configuration.custom_jwt_authorizer.allowed_audience[0] #=> String
3633
+ # resp.authorizer_configuration.custom_jwt_authorizer.allowed_clients #=> Array
3634
+ # resp.authorizer_configuration.custom_jwt_authorizer.allowed_clients[0] #=> String
3635
+ # resp.authorizer_configuration.custom_jwt_authorizer.allowed_scopes #=> Array
3636
+ # resp.authorizer_configuration.custom_jwt_authorizer.allowed_scopes[0] #=> String
3637
+ # resp.authorizer_configuration.custom_jwt_authorizer.custom_claims #=> Array
3638
+ # resp.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].inbound_token_claim_name #=> String
3639
+ # resp.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].inbound_token_claim_value_type #=> String, one of "STRING", "STRING_ARRAY"
3640
+ # resp.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_value.match_value_string #=> String
3641
+ # resp.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_value.match_value_string_list #=> Array
3642
+ # resp.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_value.match_value_string_list[0] #=> String
3643
+ # resp.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_operator #=> String, one of "EQUALS", "CONTAINS", "CONTAINS_ANY"
3644
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
3645
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.vpc_identifier #=> String
3646
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.subnet_ids #=> Array
3647
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.subnet_ids[0] #=> String
3648
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.endpoint_ip_address_type #=> String, one of "IPV4", "IPV6"
3649
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.security_group_ids #=> Array
3650
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.security_group_ids[0] #=> String
3651
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.tags #=> Hash
3652
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
3653
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.routing_domain #=> String
3654
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides #=> Array
3655
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].domain #=> String
3656
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
3657
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.vpc_identifier #=> String
3658
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.subnet_ids #=> Array
3659
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.subnet_ids[0] #=> String
3660
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.endpoint_ip_address_type #=> String, one of "IPV4", "IPV6"
3661
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.security_group_ids #=> Array
3662
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.security_group_ids[0] #=> String
3663
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
3664
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
3665
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.routing_domain #=> String
3666
+ # resp.role_arn #=> String
3667
+ # resp.workload_identity_details.workload_identity_arn #=> String
3668
+ # resp.created_at #=> Time
3669
+ # resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
3670
+ # resp.tags #=> Hash
3671
+ # resp.tags["TagKey"] #=> String
3672
+ #
3673
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreatePaymentManager AWS API Documentation
3674
+ #
3675
+ # @overload create_payment_manager(params = {})
3676
+ # @param [Hash] params ({})
3677
+ def create_payment_manager(params = {}, options = {})
3678
+ req = build_request(:create_payment_manager, params)
3679
+ req.send_request(options)
3680
+ end
3681
+
3341
3682
  # Creates a policy within the AgentCore Policy system. Policies provide
3342
3683
  # real-time, deterministic control over agentic interactions with
3343
3684
  # AgentCore Gateway. Using the Cedar policy language, you can define
@@ -4505,30 +4846,149 @@ module Aws::BedrockAgentCoreControl
4505
4846
  # The unique identifier of the online evaluation configuration to
4506
4847
  # delete.
4507
4848
  #
4508
- # @return [Types::DeleteOnlineEvaluationConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4849
+ # @return [Types::DeleteOnlineEvaluationConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4850
+ #
4851
+ # * {Types::DeleteOnlineEvaluationConfigResponse#online_evaluation_config_arn #online_evaluation_config_arn} => String
4852
+ # * {Types::DeleteOnlineEvaluationConfigResponse#online_evaluation_config_id #online_evaluation_config_id} => String
4853
+ # * {Types::DeleteOnlineEvaluationConfigResponse#status #status} => String
4854
+ #
4855
+ # @example Request syntax with placeholder values
4856
+ #
4857
+ # resp = client.delete_online_evaluation_config({
4858
+ # online_evaluation_config_id: "OnlineEvaluationConfigId", # required
4859
+ # })
4860
+ #
4861
+ # @example Response structure
4862
+ #
4863
+ # resp.online_evaluation_config_arn #=> String
4864
+ # resp.online_evaluation_config_id #=> String
4865
+ # resp.status #=> String, one of "ACTIVE", "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "DELETING", "ERROR"
4866
+ #
4867
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteOnlineEvaluationConfig AWS API Documentation
4868
+ #
4869
+ # @overload delete_online_evaluation_config(params = {})
4870
+ # @param [Hash] params ({})
4871
+ def delete_online_evaluation_config(params = {}, options = {})
4872
+ req = build_request(:delete_online_evaluation_config, params)
4873
+ req.send_request(options)
4874
+ end
4875
+
4876
+ # Deletes a payment connector.
4877
+ #
4878
+ # @option params [required, String] :payment_manager_id
4879
+ # The unique identifier of the parent payment manager.
4880
+ #
4881
+ # @option params [required, String] :payment_connector_id
4882
+ # The unique identifier of the payment connector to delete.
4883
+ #
4884
+ # @option params [String] :client_token
4885
+ # A unique, case-sensitive identifier to ensure that the API request
4886
+ # completes no more than one time. If you don't specify this field, a
4887
+ # value is randomly generated for you. If this token matches a previous
4888
+ # request, the service ignores the request, but doesn't return an
4889
+ # error. For more information, see [Ensuring idempotency][1].
4890
+ #
4891
+ # **A suitable default value is auto-generated.** You should normally
4892
+ # not need to pass this option.**
4893
+ #
4894
+ #
4895
+ #
4896
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
4897
+ #
4898
+ # @return [Types::DeletePaymentConnectorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4899
+ #
4900
+ # * {Types::DeletePaymentConnectorResponse#status #status} => String
4901
+ # * {Types::DeletePaymentConnectorResponse#payment_connector_id #payment_connector_id} => String
4902
+ #
4903
+ # @example Request syntax with placeholder values
4904
+ #
4905
+ # resp = client.delete_payment_connector({
4906
+ # payment_manager_id: "PaymentManagerId", # required
4907
+ # payment_connector_id: "PaymentConnectorId", # required
4908
+ # client_token: "ClientToken",
4909
+ # })
4910
+ #
4911
+ # @example Response structure
4912
+ #
4913
+ # resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
4914
+ # resp.payment_connector_id #=> String
4915
+ #
4916
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeletePaymentConnector AWS API Documentation
4917
+ #
4918
+ # @overload delete_payment_connector(params = {})
4919
+ # @param [Hash] params ({})
4920
+ def delete_payment_connector(params = {}, options = {})
4921
+ req = build_request(:delete_payment_connector, params)
4922
+ req.send_request(options)
4923
+ end
4924
+
4925
+ # Deletes a payment credential provider and its associated stored
4926
+ # credentials.
4927
+ #
4928
+ # @option params [required, String] :name
4929
+ # The name of the payment credential provider to delete.
4930
+ #
4931
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4932
+ #
4933
+ # @example Request syntax with placeholder values
4934
+ #
4935
+ # resp = client.delete_payment_credential_provider({
4936
+ # name: "CredentialProviderName", # required
4937
+ # })
4938
+ #
4939
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeletePaymentCredentialProvider AWS API Documentation
4940
+ #
4941
+ # @overload delete_payment_credential_provider(params = {})
4942
+ # @param [Hash] params ({})
4943
+ def delete_payment_credential_provider(params = {}, options = {})
4944
+ req = build_request(:delete_payment_credential_provider, params)
4945
+ req.send_request(options)
4946
+ end
4947
+
4948
+ # Deletes a payment manager. All payment connectors associated with the
4949
+ # payment manager must be deleted before the payment manager can be
4950
+ # deleted. This operation initiates the deletion process asynchronously.
4951
+ #
4952
+ # @option params [required, String] :payment_manager_id
4953
+ # The unique identifier of the payment manager to delete.
4954
+ #
4955
+ # @option params [String] :client_token
4956
+ # A unique, case-sensitive identifier to ensure that the API request
4957
+ # completes no more than one time. If you don't specify this field, a
4958
+ # value is randomly generated for you. If this token matches a previous
4959
+ # request, the service ignores the request, but doesn't return an
4960
+ # error. For more information, see [Ensuring idempotency][1].
4961
+ #
4962
+ # **A suitable default value is auto-generated.** You should normally
4963
+ # not need to pass this option.**
4964
+ #
4965
+ #
4509
4966
  #
4510
- # * {Types::DeleteOnlineEvaluationConfigResponse#online_evaluation_config_arn #online_evaluation_config_arn} => String
4511
- # * {Types::DeleteOnlineEvaluationConfigResponse#online_evaluation_config_id #online_evaluation_config_id} => String
4512
- # * {Types::DeleteOnlineEvaluationConfigResponse#status #status} => String
4967
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
4968
+ #
4969
+ # @return [Types::DeletePaymentManagerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4970
+ #
4971
+ # * {Types::DeletePaymentManagerResponse#status #status} => String
4972
+ # * {Types::DeletePaymentManagerResponse#payment_manager_id #payment_manager_id} => String
4513
4973
  #
4514
4974
  # @example Request syntax with placeholder values
4515
4975
  #
4516
- # resp = client.delete_online_evaluation_config({
4517
- # online_evaluation_config_id: "OnlineEvaluationConfigId", # required
4976
+ # resp = client.delete_payment_manager({
4977
+ # payment_manager_id: "PaymentManagerId", # required
4978
+ # client_token: "ClientToken",
4518
4979
  # })
4519
4980
  #
4520
4981
  # @example Response structure
4521
4982
  #
4522
- # resp.online_evaluation_config_arn #=> String
4523
- # resp.online_evaluation_config_id #=> String
4524
- # resp.status #=> String, one of "ACTIVE", "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "DELETING", "ERROR"
4983
+ # resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
4984
+ # resp.payment_manager_id #=> String
4525
4985
  #
4526
- # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteOnlineEvaluationConfig AWS API Documentation
4986
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeletePaymentManager AWS API Documentation
4527
4987
  #
4528
- # @overload delete_online_evaluation_config(params = {})
4988
+ # @overload delete_payment_manager(params = {})
4529
4989
  # @param [Hash] params ({})
4530
- def delete_online_evaluation_config(params = {}, options = {})
4531
- req = build_request(:delete_online_evaluation_config, params)
4990
+ def delete_payment_manager(params = {}, options = {})
4991
+ req = build_request(:delete_payment_manager, params)
4532
4992
  req.send_request(options)
4533
4993
  end
4534
4994
 
@@ -6138,6 +6598,187 @@ module Aws::BedrockAgentCoreControl
6138
6598
  req.send_request(options)
6139
6599
  end
6140
6600
 
6601
+ # Retrieves information about a specific payment connector.
6602
+ #
6603
+ # @option params [required, String] :payment_manager_id
6604
+ # The unique identifier of the parent payment manager.
6605
+ #
6606
+ # @option params [required, String] :payment_connector_id
6607
+ # The unique identifier of the payment connector to retrieve.
6608
+ #
6609
+ # @return [Types::GetPaymentConnectorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6610
+ #
6611
+ # * {Types::GetPaymentConnectorResponse#payment_connector_id #payment_connector_id} => String
6612
+ # * {Types::GetPaymentConnectorResponse#name #name} => String
6613
+ # * {Types::GetPaymentConnectorResponse#description #description} => String
6614
+ # * {Types::GetPaymentConnectorResponse#type #type} => String
6615
+ # * {Types::GetPaymentConnectorResponse#credential_provider_configurations #credential_provider_configurations} => Array&lt;Types::CredentialsProviderConfiguration&gt;
6616
+ # * {Types::GetPaymentConnectorResponse#created_at #created_at} => Time
6617
+ # * {Types::GetPaymentConnectorResponse#last_updated_at #last_updated_at} => Time
6618
+ # * {Types::GetPaymentConnectorResponse#status #status} => String
6619
+ #
6620
+ # @example Request syntax with placeholder values
6621
+ #
6622
+ # resp = client.get_payment_connector({
6623
+ # payment_manager_id: "PaymentManagerId", # required
6624
+ # payment_connector_id: "PaymentConnectorId", # required
6625
+ # })
6626
+ #
6627
+ # @example Response structure
6628
+ #
6629
+ # resp.payment_connector_id #=> String
6630
+ # resp.name #=> String
6631
+ # resp.description #=> String
6632
+ # resp.type #=> String, one of "CoinbaseCDP", "StripePrivy"
6633
+ # resp.credential_provider_configurations #=> Array
6634
+ # resp.credential_provider_configurations[0].coinbase_cdp.credential_provider_arn #=> String
6635
+ # resp.credential_provider_configurations[0].stripe_privy.credential_provider_arn #=> String
6636
+ # resp.created_at #=> Time
6637
+ # resp.last_updated_at #=> Time
6638
+ # resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
6639
+ #
6640
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPaymentConnector AWS API Documentation
6641
+ #
6642
+ # @overload get_payment_connector(params = {})
6643
+ # @param [Hash] params ({})
6644
+ def get_payment_connector(params = {}, options = {})
6645
+ req = build_request(:get_payment_connector, params)
6646
+ req.send_request(options)
6647
+ end
6648
+
6649
+ # Retrieves information about a specific payment credential provider.
6650
+ #
6651
+ # @option params [required, String] :name
6652
+ # The name of the payment credential provider to retrieve.
6653
+ #
6654
+ # @return [Types::GetPaymentCredentialProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6655
+ #
6656
+ # * {Types::GetPaymentCredentialProviderResponse#name #name} => String
6657
+ # * {Types::GetPaymentCredentialProviderResponse#credential_provider_arn #credential_provider_arn} => String
6658
+ # * {Types::GetPaymentCredentialProviderResponse#credential_provider_vendor #credential_provider_vendor} => String
6659
+ # * {Types::GetPaymentCredentialProviderResponse#provider_configuration_output #provider_configuration_output} => Types::PaymentProviderConfigurationOutput
6660
+ # * {Types::GetPaymentCredentialProviderResponse#created_time #created_time} => Time
6661
+ # * {Types::GetPaymentCredentialProviderResponse#last_updated_time #last_updated_time} => Time
6662
+ # * {Types::GetPaymentCredentialProviderResponse#tags #tags} => Hash&lt;String,String&gt;
6663
+ #
6664
+ # @example Request syntax with placeholder values
6665
+ #
6666
+ # resp = client.get_payment_credential_provider({
6667
+ # name: "CredentialProviderName", # required
6668
+ # })
6669
+ #
6670
+ # @example Response structure
6671
+ #
6672
+ # resp.name #=> String
6673
+ # resp.credential_provider_arn #=> String
6674
+ # resp.credential_provider_vendor #=> String, one of "CoinbaseCDP", "StripePrivy"
6675
+ # resp.provider_configuration_output.coinbase_cdp_configuration.api_key_id #=> String
6676
+ # resp.provider_configuration_output.coinbase_cdp_configuration.api_key_secret_arn.secret_arn #=> String
6677
+ # resp.provider_configuration_output.coinbase_cdp_configuration.wallet_secret_arn.secret_arn #=> String
6678
+ # resp.provider_configuration_output.stripe_privy_configuration.app_id #=> String
6679
+ # resp.provider_configuration_output.stripe_privy_configuration.app_secret_arn.secret_arn #=> String
6680
+ # resp.provider_configuration_output.stripe_privy_configuration.authorization_private_key_arn.secret_arn #=> String
6681
+ # resp.provider_configuration_output.stripe_privy_configuration.authorization_id #=> String
6682
+ # resp.created_time #=> Time
6683
+ # resp.last_updated_time #=> Time
6684
+ # resp.tags #=> Hash
6685
+ # resp.tags["TagKey"] #=> String
6686
+ #
6687
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPaymentCredentialProvider AWS API Documentation
6688
+ #
6689
+ # @overload get_payment_credential_provider(params = {})
6690
+ # @param [Hash] params ({})
6691
+ def get_payment_credential_provider(params = {}, options = {})
6692
+ req = build_request(:get_payment_credential_provider, params)
6693
+ req.send_request(options)
6694
+ end
6695
+
6696
+ # Retrieves information about a specific payment manager.
6697
+ #
6698
+ # @option params [required, String] :payment_manager_id
6699
+ # The unique identifier of the payment manager to retrieve.
6700
+ #
6701
+ # @return [Types::GetPaymentManagerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6702
+ #
6703
+ # * {Types::GetPaymentManagerResponse#payment_manager_arn #payment_manager_arn} => String
6704
+ # * {Types::GetPaymentManagerResponse#payment_manager_id #payment_manager_id} => String
6705
+ # * {Types::GetPaymentManagerResponse#name #name} => String
6706
+ # * {Types::GetPaymentManagerResponse#description #description} => String
6707
+ # * {Types::GetPaymentManagerResponse#authorizer_type #authorizer_type} => String
6708
+ # * {Types::GetPaymentManagerResponse#authorizer_configuration #authorizer_configuration} => Types::AuthorizerConfiguration
6709
+ # * {Types::GetPaymentManagerResponse#role_arn #role_arn} => String
6710
+ # * {Types::GetPaymentManagerResponse#workload_identity_details #workload_identity_details} => Types::WorkloadIdentityDetails
6711
+ # * {Types::GetPaymentManagerResponse#created_at #created_at} => Time
6712
+ # * {Types::GetPaymentManagerResponse#last_updated_at #last_updated_at} => Time
6713
+ # * {Types::GetPaymentManagerResponse#status #status} => String
6714
+ # * {Types::GetPaymentManagerResponse#tags #tags} => Hash&lt;String,String&gt;
6715
+ #
6716
+ # @example Request syntax with placeholder values
6717
+ #
6718
+ # resp = client.get_payment_manager({
6719
+ # payment_manager_id: "PaymentManagerId", # required
6720
+ # })
6721
+ #
6722
+ # @example Response structure
6723
+ #
6724
+ # resp.payment_manager_arn #=> String
6725
+ # resp.payment_manager_id #=> String
6726
+ # resp.name #=> String
6727
+ # resp.description #=> String
6728
+ # resp.authorizer_type #=> String, one of "CUSTOM_JWT", "AWS_IAM"
6729
+ # resp.authorizer_configuration.custom_jwt_authorizer.discovery_url #=> String
6730
+ # resp.authorizer_configuration.custom_jwt_authorizer.allowed_audience #=> Array
6731
+ # resp.authorizer_configuration.custom_jwt_authorizer.allowed_audience[0] #=> String
6732
+ # resp.authorizer_configuration.custom_jwt_authorizer.allowed_clients #=> Array
6733
+ # resp.authorizer_configuration.custom_jwt_authorizer.allowed_clients[0] #=> String
6734
+ # resp.authorizer_configuration.custom_jwt_authorizer.allowed_scopes #=> Array
6735
+ # resp.authorizer_configuration.custom_jwt_authorizer.allowed_scopes[0] #=> String
6736
+ # resp.authorizer_configuration.custom_jwt_authorizer.custom_claims #=> Array
6737
+ # resp.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].inbound_token_claim_name #=> String
6738
+ # resp.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].inbound_token_claim_value_type #=> String, one of "STRING", "STRING_ARRAY"
6739
+ # resp.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_value.match_value_string #=> String
6740
+ # resp.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_value.match_value_string_list #=> Array
6741
+ # resp.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_value.match_value_string_list[0] #=> String
6742
+ # resp.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_operator #=> String, one of "EQUALS", "CONTAINS", "CONTAINS_ANY"
6743
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
6744
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.vpc_identifier #=> String
6745
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.subnet_ids #=> Array
6746
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.subnet_ids[0] #=> String
6747
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.endpoint_ip_address_type #=> String, one of "IPV4", "IPV6"
6748
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.security_group_ids #=> Array
6749
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.security_group_ids[0] #=> String
6750
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.tags #=> Hash
6751
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
6752
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.routing_domain #=> String
6753
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides #=> Array
6754
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].domain #=> String
6755
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
6756
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.vpc_identifier #=> String
6757
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.subnet_ids #=> Array
6758
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.subnet_ids[0] #=> String
6759
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.endpoint_ip_address_type #=> String, one of "IPV4", "IPV6"
6760
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.security_group_ids #=> Array
6761
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.security_group_ids[0] #=> String
6762
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
6763
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
6764
+ # resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.routing_domain #=> String
6765
+ # resp.role_arn #=> String
6766
+ # resp.workload_identity_details.workload_identity_arn #=> String
6767
+ # resp.created_at #=> Time
6768
+ # resp.last_updated_at #=> Time
6769
+ # resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
6770
+ # resp.tags #=> Hash
6771
+ # resp.tags["TagKey"] #=> String
6772
+ #
6773
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPaymentManager AWS API Documentation
6774
+ #
6775
+ # @overload get_payment_manager(params = {})
6776
+ # @param [Hash] params ({})
6777
+ def get_payment_manager(params = {}, options = {})
6778
+ req = build_request(:get_payment_manager, params)
6779
+ req.send_request(options)
6780
+ end
6781
+
6141
6782
  # Retrieves detailed information about a specific policy within the
6142
6783
  # AgentCore Policy system. This operation returns the complete policy
6143
6784
  # definition, metadata, and current status, allowing administrators to
@@ -7304,52 +7945,192 @@ module Aws::BedrockAgentCoreControl
7304
7945
  req.send_request(options)
7305
7946
  end
7306
7947
 
7307
- # Lists the available Amazon Bedrock AgentCore Memory resources in the
7308
- # current Amazon Web Services Region.
7948
+ # Lists the available Amazon Bedrock AgentCore Memory resources in the
7949
+ # current Amazon Web Services Region.
7950
+ #
7951
+ # @option params [Integer] :max_results
7952
+ # The maximum number of results to return in a single call. The default
7953
+ # value is 10. The maximum value is 50.
7954
+ #
7955
+ # @option params [String] :next_token
7956
+ # The token for the next set of results. Use the value returned in the
7957
+ # previous response in the next request to retrieve the next set of
7958
+ # results.
7959
+ #
7960
+ # @return [Types::ListMemoriesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7961
+ #
7962
+ # * {Types::ListMemoriesOutput#memories #memories} => Array&lt;Types::MemorySummary&gt;
7963
+ # * {Types::ListMemoriesOutput#next_token #next_token} => String
7964
+ #
7965
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
7966
+ #
7967
+ # @example Request syntax with placeholder values
7968
+ #
7969
+ # resp = client.list_memories({
7970
+ # max_results: 1,
7971
+ # next_token: "String",
7972
+ # })
7973
+ #
7974
+ # @example Response structure
7975
+ #
7976
+ # resp.memories #=> Array
7977
+ # resp.memories[0].arn #=> String
7978
+ # resp.memories[0].id #=> String
7979
+ # resp.memories[0].status #=> String, one of "CREATING", "ACTIVE", "FAILED", "DELETING"
7980
+ # resp.memories[0].created_at #=> Time
7981
+ # resp.memories[0].updated_at #=> Time
7982
+ # resp.next_token #=> String
7983
+ #
7984
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListMemories AWS API Documentation
7985
+ #
7986
+ # @overload list_memories(params = {})
7987
+ # @param [Hash] params ({})
7988
+ def list_memories(params = {}, options = {})
7989
+ req = build_request(:list_memories, params)
7990
+ req.send_request(options)
7991
+ end
7992
+
7993
+ # Lists all OAuth2 credential providers in your account.
7994
+ #
7995
+ # @option params [String] :next_token
7996
+ # Pagination token.
7997
+ #
7998
+ # @option params [Integer] :max_results
7999
+ # Maximum number of results to return.
8000
+ #
8001
+ # @return [Types::ListOauth2CredentialProvidersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8002
+ #
8003
+ # * {Types::ListOauth2CredentialProvidersResponse#credential_providers #credential_providers} => Array&lt;Types::Oauth2CredentialProviderItem&gt;
8004
+ # * {Types::ListOauth2CredentialProvidersResponse#next_token #next_token} => String
8005
+ #
8006
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
8007
+ #
8008
+ # @example Request syntax with placeholder values
8009
+ #
8010
+ # resp = client.list_oauth_2_credential_providers({
8011
+ # next_token: "String",
8012
+ # max_results: 1,
8013
+ # })
8014
+ #
8015
+ # @example Response structure
8016
+ #
8017
+ # resp.credential_providers #=> Array
8018
+ # resp.credential_providers[0].name #=> String
8019
+ # resp.credential_providers[0].credential_provider_vendor #=> String, one of "GoogleOauth2", "GithubOauth2", "SlackOauth2", "SalesforceOauth2", "MicrosoftOauth2", "CustomOauth2", "AtlassianOauth2", "LinkedinOauth2", "XOauth2", "OktaOauth2", "OneLoginOauth2", "PingOneOauth2", "FacebookOauth2", "YandexOauth2", "RedditOauth2", "ZoomOauth2", "TwitchOauth2", "SpotifyOauth2", "DropboxOauth2", "NotionOauth2", "HubspotOauth2", "CyberArkOauth2", "FusionAuthOauth2", "Auth0Oauth2", "CognitoOauth2"
8020
+ # resp.credential_providers[0].credential_provider_arn #=> String
8021
+ # resp.credential_providers[0].created_time #=> Time
8022
+ # resp.credential_providers[0].last_updated_time #=> Time
8023
+ # resp.next_token #=> String
8024
+ #
8025
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListOauth2CredentialProviders AWS API Documentation
8026
+ #
8027
+ # @overload list_oauth_2_credential_providers(params = {})
8028
+ # @param [Hash] params ({})
8029
+ def list_oauth_2_credential_providers(params = {}, options = {})
8030
+ req = build_request(:list_oauth_2_credential_providers, params)
8031
+ req.send_request(options)
8032
+ end
8033
+
8034
+ # Lists all online evaluation configurations in the account, providing
8035
+ # summary information about each configuration's status and settings.
8036
+ #
8037
+ # @option params [String] :next_token
8038
+ # The pagination token from a previous request to retrieve the next page
8039
+ # of results.
8040
+ #
8041
+ # @option params [Integer] :max_results
8042
+ # The maximum number of online evaluation configurations to return in a
8043
+ # single response.
8044
+ #
8045
+ # @return [Types::ListOnlineEvaluationConfigsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8046
+ #
8047
+ # * {Types::ListOnlineEvaluationConfigsResponse#online_evaluation_configs #online_evaluation_configs} => Array&lt;Types::OnlineEvaluationConfigSummary&gt;
8048
+ # * {Types::ListOnlineEvaluationConfigsResponse#next_token #next_token} => String
8049
+ #
8050
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
8051
+ #
8052
+ # @example Request syntax with placeholder values
8053
+ #
8054
+ # resp = client.list_online_evaluation_configs({
8055
+ # next_token: "String",
8056
+ # max_results: 1,
8057
+ # })
8058
+ #
8059
+ # @example Response structure
8060
+ #
8061
+ # resp.online_evaluation_configs #=> Array
8062
+ # resp.online_evaluation_configs[0].online_evaluation_config_arn #=> String
8063
+ # resp.online_evaluation_configs[0].online_evaluation_config_id #=> String
8064
+ # resp.online_evaluation_configs[0].online_evaluation_config_name #=> String
8065
+ # resp.online_evaluation_configs[0].description #=> String
8066
+ # resp.online_evaluation_configs[0].status #=> String, one of "ACTIVE", "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "DELETING", "ERROR"
8067
+ # resp.online_evaluation_configs[0].execution_status #=> String, one of "ENABLED", "DISABLED"
8068
+ # resp.online_evaluation_configs[0].created_at #=> Time
8069
+ # resp.online_evaluation_configs[0].updated_at #=> Time
8070
+ # resp.online_evaluation_configs[0].failure_reason #=> String
8071
+ # resp.next_token #=> String
8072
+ #
8073
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListOnlineEvaluationConfigs AWS API Documentation
8074
+ #
8075
+ # @overload list_online_evaluation_configs(params = {})
8076
+ # @param [Hash] params ({})
8077
+ def list_online_evaluation_configs(params = {}, options = {})
8078
+ req = build_request(:list_online_evaluation_configs, params)
8079
+ req.send_request(options)
8080
+ end
8081
+
8082
+ # Lists all payment connectors for a specified payment manager.
8083
+ #
8084
+ # @option params [required, String] :payment_manager_id
8085
+ # The unique identifier of the payment manager whose connectors to list.
7309
8086
  #
7310
8087
  # @option params [Integer] :max_results
7311
- # The maximum number of results to return in a single call. The default
7312
- # value is 10. The maximum value is 50.
8088
+ # The maximum number of results to return in the response. If the total
8089
+ # number of results is greater than this value, use the token returned
8090
+ # in the response in the `nextToken` field when making another request
8091
+ # to return the next batch of results.
7313
8092
  #
7314
8093
  # @option params [String] :next_token
7315
- # The token for the next set of results. Use the value returned in the
7316
- # previous response in the next request to retrieve the next set of
8094
+ # If the total number of results is greater than the `maxResults` value
8095
+ # provided in the request, enter the token returned in the `nextToken`
8096
+ # field in the response in this field to return the next batch of
7317
8097
  # results.
7318
8098
  #
7319
- # @return [Types::ListMemoriesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8099
+ # @return [Types::ListPaymentConnectorsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7320
8100
  #
7321
- # * {Types::ListMemoriesOutput#memories #memories} => Array&lt;Types::MemorySummary&gt;
7322
- # * {Types::ListMemoriesOutput#next_token #next_token} => String
8101
+ # * {Types::ListPaymentConnectorsResponse#payment_connectors #payment_connectors} => Array&lt;Types::PaymentConnectorSummary&gt;
8102
+ # * {Types::ListPaymentConnectorsResponse#next_token #next_token} => String
7323
8103
  #
7324
8104
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
7325
8105
  #
7326
8106
  # @example Request syntax with placeholder values
7327
8107
  #
7328
- # resp = client.list_memories({
8108
+ # resp = client.list_payment_connectors({
8109
+ # payment_manager_id: "PaymentManagerId", # required
7329
8110
  # max_results: 1,
7330
- # next_token: "String",
8111
+ # next_token: "NextToken",
7331
8112
  # })
7332
8113
  #
7333
8114
  # @example Response structure
7334
8115
  #
7335
- # resp.memories #=> Array
7336
- # resp.memories[0].arn #=> String
7337
- # resp.memories[0].id #=> String
7338
- # resp.memories[0].status #=> String, one of "CREATING", "ACTIVE", "FAILED", "DELETING"
7339
- # resp.memories[0].created_at #=> Time
7340
- # resp.memories[0].updated_at #=> Time
8116
+ # resp.payment_connectors #=> Array
8117
+ # resp.payment_connectors[0].payment_connector_id #=> String
8118
+ # resp.payment_connectors[0].name #=> String
8119
+ # resp.payment_connectors[0].type #=> String, one of "CoinbaseCDP", "StripePrivy"
8120
+ # resp.payment_connectors[0].status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
8121
+ # resp.payment_connectors[0].last_updated_at #=> Time
7341
8122
  # resp.next_token #=> String
7342
8123
  #
7343
- # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListMemories AWS API Documentation
8124
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPaymentConnectors AWS API Documentation
7344
8125
  #
7345
- # @overload list_memories(params = {})
8126
+ # @overload list_payment_connectors(params = {})
7346
8127
  # @param [Hash] params ({})
7347
- def list_memories(params = {}, options = {})
7348
- req = build_request(:list_memories, params)
8128
+ def list_payment_connectors(params = {}, options = {})
8129
+ req = build_request(:list_payment_connectors, params)
7349
8130
  req.send_request(options)
7350
8131
  end
7351
8132
 
7352
- # Lists all OAuth2 credential providers in your account.
8133
+ # Lists all payment credential providers in the account.
7353
8134
  #
7354
8135
  # @option params [String] :next_token
7355
8136
  # Pagination token.
@@ -7357,16 +8138,16 @@ module Aws::BedrockAgentCoreControl
7357
8138
  # @option params [Integer] :max_results
7358
8139
  # Maximum number of results to return.
7359
8140
  #
7360
- # @return [Types::ListOauth2CredentialProvidersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8141
+ # @return [Types::ListPaymentCredentialProvidersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7361
8142
  #
7362
- # * {Types::ListOauth2CredentialProvidersResponse#credential_providers #credential_providers} => Array&lt;Types::Oauth2CredentialProviderItem&gt;
7363
- # * {Types::ListOauth2CredentialProvidersResponse#next_token #next_token} => String
8143
+ # * {Types::ListPaymentCredentialProvidersResponse#credential_providers #credential_providers} => Array&lt;Types::PaymentCredentialProviderItem&gt;
8144
+ # * {Types::ListPaymentCredentialProvidersResponse#next_token #next_token} => String
7364
8145
  #
7365
8146
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
7366
8147
  #
7367
8148
  # @example Request syntax with placeholder values
7368
8149
  #
7369
- # resp = client.list_oauth_2_credential_providers({
8150
+ # resp = client.list_payment_credential_providers({
7370
8151
  # next_token: "String",
7371
8152
  # max_results: 1,
7372
8153
  # })
@@ -7375,66 +8156,69 @@ module Aws::BedrockAgentCoreControl
7375
8156
  #
7376
8157
  # resp.credential_providers #=> Array
7377
8158
  # resp.credential_providers[0].name #=> String
7378
- # resp.credential_providers[0].credential_provider_vendor #=> String, one of "GoogleOauth2", "GithubOauth2", "SlackOauth2", "SalesforceOauth2", "MicrosoftOauth2", "CustomOauth2", "AtlassianOauth2", "LinkedinOauth2", "XOauth2", "OktaOauth2", "OneLoginOauth2", "PingOneOauth2", "FacebookOauth2", "YandexOauth2", "RedditOauth2", "ZoomOauth2", "TwitchOauth2", "SpotifyOauth2", "DropboxOauth2", "NotionOauth2", "HubspotOauth2", "CyberArkOauth2", "FusionAuthOauth2", "Auth0Oauth2", "CognitoOauth2"
8159
+ # resp.credential_providers[0].credential_provider_vendor #=> String, one of "CoinbaseCDP", "StripePrivy"
7379
8160
  # resp.credential_providers[0].credential_provider_arn #=> String
7380
8161
  # resp.credential_providers[0].created_time #=> Time
7381
8162
  # resp.credential_providers[0].last_updated_time #=> Time
7382
8163
  # resp.next_token #=> String
7383
8164
  #
7384
- # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListOauth2CredentialProviders AWS API Documentation
8165
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPaymentCredentialProviders AWS API Documentation
7385
8166
  #
7386
- # @overload list_oauth_2_credential_providers(params = {})
8167
+ # @overload list_payment_credential_providers(params = {})
7387
8168
  # @param [Hash] params ({})
7388
- def list_oauth_2_credential_providers(params = {}, options = {})
7389
- req = build_request(:list_oauth_2_credential_providers, params)
8169
+ def list_payment_credential_providers(params = {}, options = {})
8170
+ req = build_request(:list_payment_credential_providers, params)
7390
8171
  req.send_request(options)
7391
8172
  end
7392
8173
 
7393
- # Lists all online evaluation configurations in the account, providing
7394
- # summary information about each configuration's status and settings.
7395
- #
7396
- # @option params [String] :next_token
7397
- # The pagination token from a previous request to retrieve the next page
7398
- # of results.
8174
+ # Lists all payment managers in the account.
7399
8175
  #
7400
8176
  # @option params [Integer] :max_results
7401
- # The maximum number of online evaluation configurations to return in a
7402
- # single response.
8177
+ # The maximum number of results to return in the response. If the total
8178
+ # number of results is greater than this value, use the token returned
8179
+ # in the response in the `nextToken` field when making another request
8180
+ # to return the next batch of results.
7403
8181
  #
7404
- # @return [Types::ListOnlineEvaluationConfigsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8182
+ # @option params [String] :next_token
8183
+ # If the total number of results is greater than the `maxResults` value
8184
+ # provided in the request, enter the token returned in the `nextToken`
8185
+ # field in the response in this field to return the next batch of
8186
+ # results.
7405
8187
  #
7406
- # * {Types::ListOnlineEvaluationConfigsResponse#online_evaluation_configs #online_evaluation_configs} => Array&lt;Types::OnlineEvaluationConfigSummary&gt;
7407
- # * {Types::ListOnlineEvaluationConfigsResponse#next_token #next_token} => String
8188
+ # @return [Types::ListPaymentManagersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8189
+ #
8190
+ # * {Types::ListPaymentManagersResponse#payment_managers #payment_managers} => Array&lt;Types::PaymentManagerSummary&gt;
8191
+ # * {Types::ListPaymentManagersResponse#next_token #next_token} => String
7408
8192
  #
7409
8193
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
7410
8194
  #
7411
8195
  # @example Request syntax with placeholder values
7412
8196
  #
7413
- # resp = client.list_online_evaluation_configs({
7414
- # next_token: "String",
8197
+ # resp = client.list_payment_managers({
7415
8198
  # max_results: 1,
8199
+ # next_token: "NextToken",
7416
8200
  # })
7417
8201
  #
7418
8202
  # @example Response structure
7419
8203
  #
7420
- # resp.online_evaluation_configs #=> Array
7421
- # resp.online_evaluation_configs[0].online_evaluation_config_arn #=> String
7422
- # resp.online_evaluation_configs[0].online_evaluation_config_id #=> String
7423
- # resp.online_evaluation_configs[0].online_evaluation_config_name #=> String
7424
- # resp.online_evaluation_configs[0].description #=> String
7425
- # resp.online_evaluation_configs[0].status #=> String, one of "ACTIVE", "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "DELETING", "ERROR"
7426
- # resp.online_evaluation_configs[0].execution_status #=> String, one of "ENABLED", "DISABLED"
7427
- # resp.online_evaluation_configs[0].created_at #=> Time
7428
- # resp.online_evaluation_configs[0].updated_at #=> Time
7429
- # resp.online_evaluation_configs[0].failure_reason #=> String
8204
+ # resp.payment_managers #=> Array
8205
+ # resp.payment_managers[0].payment_manager_arn #=> String
8206
+ # resp.payment_managers[0].payment_manager_id #=> String
8207
+ # resp.payment_managers[0].name #=> String
8208
+ # resp.payment_managers[0].description #=> String
8209
+ # resp.payment_managers[0].authorizer_type #=> String, one of "CUSTOM_JWT", "AWS_IAM"
8210
+ # resp.payment_managers[0].role_arn #=> String
8211
+ # resp.payment_managers[0].status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
8212
+ # resp.payment_managers[0].created_at #=> Time
8213
+ # resp.payment_managers[0].last_updated_at #=> Time
7430
8214
  # resp.next_token #=> String
7431
8215
  #
7432
- # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListOnlineEvaluationConfigs AWS API Documentation
8216
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPaymentManagers AWS API Documentation
7433
8217
  #
7434
- # @overload list_online_evaluation_configs(params = {})
8218
+ # @overload list_payment_managers(params = {})
7435
8219
  # @param [Hash] params ({})
7436
- def list_online_evaluation_configs(params = {}, options = {})
7437
- req = build_request(:list_online_evaluation_configs, params)
8220
+ def list_payment_managers(params = {}, options = {})
8221
+ req = build_request(:list_payment_managers, params)
7438
8222
  req.send_request(options)
7439
8223
  end
7440
8224
 
@@ -10980,6 +11764,286 @@ module Aws::BedrockAgentCoreControl
10980
11764
  req.send_request(options)
10981
11765
  end
10982
11766
 
11767
+ # Updates an existing payment connector. This operation uses PATCH
11768
+ # semantics, so you only need to specify the fields you want to change.
11769
+ #
11770
+ # @option params [required, String] :payment_manager_id
11771
+ # The unique identifier of the parent payment manager.
11772
+ #
11773
+ # @option params [required, String] :payment_connector_id
11774
+ # The unique identifier of the payment connector to update.
11775
+ #
11776
+ # @option params [String] :description
11777
+ # The updated description of the payment connector.
11778
+ #
11779
+ # @option params [String] :type
11780
+ # The updated type of the payment connector.
11781
+ #
11782
+ # @option params [Array<Types::CredentialsProviderConfiguration>] :credential_provider_configurations
11783
+ # The updated credential provider configurations for the payment
11784
+ # connector.
11785
+ #
11786
+ # @option params [String] :client_token
11787
+ # A unique, case-sensitive identifier to ensure that the API request
11788
+ # completes no more than one time. If you don't specify this field, a
11789
+ # value is randomly generated for you. If this token matches a previous
11790
+ # request, the service ignores the request, but doesn't return an
11791
+ # error. For more information, see [Ensuring idempotency][1].
11792
+ #
11793
+ # **A suitable default value is auto-generated.** You should normally
11794
+ # not need to pass this option.**
11795
+ #
11796
+ #
11797
+ #
11798
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
11799
+ #
11800
+ # @return [Types::UpdatePaymentConnectorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
11801
+ #
11802
+ # * {Types::UpdatePaymentConnectorResponse#payment_connector_id #payment_connector_id} => String
11803
+ # * {Types::UpdatePaymentConnectorResponse#payment_manager_id #payment_manager_id} => String
11804
+ # * {Types::UpdatePaymentConnectorResponse#name #name} => String
11805
+ # * {Types::UpdatePaymentConnectorResponse#type #type} => String
11806
+ # * {Types::UpdatePaymentConnectorResponse#credential_provider_configurations #credential_provider_configurations} => Array&lt;Types::CredentialsProviderConfiguration&gt;
11807
+ # * {Types::UpdatePaymentConnectorResponse#last_updated_at #last_updated_at} => Time
11808
+ # * {Types::UpdatePaymentConnectorResponse#status #status} => String
11809
+ #
11810
+ # @example Request syntax with placeholder values
11811
+ #
11812
+ # resp = client.update_payment_connector({
11813
+ # payment_manager_id: "PaymentManagerId", # required
11814
+ # payment_connector_id: "PaymentConnectorId", # required
11815
+ # description: "PaymentsDescription",
11816
+ # type: "CoinbaseCDP", # accepts CoinbaseCDP, StripePrivy
11817
+ # credential_provider_configurations: [
11818
+ # {
11819
+ # coinbase_cdp: {
11820
+ # credential_provider_arn: "PaymentCredentialProviderArn", # required
11821
+ # },
11822
+ # stripe_privy: {
11823
+ # credential_provider_arn: "PaymentCredentialProviderArn", # required
11824
+ # },
11825
+ # },
11826
+ # ],
11827
+ # client_token: "ClientToken",
11828
+ # })
11829
+ #
11830
+ # @example Response structure
11831
+ #
11832
+ # resp.payment_connector_id #=> String
11833
+ # resp.payment_manager_id #=> String
11834
+ # resp.name #=> String
11835
+ # resp.type #=> String, one of "CoinbaseCDP", "StripePrivy"
11836
+ # resp.credential_provider_configurations #=> Array
11837
+ # resp.credential_provider_configurations[0].coinbase_cdp.credential_provider_arn #=> String
11838
+ # resp.credential_provider_configurations[0].stripe_privy.credential_provider_arn #=> String
11839
+ # resp.last_updated_at #=> Time
11840
+ # resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
11841
+ #
11842
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatePaymentConnector AWS API Documentation
11843
+ #
11844
+ # @overload update_payment_connector(params = {})
11845
+ # @param [Hash] params ({})
11846
+ def update_payment_connector(params = {}, options = {})
11847
+ req = build_request(:update_payment_connector, params)
11848
+ req.send_request(options)
11849
+ end
11850
+
11851
+ # Updates an existing payment credential provider with new
11852
+ # authentication credentials.
11853
+ #
11854
+ # @option params [required, String] :name
11855
+ # The name of the payment credential provider to update.
11856
+ #
11857
+ # @option params [required, String] :credential_provider_vendor
11858
+ # Supported vendor types for payment providers using non-standard auth
11859
+ # protocols
11860
+ #
11861
+ # @option params [required, Types::PaymentProviderConfigurationInput] :provider_configuration_input
11862
+ # Configuration specific to the vendor, including API credentials
11863
+ #
11864
+ # @return [Types::UpdatePaymentCredentialProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
11865
+ #
11866
+ # * {Types::UpdatePaymentCredentialProviderResponse#name #name} => String
11867
+ # * {Types::UpdatePaymentCredentialProviderResponse#credential_provider_vendor #credential_provider_vendor} => String
11868
+ # * {Types::UpdatePaymentCredentialProviderResponse#credential_provider_arn #credential_provider_arn} => String
11869
+ # * {Types::UpdatePaymentCredentialProviderResponse#provider_configuration_output #provider_configuration_output} => Types::PaymentProviderConfigurationOutput
11870
+ # * {Types::UpdatePaymentCredentialProviderResponse#created_time #created_time} => Time
11871
+ # * {Types::UpdatePaymentCredentialProviderResponse#last_updated_time #last_updated_time} => Time
11872
+ #
11873
+ # @example Request syntax with placeholder values
11874
+ #
11875
+ # resp = client.update_payment_credential_provider({
11876
+ # name: "CredentialProviderName", # required
11877
+ # credential_provider_vendor: "CoinbaseCDP", # required, accepts CoinbaseCDP, StripePrivy
11878
+ # provider_configuration_input: { # required
11879
+ # coinbase_cdp_configuration: {
11880
+ # api_key_id: "CoinbaseCdpApiKeyIdType", # required
11881
+ # api_key_secret: "CoinbaseCdpApiKeySecretType", # required
11882
+ # wallet_secret: "CoinbaseCdpWalletSecretType", # required
11883
+ # },
11884
+ # stripe_privy_configuration: {
11885
+ # app_id: "StripePrivyAppIdType", # required
11886
+ # app_secret: "StripePrivyAppSecretType", # required
11887
+ # authorization_private_key: "StripePrivyAuthorizationPrivateKeyType", # required
11888
+ # authorization_id: "StripePrivyAuthorizationIdType", # required
11889
+ # },
11890
+ # },
11891
+ # })
11892
+ #
11893
+ # @example Response structure
11894
+ #
11895
+ # resp.name #=> String
11896
+ # resp.credential_provider_vendor #=> String, one of "CoinbaseCDP", "StripePrivy"
11897
+ # resp.credential_provider_arn #=> String
11898
+ # resp.provider_configuration_output.coinbase_cdp_configuration.api_key_id #=> String
11899
+ # resp.provider_configuration_output.coinbase_cdp_configuration.api_key_secret_arn.secret_arn #=> String
11900
+ # resp.provider_configuration_output.coinbase_cdp_configuration.wallet_secret_arn.secret_arn #=> String
11901
+ # resp.provider_configuration_output.stripe_privy_configuration.app_id #=> String
11902
+ # resp.provider_configuration_output.stripe_privy_configuration.app_secret_arn.secret_arn #=> String
11903
+ # resp.provider_configuration_output.stripe_privy_configuration.authorization_private_key_arn.secret_arn #=> String
11904
+ # resp.provider_configuration_output.stripe_privy_configuration.authorization_id #=> String
11905
+ # resp.created_time #=> Time
11906
+ # resp.last_updated_time #=> Time
11907
+ #
11908
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatePaymentCredentialProvider AWS API Documentation
11909
+ #
11910
+ # @overload update_payment_credential_provider(params = {})
11911
+ # @param [Hash] params ({})
11912
+ def update_payment_credential_provider(params = {}, options = {})
11913
+ req = build_request(:update_payment_credential_provider, params)
11914
+ req.send_request(options)
11915
+ end
11916
+
11917
+ # Updates an existing payment manager. This operation uses PATCH
11918
+ # semantics, so you only need to specify the fields you want to change.
11919
+ #
11920
+ # @option params [required, String] :payment_manager_id
11921
+ # The unique identifier of the payment manager to update.
11922
+ #
11923
+ # @option params [String] :description
11924
+ # The updated description of the payment manager.
11925
+ #
11926
+ # @option params [String] :authorizer_type
11927
+ # The updated authorizer type for the payment manager.
11928
+ #
11929
+ # @option params [Types::AuthorizerConfiguration] :authorizer_configuration
11930
+ # The updated authorizer configuration for the payment manager.
11931
+ #
11932
+ # @option params [String] :role_arn
11933
+ # The updated Amazon Resource Name (ARN) of the IAM role for the payment
11934
+ # manager.
11935
+ #
11936
+ # @option params [String] :client_token
11937
+ # A unique, case-sensitive identifier to ensure that the API request
11938
+ # completes no more than one time. If you don't specify this field, a
11939
+ # value is randomly generated for you. If this token matches a previous
11940
+ # request, the service ignores the request, but doesn't return an
11941
+ # error. For more information, see [Ensuring idempotency][1].
11942
+ #
11943
+ # **A suitable default value is auto-generated.** You should normally
11944
+ # not need to pass this option.**
11945
+ #
11946
+ #
11947
+ #
11948
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
11949
+ #
11950
+ # @return [Types::UpdatePaymentManagerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
11951
+ #
11952
+ # * {Types::UpdatePaymentManagerResponse#payment_manager_arn #payment_manager_arn} => String
11953
+ # * {Types::UpdatePaymentManagerResponse#payment_manager_id #payment_manager_id} => String
11954
+ # * {Types::UpdatePaymentManagerResponse#name #name} => String
11955
+ # * {Types::UpdatePaymentManagerResponse#authorizer_type #authorizer_type} => String
11956
+ # * {Types::UpdatePaymentManagerResponse#role_arn #role_arn} => String
11957
+ # * {Types::UpdatePaymentManagerResponse#workload_identity_details #workload_identity_details} => Types::WorkloadIdentityDetails
11958
+ # * {Types::UpdatePaymentManagerResponse#last_updated_at #last_updated_at} => Time
11959
+ # * {Types::UpdatePaymentManagerResponse#status #status} => String
11960
+ #
11961
+ # @example Request syntax with placeholder values
11962
+ #
11963
+ # resp = client.update_payment_manager({
11964
+ # payment_manager_id: "PaymentManagerId", # required
11965
+ # description: "PaymentsDescription",
11966
+ # authorizer_type: "CUSTOM_JWT", # accepts CUSTOM_JWT, AWS_IAM
11967
+ # authorizer_configuration: {
11968
+ # custom_jwt_authorizer: {
11969
+ # discovery_url: "DiscoveryUrl", # required
11970
+ # allowed_audience: ["AllowedAudience"],
11971
+ # allowed_clients: ["AllowedClient"],
11972
+ # allowed_scopes: ["AllowedScopeType"],
11973
+ # custom_claims: [
11974
+ # {
11975
+ # inbound_token_claim_name: "InboundTokenClaimNameType", # required
11976
+ # inbound_token_claim_value_type: "STRING", # required, accepts STRING, STRING_ARRAY
11977
+ # authorizing_claim_match_value: { # required
11978
+ # claim_match_value: { # required
11979
+ # match_value_string: "MatchValueString",
11980
+ # match_value_string_list: ["MatchValueString"],
11981
+ # },
11982
+ # claim_match_operator: "EQUALS", # required, accepts EQUALS, CONTAINS, CONTAINS_ANY
11983
+ # },
11984
+ # },
11985
+ # ],
11986
+ # private_endpoint: {
11987
+ # self_managed_lattice_resource: {
11988
+ # resource_configuration_identifier: "ResourceConfigurationIdentifier",
11989
+ # },
11990
+ # managed_vpc_resource: {
11991
+ # vpc_identifier: "VpcIdentifier", # required
11992
+ # subnet_ids: ["SubnetId"], # required
11993
+ # endpoint_ip_address_type: "IPV4", # required, accepts IPV4, IPV6
11994
+ # security_group_ids: ["SecurityGroupIdentifier"],
11995
+ # tags: {
11996
+ # "TagKey" => "TagValue",
11997
+ # },
11998
+ # routing_domain: "RoutingDomain",
11999
+ # },
12000
+ # },
12001
+ # private_endpoint_overrides: [
12002
+ # {
12003
+ # domain: "PrivateEndpointOverrideDomain", # required
12004
+ # private_endpoint: { # required
12005
+ # self_managed_lattice_resource: {
12006
+ # resource_configuration_identifier: "ResourceConfigurationIdentifier",
12007
+ # },
12008
+ # managed_vpc_resource: {
12009
+ # vpc_identifier: "VpcIdentifier", # required
12010
+ # subnet_ids: ["SubnetId"], # required
12011
+ # endpoint_ip_address_type: "IPV4", # required, accepts IPV4, IPV6
12012
+ # security_group_ids: ["SecurityGroupIdentifier"],
12013
+ # tags: {
12014
+ # "TagKey" => "TagValue",
12015
+ # },
12016
+ # routing_domain: "RoutingDomain",
12017
+ # },
12018
+ # },
12019
+ # },
12020
+ # ],
12021
+ # },
12022
+ # },
12023
+ # role_arn: "RoleArn",
12024
+ # client_token: "ClientToken",
12025
+ # })
12026
+ #
12027
+ # @example Response structure
12028
+ #
12029
+ # resp.payment_manager_arn #=> String
12030
+ # resp.payment_manager_id #=> String
12031
+ # resp.name #=> String
12032
+ # resp.authorizer_type #=> String, one of "CUSTOM_JWT", "AWS_IAM"
12033
+ # resp.role_arn #=> String
12034
+ # resp.workload_identity_details.workload_identity_arn #=> String
12035
+ # resp.last_updated_at #=> Time
12036
+ # resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
12037
+ #
12038
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatePaymentManager AWS API Documentation
12039
+ #
12040
+ # @overload update_payment_manager(params = {})
12041
+ # @param [Hash] params ({})
12042
+ def update_payment_manager(params = {}, options = {})
12043
+ req = build_request(:update_payment_manager, params)
12044
+ req.send_request(options)
12045
+ end
12046
+
10983
12047
  # Updates an existing policy within the AgentCore Policy system. This
10984
12048
  # operation allows modification of the policy description and definition
10985
12049
  # while maintaining the policy's identity. The updated policy is
@@ -11616,7 +12680,7 @@ module Aws::BedrockAgentCoreControl
11616
12680
  tracer: tracer
11617
12681
  )
11618
12682
  context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
11619
- context[:gem_version] = '1.44.0'
12683
+ context[:gem_version] = '1.45.0'
11620
12684
  Seahorse::Client::Request.new(handlers, context)
11621
12685
  end
11622
12686