aws-sdk-bedrockagentcorecontrol 1.44.0 → 1.46.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client.rb +1490 -61
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +809 -23
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +2214 -311
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +515 -25
- data/sig/types.rbs +505 -22
- metadata +3 -3
|
@@ -562,6 +562,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
562
562
|
# network_mode_config: {
|
|
563
563
|
# security_groups: ["SecurityGroupId"], # required
|
|
564
564
|
# subnets: ["SubnetId"], # required
|
|
565
|
+
# require_service_s3_endpoint: false,
|
|
565
566
|
# },
|
|
566
567
|
# },
|
|
567
568
|
# client_token: "ClientToken",
|
|
@@ -851,6 +852,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
851
852
|
# vpc_config: {
|
|
852
853
|
# security_groups: ["SecurityGroupId"], # required
|
|
853
854
|
# subnets: ["SubnetId"], # required
|
|
855
|
+
# require_service_s3_endpoint: false,
|
|
854
856
|
# },
|
|
855
857
|
# },
|
|
856
858
|
# recording: {
|
|
@@ -1021,6 +1023,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1021
1023
|
# vpc_config: {
|
|
1022
1024
|
# security_groups: ["SecurityGroupId"], # required
|
|
1023
1025
|
# subnets: ["SubnetId"], # required
|
|
1026
|
+
# require_service_s3_endpoint: false,
|
|
1024
1027
|
# },
|
|
1025
1028
|
# },
|
|
1026
1029
|
# certificates: [
|
|
@@ -2137,6 +2140,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2137
2140
|
# network_mode_config: {
|
|
2138
2141
|
# security_groups: ["SecurityGroupId"], # required
|
|
2139
2142
|
# subnets: ["SubnetId"], # required
|
|
2143
|
+
# require_service_s3_endpoint: false,
|
|
2140
2144
|
# },
|
|
2141
2145
|
# },
|
|
2142
2146
|
# filesystem_configurations: [
|
|
@@ -2394,6 +2398,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2394
2398
|
# resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.security_groups[0] #=> String
|
|
2395
2399
|
# resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.subnets #=> Array
|
|
2396
2400
|
# resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.subnets[0] #=> String
|
|
2401
|
+
# resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.require_service_s3_endpoint #=> Boolean
|
|
2397
2402
|
# resp.harness.environment.agent_core_runtime_environment.filesystem_configurations #=> Array
|
|
2398
2403
|
# resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].session_storage.mount_path #=> String
|
|
2399
2404
|
# resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].s3_files_access_point.access_point_arn #=> String
|
|
@@ -3338,6 +3343,348 @@ module Aws::BedrockAgentCoreControl
|
|
|
3338
3343
|
req.send_request(options)
|
|
3339
3344
|
end
|
|
3340
3345
|
|
|
3346
|
+
# Creates a new payment connector for a payment manager. A payment
|
|
3347
|
+
# connector integrates with a supported payment provider to enable
|
|
3348
|
+
# payment processing capabilities.
|
|
3349
|
+
#
|
|
3350
|
+
# @option params [required, String] :payment_manager_id
|
|
3351
|
+
# The unique identifier of the payment manager to create the connector
|
|
3352
|
+
# for.
|
|
3353
|
+
#
|
|
3354
|
+
# @option params [required, String] :name
|
|
3355
|
+
# The name of the payment connector.
|
|
3356
|
+
#
|
|
3357
|
+
# @option params [String] :description
|
|
3358
|
+
# A description of the payment connector.
|
|
3359
|
+
#
|
|
3360
|
+
# @option params [required, String] :type
|
|
3361
|
+
# The type of payment connector, which determines the payment provider
|
|
3362
|
+
# integration.
|
|
3363
|
+
#
|
|
3364
|
+
# @option params [required, Array<Types::CredentialsProviderConfiguration>] :credential_provider_configurations
|
|
3365
|
+
# The credential provider configurations for the payment connector.
|
|
3366
|
+
# These configurations specify how the connector authenticates with the
|
|
3367
|
+
# payment provider.
|
|
3368
|
+
#
|
|
3369
|
+
# @option params [String] :client_token
|
|
3370
|
+
# A unique, case-sensitive identifier to ensure that the API request
|
|
3371
|
+
# completes no more than one time. If you don't specify this field, a
|
|
3372
|
+
# value is randomly generated for you. If this token matches a previous
|
|
3373
|
+
# request, the service ignores the request, but doesn't return an
|
|
3374
|
+
# error. For more information, see [Ensuring idempotency][1].
|
|
3375
|
+
#
|
|
3376
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
3377
|
+
# not need to pass this option.**
|
|
3378
|
+
#
|
|
3379
|
+
#
|
|
3380
|
+
#
|
|
3381
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
|
|
3382
|
+
#
|
|
3383
|
+
# @return [Types::CreatePaymentConnectorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3384
|
+
#
|
|
3385
|
+
# * {Types::CreatePaymentConnectorResponse#payment_connector_id #payment_connector_id} => String
|
|
3386
|
+
# * {Types::CreatePaymentConnectorResponse#payment_manager_id #payment_manager_id} => String
|
|
3387
|
+
# * {Types::CreatePaymentConnectorResponse#name #name} => String
|
|
3388
|
+
# * {Types::CreatePaymentConnectorResponse#type #type} => String
|
|
3389
|
+
# * {Types::CreatePaymentConnectorResponse#credential_provider_configurations #credential_provider_configurations} => Array<Types::CredentialsProviderConfiguration>
|
|
3390
|
+
# * {Types::CreatePaymentConnectorResponse#created_at #created_at} => Time
|
|
3391
|
+
# * {Types::CreatePaymentConnectorResponse#status #status} => String
|
|
3392
|
+
#
|
|
3393
|
+
# @example Request syntax with placeholder values
|
|
3394
|
+
#
|
|
3395
|
+
# resp = client.create_payment_connector({
|
|
3396
|
+
# payment_manager_id: "PaymentManagerId", # required
|
|
3397
|
+
# name: "PaymentConnectorName", # required
|
|
3398
|
+
# description: "PaymentsDescription",
|
|
3399
|
+
# type: "CoinbaseCDP", # required, accepts CoinbaseCDP, StripePrivy
|
|
3400
|
+
# credential_provider_configurations: [ # required
|
|
3401
|
+
# {
|
|
3402
|
+
# coinbase_cdp: {
|
|
3403
|
+
# credential_provider_arn: "PaymentCredentialProviderArn", # required
|
|
3404
|
+
# },
|
|
3405
|
+
# stripe_privy: {
|
|
3406
|
+
# credential_provider_arn: "PaymentCredentialProviderArn", # required
|
|
3407
|
+
# },
|
|
3408
|
+
# },
|
|
3409
|
+
# ],
|
|
3410
|
+
# client_token: "ClientToken",
|
|
3411
|
+
# })
|
|
3412
|
+
#
|
|
3413
|
+
# @example Response structure
|
|
3414
|
+
#
|
|
3415
|
+
# resp.payment_connector_id #=> String
|
|
3416
|
+
# resp.payment_manager_id #=> String
|
|
3417
|
+
# resp.name #=> String
|
|
3418
|
+
# resp.type #=> String, one of "CoinbaseCDP", "StripePrivy"
|
|
3419
|
+
# resp.credential_provider_configurations #=> Array
|
|
3420
|
+
# resp.credential_provider_configurations[0].coinbase_cdp.credential_provider_arn #=> String
|
|
3421
|
+
# resp.credential_provider_configurations[0].stripe_privy.credential_provider_arn #=> String
|
|
3422
|
+
# resp.created_at #=> Time
|
|
3423
|
+
# resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
3424
|
+
#
|
|
3425
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreatePaymentConnector AWS API Documentation
|
|
3426
|
+
#
|
|
3427
|
+
# @overload create_payment_connector(params = {})
|
|
3428
|
+
# @param [Hash] params ({})
|
|
3429
|
+
def create_payment_connector(params = {}, options = {})
|
|
3430
|
+
req = build_request(:create_payment_connector, params)
|
|
3431
|
+
req.send_request(options)
|
|
3432
|
+
end
|
|
3433
|
+
|
|
3434
|
+
# Creates a new payment credential provider for storing authentication
|
|
3435
|
+
# credentials used by payment connectors to communicate with external
|
|
3436
|
+
# payment providers.
|
|
3437
|
+
#
|
|
3438
|
+
# @option params [required, String] :name
|
|
3439
|
+
# Unique name for the payment credential provider.
|
|
3440
|
+
#
|
|
3441
|
+
# @option params [required, String] :credential_provider_vendor
|
|
3442
|
+
# The vendor type for the payment credential provider (e.g.,
|
|
3443
|
+
# CoinbaseCDP, StripePrivy).
|
|
3444
|
+
#
|
|
3445
|
+
# @option params [required, Types::PaymentProviderConfigurationInput] :provider_configuration_input
|
|
3446
|
+
# Configuration specific to the vendor, including API credentials.
|
|
3447
|
+
#
|
|
3448
|
+
# @option params [Hash<String,String>] :tags
|
|
3449
|
+
# Optional tags for resource organization.
|
|
3450
|
+
#
|
|
3451
|
+
# @return [Types::CreatePaymentCredentialProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3452
|
+
#
|
|
3453
|
+
# * {Types::CreatePaymentCredentialProviderResponse#name #name} => String
|
|
3454
|
+
# * {Types::CreatePaymentCredentialProviderResponse#credential_provider_vendor #credential_provider_vendor} => String
|
|
3455
|
+
# * {Types::CreatePaymentCredentialProviderResponse#credential_provider_arn #credential_provider_arn} => String
|
|
3456
|
+
# * {Types::CreatePaymentCredentialProviderResponse#provider_configuration_output #provider_configuration_output} => Types::PaymentProviderConfigurationOutput
|
|
3457
|
+
#
|
|
3458
|
+
# @example Request syntax with placeholder values
|
|
3459
|
+
#
|
|
3460
|
+
# resp = client.create_payment_credential_provider({
|
|
3461
|
+
# name: "CredentialProviderName", # required
|
|
3462
|
+
# credential_provider_vendor: "CoinbaseCDP", # required, accepts CoinbaseCDP, StripePrivy
|
|
3463
|
+
# provider_configuration_input: { # required
|
|
3464
|
+
# coinbase_cdp_configuration: {
|
|
3465
|
+
# api_key_id: "CoinbaseCdpApiKeyIdType", # required
|
|
3466
|
+
# api_key_secret: "CoinbaseCdpApiKeySecretType", # required
|
|
3467
|
+
# wallet_secret: "CoinbaseCdpWalletSecretType", # required
|
|
3468
|
+
# },
|
|
3469
|
+
# stripe_privy_configuration: {
|
|
3470
|
+
# app_id: "StripePrivyAppIdType", # required
|
|
3471
|
+
# app_secret: "StripePrivyAppSecretType", # required
|
|
3472
|
+
# authorization_private_key: "StripePrivyAuthorizationPrivateKeyType", # required
|
|
3473
|
+
# authorization_id: "StripePrivyAuthorizationIdType", # required
|
|
3474
|
+
# },
|
|
3475
|
+
# },
|
|
3476
|
+
# tags: {
|
|
3477
|
+
# "TagKey" => "TagValue",
|
|
3478
|
+
# },
|
|
3479
|
+
# })
|
|
3480
|
+
#
|
|
3481
|
+
# @example Response structure
|
|
3482
|
+
#
|
|
3483
|
+
# resp.name #=> String
|
|
3484
|
+
# resp.credential_provider_vendor #=> String, one of "CoinbaseCDP", "StripePrivy"
|
|
3485
|
+
# resp.credential_provider_arn #=> String
|
|
3486
|
+
# resp.provider_configuration_output.coinbase_cdp_configuration.api_key_id #=> String
|
|
3487
|
+
# resp.provider_configuration_output.coinbase_cdp_configuration.api_key_secret_arn.secret_arn #=> String
|
|
3488
|
+
# resp.provider_configuration_output.coinbase_cdp_configuration.wallet_secret_arn.secret_arn #=> String
|
|
3489
|
+
# resp.provider_configuration_output.stripe_privy_configuration.app_id #=> String
|
|
3490
|
+
# resp.provider_configuration_output.stripe_privy_configuration.app_secret_arn.secret_arn #=> String
|
|
3491
|
+
# resp.provider_configuration_output.stripe_privy_configuration.authorization_private_key_arn.secret_arn #=> String
|
|
3492
|
+
# resp.provider_configuration_output.stripe_privy_configuration.authorization_id #=> String
|
|
3493
|
+
#
|
|
3494
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreatePaymentCredentialProvider AWS API Documentation
|
|
3495
|
+
#
|
|
3496
|
+
# @overload create_payment_credential_provider(params = {})
|
|
3497
|
+
# @param [Hash] params ({})
|
|
3498
|
+
def create_payment_credential_provider(params = {}, options = {})
|
|
3499
|
+
req = build_request(:create_payment_credential_provider, params)
|
|
3500
|
+
req.send_request(options)
|
|
3501
|
+
end
|
|
3502
|
+
|
|
3503
|
+
# Creates a new payment manager in your Amazon Web Services account. A
|
|
3504
|
+
# payment manager serves as the top-level resource for managing payment
|
|
3505
|
+
# processing capabilities, including payment connectors that integrate
|
|
3506
|
+
# with supported payment providers.
|
|
3507
|
+
#
|
|
3508
|
+
# If you specify `CUSTOM_JWT` as the `authorizerType`, you must provide
|
|
3509
|
+
# an `authorizerConfiguration`.
|
|
3510
|
+
#
|
|
3511
|
+
# @option params [required, String] :name
|
|
3512
|
+
# The name of the payment manager.
|
|
3513
|
+
#
|
|
3514
|
+
# @option params [String] :description
|
|
3515
|
+
# A description of the payment manager.
|
|
3516
|
+
#
|
|
3517
|
+
# @option params [required, String] :authorizer_type
|
|
3518
|
+
# The type of authorizer to use for the payment manager.
|
|
3519
|
+
#
|
|
3520
|
+
# * `CUSTOM_JWT` - Authorize with a bearer token.
|
|
3521
|
+
#
|
|
3522
|
+
# * `AWS_IAM` - Authorize with your Amazon Web Services IAM credentials.
|
|
3523
|
+
#
|
|
3524
|
+
# @option params [Types::AuthorizerConfiguration] :authorizer_configuration
|
|
3525
|
+
# The authorizer configuration for the payment manager.
|
|
3526
|
+
#
|
|
3527
|
+
# @option params [required, String] :role_arn
|
|
3528
|
+
# The Amazon Resource Name (ARN) of the IAM role that the payment
|
|
3529
|
+
# manager assumes to access resources on your behalf.
|
|
3530
|
+
#
|
|
3531
|
+
# @option params [String] :client_token
|
|
3532
|
+
# A unique, case-sensitive identifier to ensure that the API request
|
|
3533
|
+
# completes no more than one time. If you don't specify this field, a
|
|
3534
|
+
# value is randomly generated for you. If this token matches a previous
|
|
3535
|
+
# request, the service ignores the request, but doesn't return an
|
|
3536
|
+
# error. For more information, see [Ensuring idempotency][1].
|
|
3537
|
+
#
|
|
3538
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
3539
|
+
# not need to pass this option.**
|
|
3540
|
+
#
|
|
3541
|
+
#
|
|
3542
|
+
#
|
|
3543
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
|
|
3544
|
+
#
|
|
3545
|
+
# @option params [Hash<String,String>] :tags
|
|
3546
|
+
# A map of tag keys and values to assign to the payment manager.
|
|
3547
|
+
#
|
|
3548
|
+
# @return [Types::CreatePaymentManagerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3549
|
+
#
|
|
3550
|
+
# * {Types::CreatePaymentManagerResponse#payment_manager_arn #payment_manager_arn} => String
|
|
3551
|
+
# * {Types::CreatePaymentManagerResponse#payment_manager_id #payment_manager_id} => String
|
|
3552
|
+
# * {Types::CreatePaymentManagerResponse#name #name} => String
|
|
3553
|
+
# * {Types::CreatePaymentManagerResponse#authorizer_type #authorizer_type} => String
|
|
3554
|
+
# * {Types::CreatePaymentManagerResponse#authorizer_configuration #authorizer_configuration} => Types::AuthorizerConfiguration
|
|
3555
|
+
# * {Types::CreatePaymentManagerResponse#role_arn #role_arn} => String
|
|
3556
|
+
# * {Types::CreatePaymentManagerResponse#workload_identity_details #workload_identity_details} => Types::WorkloadIdentityDetails
|
|
3557
|
+
# * {Types::CreatePaymentManagerResponse#created_at #created_at} => Time
|
|
3558
|
+
# * {Types::CreatePaymentManagerResponse#status #status} => String
|
|
3559
|
+
# * {Types::CreatePaymentManagerResponse#tags #tags} => Hash<String,String>
|
|
3560
|
+
#
|
|
3561
|
+
# @example Request syntax with placeholder values
|
|
3562
|
+
#
|
|
3563
|
+
# resp = client.create_payment_manager({
|
|
3564
|
+
# name: "PaymentManagerName", # required
|
|
3565
|
+
# description: "PaymentsDescription",
|
|
3566
|
+
# authorizer_type: "CUSTOM_JWT", # required, accepts CUSTOM_JWT, AWS_IAM
|
|
3567
|
+
# authorizer_configuration: {
|
|
3568
|
+
# custom_jwt_authorizer: {
|
|
3569
|
+
# discovery_url: "DiscoveryUrl", # required
|
|
3570
|
+
# allowed_audience: ["AllowedAudience"],
|
|
3571
|
+
# allowed_clients: ["AllowedClient"],
|
|
3572
|
+
# allowed_scopes: ["AllowedScopeType"],
|
|
3573
|
+
# custom_claims: [
|
|
3574
|
+
# {
|
|
3575
|
+
# inbound_token_claim_name: "InboundTokenClaimNameType", # required
|
|
3576
|
+
# inbound_token_claim_value_type: "STRING", # required, accepts STRING, STRING_ARRAY
|
|
3577
|
+
# authorizing_claim_match_value: { # required
|
|
3578
|
+
# claim_match_value: { # required
|
|
3579
|
+
# match_value_string: "MatchValueString",
|
|
3580
|
+
# match_value_string_list: ["MatchValueString"],
|
|
3581
|
+
# },
|
|
3582
|
+
# claim_match_operator: "EQUALS", # required, accepts EQUALS, CONTAINS, CONTAINS_ANY
|
|
3583
|
+
# },
|
|
3584
|
+
# },
|
|
3585
|
+
# ],
|
|
3586
|
+
# private_endpoint: {
|
|
3587
|
+
# self_managed_lattice_resource: {
|
|
3588
|
+
# resource_configuration_identifier: "ResourceConfigurationIdentifier",
|
|
3589
|
+
# },
|
|
3590
|
+
# managed_vpc_resource: {
|
|
3591
|
+
# vpc_identifier: "VpcIdentifier", # required
|
|
3592
|
+
# subnet_ids: ["SubnetId"], # required
|
|
3593
|
+
# endpoint_ip_address_type: "IPV4", # required, accepts IPV4, IPV6
|
|
3594
|
+
# security_group_ids: ["SecurityGroupIdentifier"],
|
|
3595
|
+
# tags: {
|
|
3596
|
+
# "TagKey" => "TagValue",
|
|
3597
|
+
# },
|
|
3598
|
+
# routing_domain: "RoutingDomain",
|
|
3599
|
+
# },
|
|
3600
|
+
# },
|
|
3601
|
+
# private_endpoint_overrides: [
|
|
3602
|
+
# {
|
|
3603
|
+
# domain: "PrivateEndpointOverrideDomain", # required
|
|
3604
|
+
# private_endpoint: { # required
|
|
3605
|
+
# self_managed_lattice_resource: {
|
|
3606
|
+
# resource_configuration_identifier: "ResourceConfigurationIdentifier",
|
|
3607
|
+
# },
|
|
3608
|
+
# managed_vpc_resource: {
|
|
3609
|
+
# vpc_identifier: "VpcIdentifier", # required
|
|
3610
|
+
# subnet_ids: ["SubnetId"], # required
|
|
3611
|
+
# endpoint_ip_address_type: "IPV4", # required, accepts IPV4, IPV6
|
|
3612
|
+
# security_group_ids: ["SecurityGroupIdentifier"],
|
|
3613
|
+
# tags: {
|
|
3614
|
+
# "TagKey" => "TagValue",
|
|
3615
|
+
# },
|
|
3616
|
+
# routing_domain: "RoutingDomain",
|
|
3617
|
+
# },
|
|
3618
|
+
# },
|
|
3619
|
+
# },
|
|
3620
|
+
# ],
|
|
3621
|
+
# },
|
|
3622
|
+
# },
|
|
3623
|
+
# role_arn: "RoleArn", # required
|
|
3624
|
+
# client_token: "ClientToken",
|
|
3625
|
+
# tags: {
|
|
3626
|
+
# "TagKey" => "TagValue",
|
|
3627
|
+
# },
|
|
3628
|
+
# })
|
|
3629
|
+
#
|
|
3630
|
+
# @example Response structure
|
|
3631
|
+
#
|
|
3632
|
+
# resp.payment_manager_arn #=> String
|
|
3633
|
+
# resp.payment_manager_id #=> String
|
|
3634
|
+
# resp.name #=> String
|
|
3635
|
+
# resp.authorizer_type #=> String, one of "CUSTOM_JWT", "AWS_IAM"
|
|
3636
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.discovery_url #=> String
|
|
3637
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_audience #=> Array
|
|
3638
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_audience[0] #=> String
|
|
3639
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_clients #=> Array
|
|
3640
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_clients[0] #=> String
|
|
3641
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_scopes #=> Array
|
|
3642
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_scopes[0] #=> String
|
|
3643
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.custom_claims #=> Array
|
|
3644
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].inbound_token_claim_name #=> String
|
|
3645
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].inbound_token_claim_value_type #=> String, one of "STRING", "STRING_ARRAY"
|
|
3646
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_value.match_value_string #=> String
|
|
3647
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_value.match_value_string_list #=> Array
|
|
3648
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_value.match_value_string_list[0] #=> String
|
|
3649
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_operator #=> String, one of "EQUALS", "CONTAINS", "CONTAINS_ANY"
|
|
3650
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
|
|
3651
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.vpc_identifier #=> String
|
|
3652
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.subnet_ids #=> Array
|
|
3653
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.subnet_ids[0] #=> String
|
|
3654
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.endpoint_ip_address_type #=> String, one of "IPV4", "IPV6"
|
|
3655
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.security_group_ids #=> Array
|
|
3656
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.security_group_ids[0] #=> String
|
|
3657
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
3658
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
3659
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.routing_domain #=> String
|
|
3660
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides #=> Array
|
|
3661
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].domain #=> String
|
|
3662
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
|
|
3663
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.vpc_identifier #=> String
|
|
3664
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.subnet_ids #=> Array
|
|
3665
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.subnet_ids[0] #=> String
|
|
3666
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.endpoint_ip_address_type #=> String, one of "IPV4", "IPV6"
|
|
3667
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.security_group_ids #=> Array
|
|
3668
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.security_group_ids[0] #=> String
|
|
3669
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
3670
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
3671
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.routing_domain #=> String
|
|
3672
|
+
# resp.role_arn #=> String
|
|
3673
|
+
# resp.workload_identity_details.workload_identity_arn #=> String
|
|
3674
|
+
# resp.created_at #=> Time
|
|
3675
|
+
# resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
3676
|
+
# resp.tags #=> Hash
|
|
3677
|
+
# resp.tags["TagKey"] #=> String
|
|
3678
|
+
#
|
|
3679
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreatePaymentManager AWS API Documentation
|
|
3680
|
+
#
|
|
3681
|
+
# @overload create_payment_manager(params = {})
|
|
3682
|
+
# @param [Hash] params ({})
|
|
3683
|
+
def create_payment_manager(params = {}, options = {})
|
|
3684
|
+
req = build_request(:create_payment_manager, params)
|
|
3685
|
+
req.send_request(options)
|
|
3686
|
+
end
|
|
3687
|
+
|
|
3341
3688
|
# Creates a policy within the AgentCore Policy system. Policies provide
|
|
3342
3689
|
# real-time, deterministic control over agentic interactions with
|
|
3343
3690
|
# AgentCore Gateway. Using the Cedar policy language, you can define
|
|
@@ -3407,12 +3754,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
3407
3754
|
# * {Types::CreatePolicyResponse#policy_id #policy_id} => String
|
|
3408
3755
|
# * {Types::CreatePolicyResponse#name #name} => String
|
|
3409
3756
|
# * {Types::CreatePolicyResponse#policy_engine_id #policy_engine_id} => String
|
|
3410
|
-
# * {Types::CreatePolicyResponse#definition #definition} => Types::PolicyDefinition
|
|
3411
|
-
# * {Types::CreatePolicyResponse#description #description} => String
|
|
3412
3757
|
# * {Types::CreatePolicyResponse#created_at #created_at} => Time
|
|
3413
3758
|
# * {Types::CreatePolicyResponse#updated_at #updated_at} => Time
|
|
3414
3759
|
# * {Types::CreatePolicyResponse#policy_arn #policy_arn} => String
|
|
3415
3760
|
# * {Types::CreatePolicyResponse#status #status} => String
|
|
3761
|
+
# * {Types::CreatePolicyResponse#definition #definition} => Types::PolicyDefinition
|
|
3762
|
+
# * {Types::CreatePolicyResponse#description #description} => String
|
|
3416
3763
|
# * {Types::CreatePolicyResponse#status_reasons #status_reasons} => Array<String>
|
|
3417
3764
|
#
|
|
3418
3765
|
# @example Request syntax with placeholder values
|
|
@@ -3439,14 +3786,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
3439
3786
|
# resp.policy_id #=> String
|
|
3440
3787
|
# resp.name #=> String
|
|
3441
3788
|
# resp.policy_engine_id #=> String
|
|
3442
|
-
# resp.definition.cedar.statement #=> String
|
|
3443
|
-
# resp.definition.policy_generation.policy_generation_id #=> String
|
|
3444
|
-
# resp.definition.policy_generation.policy_generation_asset_id #=> String
|
|
3445
|
-
# resp.description #=> String
|
|
3446
3789
|
# resp.created_at #=> Time
|
|
3447
3790
|
# resp.updated_at #=> Time
|
|
3448
3791
|
# resp.policy_arn #=> String
|
|
3449
3792
|
# resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
3793
|
+
# resp.definition.cedar.statement #=> String
|
|
3794
|
+
# resp.definition.policy_generation.policy_generation_id #=> String
|
|
3795
|
+
# resp.definition.policy_generation.policy_generation_asset_id #=> String
|
|
3796
|
+
# resp.description #=> String
|
|
3450
3797
|
# resp.status_reasons #=> Array
|
|
3451
3798
|
# resp.status_reasons[0] #=> String
|
|
3452
3799
|
#
|
|
@@ -3508,13 +3855,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
3508
3855
|
#
|
|
3509
3856
|
# * {Types::CreatePolicyEngineResponse#policy_engine_id #policy_engine_id} => String
|
|
3510
3857
|
# * {Types::CreatePolicyEngineResponse#name #name} => String
|
|
3511
|
-
# * {Types::CreatePolicyEngineResponse#description #description} => String
|
|
3512
3858
|
# * {Types::CreatePolicyEngineResponse#created_at #created_at} => Time
|
|
3513
3859
|
# * {Types::CreatePolicyEngineResponse#updated_at #updated_at} => Time
|
|
3514
3860
|
# * {Types::CreatePolicyEngineResponse#policy_engine_arn #policy_engine_arn} => String
|
|
3515
3861
|
# * {Types::CreatePolicyEngineResponse#status #status} => String
|
|
3516
|
-
# * {Types::CreatePolicyEngineResponse#status_reasons #status_reasons} => Array<String>
|
|
3517
3862
|
# * {Types::CreatePolicyEngineResponse#encryption_key_arn #encryption_key_arn} => String
|
|
3863
|
+
# * {Types::CreatePolicyEngineResponse#description #description} => String
|
|
3864
|
+
# * {Types::CreatePolicyEngineResponse#status_reasons #status_reasons} => Array<String>
|
|
3518
3865
|
#
|
|
3519
3866
|
# @example Request syntax with placeholder values
|
|
3520
3867
|
#
|
|
@@ -3532,14 +3879,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
3532
3879
|
#
|
|
3533
3880
|
# resp.policy_engine_id #=> String
|
|
3534
3881
|
# resp.name #=> String
|
|
3535
|
-
# resp.description #=> String
|
|
3536
3882
|
# resp.created_at #=> Time
|
|
3537
3883
|
# resp.updated_at #=> Time
|
|
3538
3884
|
# resp.policy_engine_arn #=> String
|
|
3539
3885
|
# resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
3886
|
+
# resp.encryption_key_arn #=> String
|
|
3887
|
+
# resp.description #=> String
|
|
3540
3888
|
# resp.status_reasons #=> Array
|
|
3541
3889
|
# resp.status_reasons[0] #=> String
|
|
3542
|
-
# resp.encryption_key_arn #=> String
|
|
3543
3890
|
#
|
|
3544
3891
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreatePolicyEngine AWS API Documentation
|
|
3545
3892
|
#
|
|
@@ -4371,6 +4718,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
4371
4718
|
# resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.security_groups[0] #=> String
|
|
4372
4719
|
# resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.subnets #=> Array
|
|
4373
4720
|
# resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.subnets[0] #=> String
|
|
4721
|
+
# resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.require_service_s3_endpoint #=> Boolean
|
|
4374
4722
|
# resp.harness.environment.agent_core_runtime_environment.filesystem_configurations #=> Array
|
|
4375
4723
|
# resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].session_storage.mount_path #=> String
|
|
4376
4724
|
# resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].s3_files_access_point.access_point_arn #=> String
|
|
@@ -4532,6 +4880,125 @@ module Aws::BedrockAgentCoreControl
|
|
|
4532
4880
|
req.send_request(options)
|
|
4533
4881
|
end
|
|
4534
4882
|
|
|
4883
|
+
# Deletes a payment connector.
|
|
4884
|
+
#
|
|
4885
|
+
# @option params [required, String] :payment_manager_id
|
|
4886
|
+
# The unique identifier of the parent payment manager.
|
|
4887
|
+
#
|
|
4888
|
+
# @option params [required, String] :payment_connector_id
|
|
4889
|
+
# The unique identifier of the payment connector to delete.
|
|
4890
|
+
#
|
|
4891
|
+
# @option params [String] :client_token
|
|
4892
|
+
# A unique, case-sensitive identifier to ensure that the API request
|
|
4893
|
+
# completes no more than one time. If you don't specify this field, a
|
|
4894
|
+
# value is randomly generated for you. If this token matches a previous
|
|
4895
|
+
# request, the service ignores the request, but doesn't return an
|
|
4896
|
+
# error. For more information, see [Ensuring idempotency][1].
|
|
4897
|
+
#
|
|
4898
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
4899
|
+
# not need to pass this option.**
|
|
4900
|
+
#
|
|
4901
|
+
#
|
|
4902
|
+
#
|
|
4903
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
|
|
4904
|
+
#
|
|
4905
|
+
# @return [Types::DeletePaymentConnectorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4906
|
+
#
|
|
4907
|
+
# * {Types::DeletePaymentConnectorResponse#status #status} => String
|
|
4908
|
+
# * {Types::DeletePaymentConnectorResponse#payment_connector_id #payment_connector_id} => String
|
|
4909
|
+
#
|
|
4910
|
+
# @example Request syntax with placeholder values
|
|
4911
|
+
#
|
|
4912
|
+
# resp = client.delete_payment_connector({
|
|
4913
|
+
# payment_manager_id: "PaymentManagerId", # required
|
|
4914
|
+
# payment_connector_id: "PaymentConnectorId", # required
|
|
4915
|
+
# client_token: "ClientToken",
|
|
4916
|
+
# })
|
|
4917
|
+
#
|
|
4918
|
+
# @example Response structure
|
|
4919
|
+
#
|
|
4920
|
+
# resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
4921
|
+
# resp.payment_connector_id #=> String
|
|
4922
|
+
#
|
|
4923
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeletePaymentConnector AWS API Documentation
|
|
4924
|
+
#
|
|
4925
|
+
# @overload delete_payment_connector(params = {})
|
|
4926
|
+
# @param [Hash] params ({})
|
|
4927
|
+
def delete_payment_connector(params = {}, options = {})
|
|
4928
|
+
req = build_request(:delete_payment_connector, params)
|
|
4929
|
+
req.send_request(options)
|
|
4930
|
+
end
|
|
4931
|
+
|
|
4932
|
+
# Deletes a payment credential provider and its associated stored
|
|
4933
|
+
# credentials.
|
|
4934
|
+
#
|
|
4935
|
+
# @option params [required, String] :name
|
|
4936
|
+
# The name of the payment credential provider to delete.
|
|
4937
|
+
#
|
|
4938
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
4939
|
+
#
|
|
4940
|
+
# @example Request syntax with placeholder values
|
|
4941
|
+
#
|
|
4942
|
+
# resp = client.delete_payment_credential_provider({
|
|
4943
|
+
# name: "CredentialProviderName", # required
|
|
4944
|
+
# })
|
|
4945
|
+
#
|
|
4946
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeletePaymentCredentialProvider AWS API Documentation
|
|
4947
|
+
#
|
|
4948
|
+
# @overload delete_payment_credential_provider(params = {})
|
|
4949
|
+
# @param [Hash] params ({})
|
|
4950
|
+
def delete_payment_credential_provider(params = {}, options = {})
|
|
4951
|
+
req = build_request(:delete_payment_credential_provider, params)
|
|
4952
|
+
req.send_request(options)
|
|
4953
|
+
end
|
|
4954
|
+
|
|
4955
|
+
# Deletes a payment manager. All payment connectors associated with the
|
|
4956
|
+
# payment manager must be deleted before the payment manager can be
|
|
4957
|
+
# deleted. This operation initiates the deletion process asynchronously.
|
|
4958
|
+
#
|
|
4959
|
+
# @option params [required, String] :payment_manager_id
|
|
4960
|
+
# The unique identifier of the payment manager to delete.
|
|
4961
|
+
#
|
|
4962
|
+
# @option params [String] :client_token
|
|
4963
|
+
# A unique, case-sensitive identifier to ensure that the API request
|
|
4964
|
+
# completes no more than one time. If you don't specify this field, a
|
|
4965
|
+
# value is randomly generated for you. If this token matches a previous
|
|
4966
|
+
# request, the service ignores the request, but doesn't return an
|
|
4967
|
+
# error. For more information, see [Ensuring idempotency][1].
|
|
4968
|
+
#
|
|
4969
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
4970
|
+
# not need to pass this option.**
|
|
4971
|
+
#
|
|
4972
|
+
#
|
|
4973
|
+
#
|
|
4974
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
|
|
4975
|
+
#
|
|
4976
|
+
# @return [Types::DeletePaymentManagerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4977
|
+
#
|
|
4978
|
+
# * {Types::DeletePaymentManagerResponse#status #status} => String
|
|
4979
|
+
# * {Types::DeletePaymentManagerResponse#payment_manager_id #payment_manager_id} => String
|
|
4980
|
+
#
|
|
4981
|
+
# @example Request syntax with placeholder values
|
|
4982
|
+
#
|
|
4983
|
+
# resp = client.delete_payment_manager({
|
|
4984
|
+
# payment_manager_id: "PaymentManagerId", # required
|
|
4985
|
+
# client_token: "ClientToken",
|
|
4986
|
+
# })
|
|
4987
|
+
#
|
|
4988
|
+
# @example Response structure
|
|
4989
|
+
#
|
|
4990
|
+
# resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
4991
|
+
# resp.payment_manager_id #=> String
|
|
4992
|
+
#
|
|
4993
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeletePaymentManager AWS API Documentation
|
|
4994
|
+
#
|
|
4995
|
+
# @overload delete_payment_manager(params = {})
|
|
4996
|
+
# @param [Hash] params ({})
|
|
4997
|
+
def delete_payment_manager(params = {}, options = {})
|
|
4998
|
+
req = build_request(:delete_payment_manager, params)
|
|
4999
|
+
req.send_request(options)
|
|
5000
|
+
end
|
|
5001
|
+
|
|
4535
5002
|
# Deletes an existing policy from the AgentCore Policy system. Once
|
|
4536
5003
|
# deleted, the policy can no longer be used for agent behavior control
|
|
4537
5004
|
# and all references to it become invalid. This is an asynchronous
|
|
@@ -4552,12 +5019,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
4552
5019
|
# * {Types::DeletePolicyResponse#policy_id #policy_id} => String
|
|
4553
5020
|
# * {Types::DeletePolicyResponse#name #name} => String
|
|
4554
5021
|
# * {Types::DeletePolicyResponse#policy_engine_id #policy_engine_id} => String
|
|
4555
|
-
# * {Types::DeletePolicyResponse#definition #definition} => Types::PolicyDefinition
|
|
4556
|
-
# * {Types::DeletePolicyResponse#description #description} => String
|
|
4557
5022
|
# * {Types::DeletePolicyResponse#created_at #created_at} => Time
|
|
4558
5023
|
# * {Types::DeletePolicyResponse#updated_at #updated_at} => Time
|
|
4559
5024
|
# * {Types::DeletePolicyResponse#policy_arn #policy_arn} => String
|
|
4560
5025
|
# * {Types::DeletePolicyResponse#status #status} => String
|
|
5026
|
+
# * {Types::DeletePolicyResponse#definition #definition} => Types::PolicyDefinition
|
|
5027
|
+
# * {Types::DeletePolicyResponse#description #description} => String
|
|
4561
5028
|
# * {Types::DeletePolicyResponse#status_reasons #status_reasons} => Array<String>
|
|
4562
5029
|
#
|
|
4563
5030
|
# @example Request syntax with placeholder values
|
|
@@ -4572,14 +5039,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
4572
5039
|
# resp.policy_id #=> String
|
|
4573
5040
|
# resp.name #=> String
|
|
4574
5041
|
# resp.policy_engine_id #=> String
|
|
4575
|
-
# resp.definition.cedar.statement #=> String
|
|
4576
|
-
# resp.definition.policy_generation.policy_generation_id #=> String
|
|
4577
|
-
# resp.definition.policy_generation.policy_generation_asset_id #=> String
|
|
4578
|
-
# resp.description #=> String
|
|
4579
5042
|
# resp.created_at #=> Time
|
|
4580
5043
|
# resp.updated_at #=> Time
|
|
4581
5044
|
# resp.policy_arn #=> String
|
|
4582
5045
|
# resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
5046
|
+
# resp.definition.cedar.statement #=> String
|
|
5047
|
+
# resp.definition.policy_generation.policy_generation_id #=> String
|
|
5048
|
+
# resp.definition.policy_generation.policy_generation_asset_id #=> String
|
|
5049
|
+
# resp.description #=> String
|
|
4583
5050
|
# resp.status_reasons #=> Array
|
|
4584
5051
|
# resp.status_reasons[0] #=> String
|
|
4585
5052
|
#
|
|
@@ -4607,13 +5074,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
4607
5074
|
#
|
|
4608
5075
|
# * {Types::DeletePolicyEngineResponse#policy_engine_id #policy_engine_id} => String
|
|
4609
5076
|
# * {Types::DeletePolicyEngineResponse#name #name} => String
|
|
4610
|
-
# * {Types::DeletePolicyEngineResponse#description #description} => String
|
|
4611
5077
|
# * {Types::DeletePolicyEngineResponse#created_at #created_at} => Time
|
|
4612
5078
|
# * {Types::DeletePolicyEngineResponse#updated_at #updated_at} => Time
|
|
4613
5079
|
# * {Types::DeletePolicyEngineResponse#policy_engine_arn #policy_engine_arn} => String
|
|
4614
5080
|
# * {Types::DeletePolicyEngineResponse#status #status} => String
|
|
4615
|
-
# * {Types::DeletePolicyEngineResponse#status_reasons #status_reasons} => Array<String>
|
|
4616
5081
|
# * {Types::DeletePolicyEngineResponse#encryption_key_arn #encryption_key_arn} => String
|
|
5082
|
+
# * {Types::DeletePolicyEngineResponse#description #description} => String
|
|
5083
|
+
# * {Types::DeletePolicyEngineResponse#status_reasons #status_reasons} => Array<String>
|
|
4617
5084
|
#
|
|
4618
5085
|
# @example Request syntax with placeholder values
|
|
4619
5086
|
#
|
|
@@ -4625,14 +5092,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
4625
5092
|
#
|
|
4626
5093
|
# resp.policy_engine_id #=> String
|
|
4627
5094
|
# resp.name #=> String
|
|
4628
|
-
# resp.description #=> String
|
|
4629
5095
|
# resp.created_at #=> Time
|
|
4630
5096
|
# resp.updated_at #=> Time
|
|
4631
5097
|
# resp.policy_engine_arn #=> String
|
|
4632
5098
|
# resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
5099
|
+
# resp.encryption_key_arn #=> String
|
|
5100
|
+
# resp.description #=> String
|
|
4633
5101
|
# resp.status_reasons #=> Array
|
|
4634
5102
|
# resp.status_reasons[0] #=> String
|
|
4635
|
-
# resp.encryption_key_arn #=> String
|
|
4636
5103
|
#
|
|
4637
5104
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeletePolicyEngine AWS API Documentation
|
|
4638
5105
|
#
|
|
@@ -4805,6 +5272,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
4805
5272
|
# resp.network_configuration.network_mode_config.security_groups[0] #=> String
|
|
4806
5273
|
# resp.network_configuration.network_mode_config.subnets #=> Array
|
|
4807
5274
|
# resp.network_configuration.network_mode_config.subnets[0] #=> String
|
|
5275
|
+
# resp.network_configuration.network_mode_config.require_service_s3_endpoint #=> Boolean
|
|
4808
5276
|
# resp.status #=> String, one of "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "READY", "DELETING"
|
|
4809
5277
|
# resp.lifecycle_configuration.idle_runtime_session_timeout #=> Integer
|
|
4810
5278
|
# resp.lifecycle_configuration.max_lifetime #=> Integer
|
|
@@ -5005,6 +5473,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
5005
5473
|
# resp.network_configuration.vpc_config.security_groups[0] #=> String
|
|
5006
5474
|
# resp.network_configuration.vpc_config.subnets #=> Array
|
|
5007
5475
|
# resp.network_configuration.vpc_config.subnets[0] #=> String
|
|
5476
|
+
# resp.network_configuration.vpc_config.require_service_s3_endpoint #=> Boolean
|
|
5008
5477
|
# resp.recording.enabled #=> Boolean
|
|
5009
5478
|
# resp.recording.s3_location.bucket #=> String
|
|
5010
5479
|
# resp.recording.s3_location.prefix #=> String
|
|
@@ -5114,6 +5583,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
5114
5583
|
# resp.network_configuration.vpc_config.security_groups[0] #=> String
|
|
5115
5584
|
# resp.network_configuration.vpc_config.subnets #=> Array
|
|
5116
5585
|
# resp.network_configuration.vpc_config.subnets[0] #=> String
|
|
5586
|
+
# resp.network_configuration.vpc_config.require_service_s3_endpoint #=> Boolean
|
|
5117
5587
|
# resp.status #=> String, one of "CREATING", "CREATE_FAILED", "READY", "DELETING", "DELETE_FAILED", "DELETED"
|
|
5118
5588
|
# resp.certificates #=> Array
|
|
5119
5589
|
# resp.certificates[0].location.secrets_manager.secret_arn #=> String
|
|
@@ -5716,6 +6186,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
5716
6186
|
# resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.security_groups[0] #=> String
|
|
5717
6187
|
# resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.subnets #=> Array
|
|
5718
6188
|
# resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.subnets[0] #=> String
|
|
6189
|
+
# resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.require_service_s3_endpoint #=> Boolean
|
|
5719
6190
|
# resp.harness.environment.agent_core_runtime_environment.filesystem_configurations #=> Array
|
|
5720
6191
|
# resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].session_storage.mount_path #=> String
|
|
5721
6192
|
# resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].s3_files_access_point.access_point_arn #=> String
|
|
@@ -6138,6 +6609,187 @@ module Aws::BedrockAgentCoreControl
|
|
|
6138
6609
|
req.send_request(options)
|
|
6139
6610
|
end
|
|
6140
6611
|
|
|
6612
|
+
# Retrieves information about a specific payment connector.
|
|
6613
|
+
#
|
|
6614
|
+
# @option params [required, String] :payment_manager_id
|
|
6615
|
+
# The unique identifier of the parent payment manager.
|
|
6616
|
+
#
|
|
6617
|
+
# @option params [required, String] :payment_connector_id
|
|
6618
|
+
# The unique identifier of the payment connector to retrieve.
|
|
6619
|
+
#
|
|
6620
|
+
# @return [Types::GetPaymentConnectorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6621
|
+
#
|
|
6622
|
+
# * {Types::GetPaymentConnectorResponse#payment_connector_id #payment_connector_id} => String
|
|
6623
|
+
# * {Types::GetPaymentConnectorResponse#name #name} => String
|
|
6624
|
+
# * {Types::GetPaymentConnectorResponse#description #description} => String
|
|
6625
|
+
# * {Types::GetPaymentConnectorResponse#type #type} => String
|
|
6626
|
+
# * {Types::GetPaymentConnectorResponse#credential_provider_configurations #credential_provider_configurations} => Array<Types::CredentialsProviderConfiguration>
|
|
6627
|
+
# * {Types::GetPaymentConnectorResponse#created_at #created_at} => Time
|
|
6628
|
+
# * {Types::GetPaymentConnectorResponse#last_updated_at #last_updated_at} => Time
|
|
6629
|
+
# * {Types::GetPaymentConnectorResponse#status #status} => String
|
|
6630
|
+
#
|
|
6631
|
+
# @example Request syntax with placeholder values
|
|
6632
|
+
#
|
|
6633
|
+
# resp = client.get_payment_connector({
|
|
6634
|
+
# payment_manager_id: "PaymentManagerId", # required
|
|
6635
|
+
# payment_connector_id: "PaymentConnectorId", # required
|
|
6636
|
+
# })
|
|
6637
|
+
#
|
|
6638
|
+
# @example Response structure
|
|
6639
|
+
#
|
|
6640
|
+
# resp.payment_connector_id #=> String
|
|
6641
|
+
# resp.name #=> String
|
|
6642
|
+
# resp.description #=> String
|
|
6643
|
+
# resp.type #=> String, one of "CoinbaseCDP", "StripePrivy"
|
|
6644
|
+
# resp.credential_provider_configurations #=> Array
|
|
6645
|
+
# resp.credential_provider_configurations[0].coinbase_cdp.credential_provider_arn #=> String
|
|
6646
|
+
# resp.credential_provider_configurations[0].stripe_privy.credential_provider_arn #=> String
|
|
6647
|
+
# resp.created_at #=> Time
|
|
6648
|
+
# resp.last_updated_at #=> Time
|
|
6649
|
+
# resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
6650
|
+
#
|
|
6651
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPaymentConnector AWS API Documentation
|
|
6652
|
+
#
|
|
6653
|
+
# @overload get_payment_connector(params = {})
|
|
6654
|
+
# @param [Hash] params ({})
|
|
6655
|
+
def get_payment_connector(params = {}, options = {})
|
|
6656
|
+
req = build_request(:get_payment_connector, params)
|
|
6657
|
+
req.send_request(options)
|
|
6658
|
+
end
|
|
6659
|
+
|
|
6660
|
+
# Retrieves information about a specific payment credential provider.
|
|
6661
|
+
#
|
|
6662
|
+
# @option params [required, String] :name
|
|
6663
|
+
# The name of the payment credential provider to retrieve.
|
|
6664
|
+
#
|
|
6665
|
+
# @return [Types::GetPaymentCredentialProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6666
|
+
#
|
|
6667
|
+
# * {Types::GetPaymentCredentialProviderResponse#name #name} => String
|
|
6668
|
+
# * {Types::GetPaymentCredentialProviderResponse#credential_provider_arn #credential_provider_arn} => String
|
|
6669
|
+
# * {Types::GetPaymentCredentialProviderResponse#credential_provider_vendor #credential_provider_vendor} => String
|
|
6670
|
+
# * {Types::GetPaymentCredentialProviderResponse#provider_configuration_output #provider_configuration_output} => Types::PaymentProviderConfigurationOutput
|
|
6671
|
+
# * {Types::GetPaymentCredentialProviderResponse#created_time #created_time} => Time
|
|
6672
|
+
# * {Types::GetPaymentCredentialProviderResponse#last_updated_time #last_updated_time} => Time
|
|
6673
|
+
# * {Types::GetPaymentCredentialProviderResponse#tags #tags} => Hash<String,String>
|
|
6674
|
+
#
|
|
6675
|
+
# @example Request syntax with placeholder values
|
|
6676
|
+
#
|
|
6677
|
+
# resp = client.get_payment_credential_provider({
|
|
6678
|
+
# name: "CredentialProviderName", # required
|
|
6679
|
+
# })
|
|
6680
|
+
#
|
|
6681
|
+
# @example Response structure
|
|
6682
|
+
#
|
|
6683
|
+
# resp.name #=> String
|
|
6684
|
+
# resp.credential_provider_arn #=> String
|
|
6685
|
+
# resp.credential_provider_vendor #=> String, one of "CoinbaseCDP", "StripePrivy"
|
|
6686
|
+
# resp.provider_configuration_output.coinbase_cdp_configuration.api_key_id #=> String
|
|
6687
|
+
# resp.provider_configuration_output.coinbase_cdp_configuration.api_key_secret_arn.secret_arn #=> String
|
|
6688
|
+
# resp.provider_configuration_output.coinbase_cdp_configuration.wallet_secret_arn.secret_arn #=> String
|
|
6689
|
+
# resp.provider_configuration_output.stripe_privy_configuration.app_id #=> String
|
|
6690
|
+
# resp.provider_configuration_output.stripe_privy_configuration.app_secret_arn.secret_arn #=> String
|
|
6691
|
+
# resp.provider_configuration_output.stripe_privy_configuration.authorization_private_key_arn.secret_arn #=> String
|
|
6692
|
+
# resp.provider_configuration_output.stripe_privy_configuration.authorization_id #=> String
|
|
6693
|
+
# resp.created_time #=> Time
|
|
6694
|
+
# resp.last_updated_time #=> Time
|
|
6695
|
+
# resp.tags #=> Hash
|
|
6696
|
+
# resp.tags["TagKey"] #=> String
|
|
6697
|
+
#
|
|
6698
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPaymentCredentialProvider AWS API Documentation
|
|
6699
|
+
#
|
|
6700
|
+
# @overload get_payment_credential_provider(params = {})
|
|
6701
|
+
# @param [Hash] params ({})
|
|
6702
|
+
def get_payment_credential_provider(params = {}, options = {})
|
|
6703
|
+
req = build_request(:get_payment_credential_provider, params)
|
|
6704
|
+
req.send_request(options)
|
|
6705
|
+
end
|
|
6706
|
+
|
|
6707
|
+
# Retrieves information about a specific payment manager.
|
|
6708
|
+
#
|
|
6709
|
+
# @option params [required, String] :payment_manager_id
|
|
6710
|
+
# The unique identifier of the payment manager to retrieve.
|
|
6711
|
+
#
|
|
6712
|
+
# @return [Types::GetPaymentManagerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6713
|
+
#
|
|
6714
|
+
# * {Types::GetPaymentManagerResponse#payment_manager_arn #payment_manager_arn} => String
|
|
6715
|
+
# * {Types::GetPaymentManagerResponse#payment_manager_id #payment_manager_id} => String
|
|
6716
|
+
# * {Types::GetPaymentManagerResponse#name #name} => String
|
|
6717
|
+
# * {Types::GetPaymentManagerResponse#description #description} => String
|
|
6718
|
+
# * {Types::GetPaymentManagerResponse#authorizer_type #authorizer_type} => String
|
|
6719
|
+
# * {Types::GetPaymentManagerResponse#authorizer_configuration #authorizer_configuration} => Types::AuthorizerConfiguration
|
|
6720
|
+
# * {Types::GetPaymentManagerResponse#role_arn #role_arn} => String
|
|
6721
|
+
# * {Types::GetPaymentManagerResponse#workload_identity_details #workload_identity_details} => Types::WorkloadIdentityDetails
|
|
6722
|
+
# * {Types::GetPaymentManagerResponse#created_at #created_at} => Time
|
|
6723
|
+
# * {Types::GetPaymentManagerResponse#last_updated_at #last_updated_at} => Time
|
|
6724
|
+
# * {Types::GetPaymentManagerResponse#status #status} => String
|
|
6725
|
+
# * {Types::GetPaymentManagerResponse#tags #tags} => Hash<String,String>
|
|
6726
|
+
#
|
|
6727
|
+
# @example Request syntax with placeholder values
|
|
6728
|
+
#
|
|
6729
|
+
# resp = client.get_payment_manager({
|
|
6730
|
+
# payment_manager_id: "PaymentManagerId", # required
|
|
6731
|
+
# })
|
|
6732
|
+
#
|
|
6733
|
+
# @example Response structure
|
|
6734
|
+
#
|
|
6735
|
+
# resp.payment_manager_arn #=> String
|
|
6736
|
+
# resp.payment_manager_id #=> String
|
|
6737
|
+
# resp.name #=> String
|
|
6738
|
+
# resp.description #=> String
|
|
6739
|
+
# resp.authorizer_type #=> String, one of "CUSTOM_JWT", "AWS_IAM"
|
|
6740
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.discovery_url #=> String
|
|
6741
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_audience #=> Array
|
|
6742
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_audience[0] #=> String
|
|
6743
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_clients #=> Array
|
|
6744
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_clients[0] #=> String
|
|
6745
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_scopes #=> Array
|
|
6746
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.allowed_scopes[0] #=> String
|
|
6747
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.custom_claims #=> Array
|
|
6748
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].inbound_token_claim_name #=> String
|
|
6749
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].inbound_token_claim_value_type #=> String, one of "STRING", "STRING_ARRAY"
|
|
6750
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_value.match_value_string #=> String
|
|
6751
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_value.match_value_string_list #=> Array
|
|
6752
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_value.match_value_string_list[0] #=> String
|
|
6753
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.custom_claims[0].authorizing_claim_match_value.claim_match_operator #=> String, one of "EQUALS", "CONTAINS", "CONTAINS_ANY"
|
|
6754
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
|
|
6755
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.vpc_identifier #=> String
|
|
6756
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.subnet_ids #=> Array
|
|
6757
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.subnet_ids[0] #=> String
|
|
6758
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.endpoint_ip_address_type #=> String, one of "IPV4", "IPV6"
|
|
6759
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.security_group_ids #=> Array
|
|
6760
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.security_group_ids[0] #=> String
|
|
6761
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
6762
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
6763
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint.managed_vpc_resource.routing_domain #=> String
|
|
6764
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides #=> Array
|
|
6765
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].domain #=> String
|
|
6766
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
|
|
6767
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.vpc_identifier #=> String
|
|
6768
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.subnet_ids #=> Array
|
|
6769
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.subnet_ids[0] #=> String
|
|
6770
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.endpoint_ip_address_type #=> String, one of "IPV4", "IPV6"
|
|
6771
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.security_group_ids #=> Array
|
|
6772
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.security_group_ids[0] #=> String
|
|
6773
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags #=> Hash
|
|
6774
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.tags["TagKey"] #=> String
|
|
6775
|
+
# resp.authorizer_configuration.custom_jwt_authorizer.private_endpoint_overrides[0].private_endpoint.managed_vpc_resource.routing_domain #=> String
|
|
6776
|
+
# resp.role_arn #=> String
|
|
6777
|
+
# resp.workload_identity_details.workload_identity_arn #=> String
|
|
6778
|
+
# resp.created_at #=> Time
|
|
6779
|
+
# resp.last_updated_at #=> Time
|
|
6780
|
+
# resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
6781
|
+
# resp.tags #=> Hash
|
|
6782
|
+
# resp.tags["TagKey"] #=> String
|
|
6783
|
+
#
|
|
6784
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPaymentManager AWS API Documentation
|
|
6785
|
+
#
|
|
6786
|
+
# @overload get_payment_manager(params = {})
|
|
6787
|
+
# @param [Hash] params ({})
|
|
6788
|
+
def get_payment_manager(params = {}, options = {})
|
|
6789
|
+
req = build_request(:get_payment_manager, params)
|
|
6790
|
+
req.send_request(options)
|
|
6791
|
+
end
|
|
6792
|
+
|
|
6141
6793
|
# Retrieves detailed information about a specific policy within the
|
|
6142
6794
|
# AgentCore Policy system. This operation returns the complete policy
|
|
6143
6795
|
# definition, metadata, and current status, allowing administrators to
|
|
@@ -6156,12 +6808,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
6156
6808
|
# * {Types::GetPolicyResponse#policy_id #policy_id} => String
|
|
6157
6809
|
# * {Types::GetPolicyResponse#name #name} => String
|
|
6158
6810
|
# * {Types::GetPolicyResponse#policy_engine_id #policy_engine_id} => String
|
|
6159
|
-
# * {Types::GetPolicyResponse#definition #definition} => Types::PolicyDefinition
|
|
6160
|
-
# * {Types::GetPolicyResponse#description #description} => String
|
|
6161
6811
|
# * {Types::GetPolicyResponse#created_at #created_at} => Time
|
|
6162
6812
|
# * {Types::GetPolicyResponse#updated_at #updated_at} => Time
|
|
6163
6813
|
# * {Types::GetPolicyResponse#policy_arn #policy_arn} => String
|
|
6164
6814
|
# * {Types::GetPolicyResponse#status #status} => String
|
|
6815
|
+
# * {Types::GetPolicyResponse#definition #definition} => Types::PolicyDefinition
|
|
6816
|
+
# * {Types::GetPolicyResponse#description #description} => String
|
|
6165
6817
|
# * {Types::GetPolicyResponse#status_reasons #status_reasons} => Array<String>
|
|
6166
6818
|
#
|
|
6167
6819
|
# @example Request syntax with placeholder values
|
|
@@ -6176,14 +6828,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
6176
6828
|
# resp.policy_id #=> String
|
|
6177
6829
|
# resp.name #=> String
|
|
6178
6830
|
# resp.policy_engine_id #=> String
|
|
6179
|
-
# resp.definition.cedar.statement #=> String
|
|
6180
|
-
# resp.definition.policy_generation.policy_generation_id #=> String
|
|
6181
|
-
# resp.definition.policy_generation.policy_generation_asset_id #=> String
|
|
6182
|
-
# resp.description #=> String
|
|
6183
6831
|
# resp.created_at #=> Time
|
|
6184
6832
|
# resp.updated_at #=> Time
|
|
6185
6833
|
# resp.policy_arn #=> String
|
|
6186
6834
|
# resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
6835
|
+
# resp.definition.cedar.statement #=> String
|
|
6836
|
+
# resp.definition.policy_generation.policy_generation_id #=> String
|
|
6837
|
+
# resp.definition.policy_generation.policy_generation_asset_id #=> String
|
|
6838
|
+
# resp.description #=> String
|
|
6187
6839
|
# resp.status_reasons #=> Array
|
|
6188
6840
|
# resp.status_reasons[0] #=> String
|
|
6189
6841
|
#
|
|
@@ -6215,13 +6867,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
6215
6867
|
#
|
|
6216
6868
|
# * {Types::GetPolicyEngineResponse#policy_engine_id #policy_engine_id} => String
|
|
6217
6869
|
# * {Types::GetPolicyEngineResponse#name #name} => String
|
|
6218
|
-
# * {Types::GetPolicyEngineResponse#description #description} => String
|
|
6219
6870
|
# * {Types::GetPolicyEngineResponse#created_at #created_at} => Time
|
|
6220
6871
|
# * {Types::GetPolicyEngineResponse#updated_at #updated_at} => Time
|
|
6221
6872
|
# * {Types::GetPolicyEngineResponse#policy_engine_arn #policy_engine_arn} => String
|
|
6222
6873
|
# * {Types::GetPolicyEngineResponse#status #status} => String
|
|
6223
|
-
# * {Types::GetPolicyEngineResponse#status_reasons #status_reasons} => Array<String>
|
|
6224
6874
|
# * {Types::GetPolicyEngineResponse#encryption_key_arn #encryption_key_arn} => String
|
|
6875
|
+
# * {Types::GetPolicyEngineResponse#description #description} => String
|
|
6876
|
+
# * {Types::GetPolicyEngineResponse#status_reasons #status_reasons} => Array<String>
|
|
6225
6877
|
#
|
|
6226
6878
|
# @example Request syntax with placeholder values
|
|
6227
6879
|
#
|
|
@@ -6233,14 +6885,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
6233
6885
|
#
|
|
6234
6886
|
# resp.policy_engine_id #=> String
|
|
6235
6887
|
# resp.name #=> String
|
|
6236
|
-
# resp.description #=> String
|
|
6237
6888
|
# resp.created_at #=> Time
|
|
6238
6889
|
# resp.updated_at #=> Time
|
|
6239
6890
|
# resp.policy_engine_arn #=> String
|
|
6240
6891
|
# resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
6892
|
+
# resp.encryption_key_arn #=> String
|
|
6893
|
+
# resp.description #=> String
|
|
6241
6894
|
# resp.status_reasons #=> Array
|
|
6242
6895
|
# resp.status_reasons[0] #=> String
|
|
6243
|
-
# resp.encryption_key_arn #=> String
|
|
6244
6896
|
#
|
|
6245
6897
|
#
|
|
6246
6898
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -6248,12 +6900,60 @@ module Aws::BedrockAgentCoreControl
|
|
|
6248
6900
|
# * policy_engine_active
|
|
6249
6901
|
# * policy_engine_deleted
|
|
6250
6902
|
#
|
|
6251
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPolicyEngine AWS API Documentation
|
|
6903
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPolicyEngine AWS API Documentation
|
|
6904
|
+
#
|
|
6905
|
+
# @overload get_policy_engine(params = {})
|
|
6906
|
+
# @param [Hash] params ({})
|
|
6907
|
+
def get_policy_engine(params = {}, options = {})
|
|
6908
|
+
req = build_request(:get_policy_engine, params)
|
|
6909
|
+
req.send_request(options)
|
|
6910
|
+
end
|
|
6911
|
+
|
|
6912
|
+
# Retrieves a metadata-only summary of a specific policy engine without
|
|
6913
|
+
# decrypting customer content. This lightweight read operation returns
|
|
6914
|
+
# resource identifiers, status, timestamps, and the encryption key ARN,
|
|
6915
|
+
# but does not include the description or status reasons. Because this
|
|
6916
|
+
# operation does not require access to the customer's KMS key, it is
|
|
6917
|
+
# suitable for resource discovery, inventory, and integration scenarios
|
|
6918
|
+
# where only metadata is needed.
|
|
6919
|
+
#
|
|
6920
|
+
# @option params [required, String] :policy_engine_id
|
|
6921
|
+
# The unique identifier of the policy engine to retrieve the summary
|
|
6922
|
+
# for. This must be a valid policy engine ID that exists within the
|
|
6923
|
+
# account.
|
|
6924
|
+
#
|
|
6925
|
+
# @return [Types::GetPolicyEngineSummaryResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6926
|
+
#
|
|
6927
|
+
# * {Types::GetPolicyEngineSummaryResponse#policy_engine_id #policy_engine_id} => String
|
|
6928
|
+
# * {Types::GetPolicyEngineSummaryResponse#name #name} => String
|
|
6929
|
+
# * {Types::GetPolicyEngineSummaryResponse#created_at #created_at} => Time
|
|
6930
|
+
# * {Types::GetPolicyEngineSummaryResponse#updated_at #updated_at} => Time
|
|
6931
|
+
# * {Types::GetPolicyEngineSummaryResponse#policy_engine_arn #policy_engine_arn} => String
|
|
6932
|
+
# * {Types::GetPolicyEngineSummaryResponse#status #status} => String
|
|
6933
|
+
# * {Types::GetPolicyEngineSummaryResponse#encryption_key_arn #encryption_key_arn} => String
|
|
6934
|
+
#
|
|
6935
|
+
# @example Request syntax with placeholder values
|
|
6936
|
+
#
|
|
6937
|
+
# resp = client.get_policy_engine_summary({
|
|
6938
|
+
# policy_engine_id: "ResourceId", # required
|
|
6939
|
+
# })
|
|
6940
|
+
#
|
|
6941
|
+
# @example Response structure
|
|
6942
|
+
#
|
|
6943
|
+
# resp.policy_engine_id #=> String
|
|
6944
|
+
# resp.name #=> String
|
|
6945
|
+
# resp.created_at #=> Time
|
|
6946
|
+
# resp.updated_at #=> Time
|
|
6947
|
+
# resp.policy_engine_arn #=> String
|
|
6948
|
+
# resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
6949
|
+
# resp.encryption_key_arn #=> String
|
|
6950
|
+
#
|
|
6951
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPolicyEngineSummary AWS API Documentation
|
|
6252
6952
|
#
|
|
6253
|
-
# @overload
|
|
6953
|
+
# @overload get_policy_engine_summary(params = {})
|
|
6254
6954
|
# @param [Hash] params ({})
|
|
6255
|
-
def
|
|
6256
|
-
req = build_request(:
|
|
6955
|
+
def get_policy_engine_summary(params = {}, options = {})
|
|
6956
|
+
req = build_request(:get_policy_engine_summary, params)
|
|
6257
6957
|
req.send_request(options)
|
|
6258
6958
|
end
|
|
6259
6959
|
|
|
@@ -6286,8 +6986,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
6286
6986
|
# * {Types::GetPolicyGenerationResponse#created_at #created_at} => Time
|
|
6287
6987
|
# * {Types::GetPolicyGenerationResponse#updated_at #updated_at} => Time
|
|
6288
6988
|
# * {Types::GetPolicyGenerationResponse#status #status} => String
|
|
6289
|
-
# * {Types::GetPolicyGenerationResponse#status_reasons #status_reasons} => Array<String>
|
|
6290
6989
|
# * {Types::GetPolicyGenerationResponse#findings #findings} => String
|
|
6990
|
+
# * {Types::GetPolicyGenerationResponse#status_reasons #status_reasons} => Array<String>
|
|
6291
6991
|
#
|
|
6292
6992
|
# @example Request syntax with placeholder values
|
|
6293
6993
|
#
|
|
@@ -6306,9 +7006,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
6306
7006
|
# resp.created_at #=> Time
|
|
6307
7007
|
# resp.updated_at #=> Time
|
|
6308
7008
|
# resp.status #=> String, one of "GENERATING", "GENERATED", "GENERATE_FAILED", "DELETE_FAILED"
|
|
7009
|
+
# resp.findings #=> String
|
|
6309
7010
|
# resp.status_reasons #=> Array
|
|
6310
7011
|
# resp.status_reasons[0] #=> String
|
|
6311
|
-
# resp.findings #=> String
|
|
6312
7012
|
#
|
|
6313
7013
|
#
|
|
6314
7014
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -6324,6 +7024,115 @@ module Aws::BedrockAgentCoreControl
|
|
|
6324
7024
|
req.send_request(options)
|
|
6325
7025
|
end
|
|
6326
7026
|
|
|
7027
|
+
# Retrieves a metadata-only summary of a specific policy generation
|
|
7028
|
+
# request without decrypting customer content. This lightweight read
|
|
7029
|
+
# operation returns resource identifiers, status, timestamps, and
|
|
7030
|
+
# findings, but does not include status reasons. Because this operation
|
|
7031
|
+
# does not require access to the customer's KMS key, it is suitable for
|
|
7032
|
+
# resource discovery, inventory, and integration scenarios where only
|
|
7033
|
+
# metadata is needed.
|
|
7034
|
+
#
|
|
7035
|
+
# @option params [required, String] :policy_generation_id
|
|
7036
|
+
# The unique identifier of the policy generation request to retrieve the
|
|
7037
|
+
# summary for.
|
|
7038
|
+
#
|
|
7039
|
+
# @option params [required, String] :policy_engine_id
|
|
7040
|
+
# The identifier of the policy engine associated with the policy
|
|
7041
|
+
# generation request.
|
|
7042
|
+
#
|
|
7043
|
+
# @return [Types::GetPolicyGenerationSummaryResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
7044
|
+
#
|
|
7045
|
+
# * {Types::GetPolicyGenerationSummaryResponse#policy_engine_id #policy_engine_id} => String
|
|
7046
|
+
# * {Types::GetPolicyGenerationSummaryResponse#policy_generation_id #policy_generation_id} => String
|
|
7047
|
+
# * {Types::GetPolicyGenerationSummaryResponse#name #name} => String
|
|
7048
|
+
# * {Types::GetPolicyGenerationSummaryResponse#policy_generation_arn #policy_generation_arn} => String
|
|
7049
|
+
# * {Types::GetPolicyGenerationSummaryResponse#resource #resource} => Types::Resource
|
|
7050
|
+
# * {Types::GetPolicyGenerationSummaryResponse#created_at #created_at} => Time
|
|
7051
|
+
# * {Types::GetPolicyGenerationSummaryResponse#updated_at #updated_at} => Time
|
|
7052
|
+
# * {Types::GetPolicyGenerationSummaryResponse#status #status} => String
|
|
7053
|
+
# * {Types::GetPolicyGenerationSummaryResponse#findings #findings} => String
|
|
7054
|
+
#
|
|
7055
|
+
# @example Request syntax with placeholder values
|
|
7056
|
+
#
|
|
7057
|
+
# resp = client.get_policy_generation_summary({
|
|
7058
|
+
# policy_generation_id: "ResourceId", # required
|
|
7059
|
+
# policy_engine_id: "ResourceId", # required
|
|
7060
|
+
# })
|
|
7061
|
+
#
|
|
7062
|
+
# @example Response structure
|
|
7063
|
+
#
|
|
7064
|
+
# resp.policy_engine_id #=> String
|
|
7065
|
+
# resp.policy_generation_id #=> String
|
|
7066
|
+
# resp.name #=> String
|
|
7067
|
+
# resp.policy_generation_arn #=> String
|
|
7068
|
+
# resp.resource.arn #=> String
|
|
7069
|
+
# resp.created_at #=> Time
|
|
7070
|
+
# resp.updated_at #=> Time
|
|
7071
|
+
# resp.status #=> String, one of "GENERATING", "GENERATED", "GENERATE_FAILED", "DELETE_FAILED"
|
|
7072
|
+
# resp.findings #=> String
|
|
7073
|
+
#
|
|
7074
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPolicyGenerationSummary AWS API Documentation
|
|
7075
|
+
#
|
|
7076
|
+
# @overload get_policy_generation_summary(params = {})
|
|
7077
|
+
# @param [Hash] params ({})
|
|
7078
|
+
def get_policy_generation_summary(params = {}, options = {})
|
|
7079
|
+
req = build_request(:get_policy_generation_summary, params)
|
|
7080
|
+
req.send_request(options)
|
|
7081
|
+
end
|
|
7082
|
+
|
|
7083
|
+
# Retrieves a metadata-only summary of a specific policy without
|
|
7084
|
+
# decrypting customer content. This lightweight read operation returns
|
|
7085
|
+
# resource identifiers, status, and timestamps, but does not include the
|
|
7086
|
+
# policy definition, description, or status reasons. Because this
|
|
7087
|
+
# operation does not require access to the customer's KMS key, it is
|
|
7088
|
+
# suitable for resource discovery, inventory, and integration scenarios
|
|
7089
|
+
# where only metadata is needed.
|
|
7090
|
+
#
|
|
7091
|
+
# @option params [required, String] :policy_engine_id
|
|
7092
|
+
# The identifier of the policy engine that manages the policy to
|
|
7093
|
+
# retrieve the summary for.
|
|
7094
|
+
#
|
|
7095
|
+
# @option params [required, String] :policy_id
|
|
7096
|
+
# The unique identifier of the policy to retrieve the summary for. This
|
|
7097
|
+
# must be a valid policy ID that exists within the specified policy
|
|
7098
|
+
# engine.
|
|
7099
|
+
#
|
|
7100
|
+
# @return [Types::GetPolicySummaryResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
7101
|
+
#
|
|
7102
|
+
# * {Types::GetPolicySummaryResponse#policy_id #policy_id} => String
|
|
7103
|
+
# * {Types::GetPolicySummaryResponse#name #name} => String
|
|
7104
|
+
# * {Types::GetPolicySummaryResponse#policy_engine_id #policy_engine_id} => String
|
|
7105
|
+
# * {Types::GetPolicySummaryResponse#created_at #created_at} => Time
|
|
7106
|
+
# * {Types::GetPolicySummaryResponse#updated_at #updated_at} => Time
|
|
7107
|
+
# * {Types::GetPolicySummaryResponse#policy_arn #policy_arn} => String
|
|
7108
|
+
# * {Types::GetPolicySummaryResponse#status #status} => String
|
|
7109
|
+
#
|
|
7110
|
+
# @example Request syntax with placeholder values
|
|
7111
|
+
#
|
|
7112
|
+
# resp = client.get_policy_summary({
|
|
7113
|
+
# policy_engine_id: "ResourceId", # required
|
|
7114
|
+
# policy_id: "ResourceId", # required
|
|
7115
|
+
# })
|
|
7116
|
+
#
|
|
7117
|
+
# @example Response structure
|
|
7118
|
+
#
|
|
7119
|
+
# resp.policy_id #=> String
|
|
7120
|
+
# resp.name #=> String
|
|
7121
|
+
# resp.policy_engine_id #=> String
|
|
7122
|
+
# resp.created_at #=> Time
|
|
7123
|
+
# resp.updated_at #=> Time
|
|
7124
|
+
# resp.policy_arn #=> String
|
|
7125
|
+
# resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
7126
|
+
#
|
|
7127
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPolicySummary AWS API Documentation
|
|
7128
|
+
#
|
|
7129
|
+
# @overload get_policy_summary(params = {})
|
|
7130
|
+
# @param [Hash] params ({})
|
|
7131
|
+
def get_policy_summary(params = {}, options = {})
|
|
7132
|
+
req = build_request(:get_policy_summary, params)
|
|
7133
|
+
req.send_request(options)
|
|
7134
|
+
end
|
|
7135
|
+
|
|
6327
7136
|
# Retrieves information about a specific registry.
|
|
6328
7137
|
#
|
|
6329
7138
|
# @option params [required, String] :registry_id
|
|
@@ -7438,6 +8247,149 @@ module Aws::BedrockAgentCoreControl
|
|
|
7438
8247
|
req.send_request(options)
|
|
7439
8248
|
end
|
|
7440
8249
|
|
|
8250
|
+
# Lists all payment connectors for a specified payment manager.
|
|
8251
|
+
#
|
|
8252
|
+
# @option params [required, String] :payment_manager_id
|
|
8253
|
+
# The unique identifier of the payment manager whose connectors to list.
|
|
8254
|
+
#
|
|
8255
|
+
# @option params [Integer] :max_results
|
|
8256
|
+
# The maximum number of results to return in the response. If the total
|
|
8257
|
+
# number of results is greater than this value, use the token returned
|
|
8258
|
+
# in the response in the `nextToken` field when making another request
|
|
8259
|
+
# to return the next batch of results.
|
|
8260
|
+
#
|
|
8261
|
+
# @option params [String] :next_token
|
|
8262
|
+
# If the total number of results is greater than the `maxResults` value
|
|
8263
|
+
# provided in the request, enter the token returned in the `nextToken`
|
|
8264
|
+
# field in the response in this field to return the next batch of
|
|
8265
|
+
# results.
|
|
8266
|
+
#
|
|
8267
|
+
# @return [Types::ListPaymentConnectorsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
8268
|
+
#
|
|
8269
|
+
# * {Types::ListPaymentConnectorsResponse#payment_connectors #payment_connectors} => Array<Types::PaymentConnectorSummary>
|
|
8270
|
+
# * {Types::ListPaymentConnectorsResponse#next_token #next_token} => String
|
|
8271
|
+
#
|
|
8272
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
8273
|
+
#
|
|
8274
|
+
# @example Request syntax with placeholder values
|
|
8275
|
+
#
|
|
8276
|
+
# resp = client.list_payment_connectors({
|
|
8277
|
+
# payment_manager_id: "PaymentManagerId", # required
|
|
8278
|
+
# max_results: 1,
|
|
8279
|
+
# next_token: "NextToken",
|
|
8280
|
+
# })
|
|
8281
|
+
#
|
|
8282
|
+
# @example Response structure
|
|
8283
|
+
#
|
|
8284
|
+
# resp.payment_connectors #=> Array
|
|
8285
|
+
# resp.payment_connectors[0].payment_connector_id #=> String
|
|
8286
|
+
# resp.payment_connectors[0].name #=> String
|
|
8287
|
+
# resp.payment_connectors[0].type #=> String, one of "CoinbaseCDP", "StripePrivy"
|
|
8288
|
+
# resp.payment_connectors[0].status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
8289
|
+
# resp.payment_connectors[0].last_updated_at #=> Time
|
|
8290
|
+
# resp.next_token #=> String
|
|
8291
|
+
#
|
|
8292
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPaymentConnectors AWS API Documentation
|
|
8293
|
+
#
|
|
8294
|
+
# @overload list_payment_connectors(params = {})
|
|
8295
|
+
# @param [Hash] params ({})
|
|
8296
|
+
def list_payment_connectors(params = {}, options = {})
|
|
8297
|
+
req = build_request(:list_payment_connectors, params)
|
|
8298
|
+
req.send_request(options)
|
|
8299
|
+
end
|
|
8300
|
+
|
|
8301
|
+
# Lists all payment credential providers in the account.
|
|
8302
|
+
#
|
|
8303
|
+
# @option params [String] :next_token
|
|
8304
|
+
# Pagination token.
|
|
8305
|
+
#
|
|
8306
|
+
# @option params [Integer] :max_results
|
|
8307
|
+
# Maximum number of results to return.
|
|
8308
|
+
#
|
|
8309
|
+
# @return [Types::ListPaymentCredentialProvidersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
8310
|
+
#
|
|
8311
|
+
# * {Types::ListPaymentCredentialProvidersResponse#credential_providers #credential_providers} => Array<Types::PaymentCredentialProviderItem>
|
|
8312
|
+
# * {Types::ListPaymentCredentialProvidersResponse#next_token #next_token} => String
|
|
8313
|
+
#
|
|
8314
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
8315
|
+
#
|
|
8316
|
+
# @example Request syntax with placeholder values
|
|
8317
|
+
#
|
|
8318
|
+
# resp = client.list_payment_credential_providers({
|
|
8319
|
+
# next_token: "String",
|
|
8320
|
+
# max_results: 1,
|
|
8321
|
+
# })
|
|
8322
|
+
#
|
|
8323
|
+
# @example Response structure
|
|
8324
|
+
#
|
|
8325
|
+
# resp.credential_providers #=> Array
|
|
8326
|
+
# resp.credential_providers[0].name #=> String
|
|
8327
|
+
# resp.credential_providers[0].credential_provider_vendor #=> String, one of "CoinbaseCDP", "StripePrivy"
|
|
8328
|
+
# resp.credential_providers[0].credential_provider_arn #=> String
|
|
8329
|
+
# resp.credential_providers[0].created_time #=> Time
|
|
8330
|
+
# resp.credential_providers[0].last_updated_time #=> Time
|
|
8331
|
+
# resp.next_token #=> String
|
|
8332
|
+
#
|
|
8333
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPaymentCredentialProviders AWS API Documentation
|
|
8334
|
+
#
|
|
8335
|
+
# @overload list_payment_credential_providers(params = {})
|
|
8336
|
+
# @param [Hash] params ({})
|
|
8337
|
+
def list_payment_credential_providers(params = {}, options = {})
|
|
8338
|
+
req = build_request(:list_payment_credential_providers, params)
|
|
8339
|
+
req.send_request(options)
|
|
8340
|
+
end
|
|
8341
|
+
|
|
8342
|
+
# Lists all payment managers in the account.
|
|
8343
|
+
#
|
|
8344
|
+
# @option params [Integer] :max_results
|
|
8345
|
+
# The maximum number of results to return in the response. If the total
|
|
8346
|
+
# number of results is greater than this value, use the token returned
|
|
8347
|
+
# in the response in the `nextToken` field when making another request
|
|
8348
|
+
# to return the next batch of results.
|
|
8349
|
+
#
|
|
8350
|
+
# @option params [String] :next_token
|
|
8351
|
+
# If the total number of results is greater than the `maxResults` value
|
|
8352
|
+
# provided in the request, enter the token returned in the `nextToken`
|
|
8353
|
+
# field in the response in this field to return the next batch of
|
|
8354
|
+
# results.
|
|
8355
|
+
#
|
|
8356
|
+
# @return [Types::ListPaymentManagersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
8357
|
+
#
|
|
8358
|
+
# * {Types::ListPaymentManagersResponse#payment_managers #payment_managers} => Array<Types::PaymentManagerSummary>
|
|
8359
|
+
# * {Types::ListPaymentManagersResponse#next_token #next_token} => String
|
|
8360
|
+
#
|
|
8361
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
8362
|
+
#
|
|
8363
|
+
# @example Request syntax with placeholder values
|
|
8364
|
+
#
|
|
8365
|
+
# resp = client.list_payment_managers({
|
|
8366
|
+
# max_results: 1,
|
|
8367
|
+
# next_token: "NextToken",
|
|
8368
|
+
# })
|
|
8369
|
+
#
|
|
8370
|
+
# @example Response structure
|
|
8371
|
+
#
|
|
8372
|
+
# resp.payment_managers #=> Array
|
|
8373
|
+
# resp.payment_managers[0].payment_manager_arn #=> String
|
|
8374
|
+
# resp.payment_managers[0].payment_manager_id #=> String
|
|
8375
|
+
# resp.payment_managers[0].name #=> String
|
|
8376
|
+
# resp.payment_managers[0].description #=> String
|
|
8377
|
+
# resp.payment_managers[0].authorizer_type #=> String, one of "CUSTOM_JWT", "AWS_IAM"
|
|
8378
|
+
# resp.payment_managers[0].role_arn #=> String
|
|
8379
|
+
# resp.payment_managers[0].status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
8380
|
+
# resp.payment_managers[0].created_at #=> Time
|
|
8381
|
+
# resp.payment_managers[0].last_updated_at #=> Time
|
|
8382
|
+
# resp.next_token #=> String
|
|
8383
|
+
#
|
|
8384
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPaymentManagers AWS API Documentation
|
|
8385
|
+
#
|
|
8386
|
+
# @overload list_payment_managers(params = {})
|
|
8387
|
+
# @param [Hash] params ({})
|
|
8388
|
+
def list_payment_managers(params = {}, options = {})
|
|
8389
|
+
req = build_request(:list_payment_managers, params)
|
|
8390
|
+
req.send_request(options)
|
|
8391
|
+
end
|
|
8392
|
+
|
|
7441
8393
|
# Retrieves a list of policies within the AgentCore Policy engine. This
|
|
7442
8394
|
# operation supports pagination and filtering to help administrators
|
|
7443
8395
|
# manage and discover policies across policy engines. Results can be
|
|
@@ -7488,14 +8440,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
7488
8440
|
# resp.policies[0].policy_id #=> String
|
|
7489
8441
|
# resp.policies[0].name #=> String
|
|
7490
8442
|
# resp.policies[0].policy_engine_id #=> String
|
|
7491
|
-
# resp.policies[0].definition.cedar.statement #=> String
|
|
7492
|
-
# resp.policies[0].definition.policy_generation.policy_generation_id #=> String
|
|
7493
|
-
# resp.policies[0].definition.policy_generation.policy_generation_asset_id #=> String
|
|
7494
|
-
# resp.policies[0].description #=> String
|
|
7495
8443
|
# resp.policies[0].created_at #=> Time
|
|
7496
8444
|
# resp.policies[0].updated_at #=> Time
|
|
7497
8445
|
# resp.policies[0].policy_arn #=> String
|
|
7498
8446
|
# resp.policies[0].status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
8447
|
+
# resp.policies[0].definition.cedar.statement #=> String
|
|
8448
|
+
# resp.policies[0].definition.policy_generation.policy_generation_id #=> String
|
|
8449
|
+
# resp.policies[0].definition.policy_generation.policy_generation_asset_id #=> String
|
|
8450
|
+
# resp.policies[0].description #=> String
|
|
7499
8451
|
# resp.policies[0].status_reasons #=> Array
|
|
7500
8452
|
# resp.policies[0].status_reasons[0] #=> String
|
|
7501
8453
|
# resp.next_token #=> String
|
|
@@ -7509,6 +8461,62 @@ module Aws::BedrockAgentCoreControl
|
|
|
7509
8461
|
req.send_request(options)
|
|
7510
8462
|
end
|
|
7511
8463
|
|
|
8464
|
+
# Retrieves a paginated list of metadata-only policy engine summaries
|
|
8465
|
+
# without decrypting customer content. This lightweight read operation
|
|
8466
|
+
# returns resource identifiers, status, and timestamps for each policy
|
|
8467
|
+
# engine, but does not include descriptions or status reasons. Because
|
|
8468
|
+
# this operation does not require access to the customer's KMS key, it
|
|
8469
|
+
# is suitable for resource discovery, inventory, and integration
|
|
8470
|
+
# scenarios where only metadata is needed.
|
|
8471
|
+
#
|
|
8472
|
+
# @option params [String] :next_token
|
|
8473
|
+
# A pagination token returned from a previous
|
|
8474
|
+
# [ListPolicyEngineSummaries][1] call. Use this token to retrieve the
|
|
8475
|
+
# next page of results when the response is paginated.
|
|
8476
|
+
#
|
|
8477
|
+
#
|
|
8478
|
+
#
|
|
8479
|
+
# [1]: https://docs.aws.amazon.com/bedrock-agentcore-control/latest/APIReference/API_ListPolicyEngineSummaries.html
|
|
8480
|
+
#
|
|
8481
|
+
# @option params [Integer] :max_results
|
|
8482
|
+
# The maximum number of policy engine summaries to return in a single
|
|
8483
|
+
# response.
|
|
8484
|
+
#
|
|
8485
|
+
# @return [Types::ListPolicyEngineSummariesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
8486
|
+
#
|
|
8487
|
+
# * {Types::ListPolicyEngineSummariesResponse#policy_engines #policy_engines} => Array<Types::PolicyEngineSummary>
|
|
8488
|
+
# * {Types::ListPolicyEngineSummariesResponse#next_token #next_token} => String
|
|
8489
|
+
#
|
|
8490
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
8491
|
+
#
|
|
8492
|
+
# @example Request syntax with placeholder values
|
|
8493
|
+
#
|
|
8494
|
+
# resp = client.list_policy_engine_summaries({
|
|
8495
|
+
# next_token: "NextToken",
|
|
8496
|
+
# max_results: 1,
|
|
8497
|
+
# })
|
|
8498
|
+
#
|
|
8499
|
+
# @example Response structure
|
|
8500
|
+
#
|
|
8501
|
+
# resp.policy_engines #=> Array
|
|
8502
|
+
# resp.policy_engines[0].policy_engine_id #=> String
|
|
8503
|
+
# resp.policy_engines[0].name #=> String
|
|
8504
|
+
# resp.policy_engines[0].created_at #=> Time
|
|
8505
|
+
# resp.policy_engines[0].updated_at #=> Time
|
|
8506
|
+
# resp.policy_engines[0].policy_engine_arn #=> String
|
|
8507
|
+
# resp.policy_engines[0].status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
8508
|
+
# resp.policy_engines[0].encryption_key_arn #=> String
|
|
8509
|
+
# resp.next_token #=> String
|
|
8510
|
+
#
|
|
8511
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPolicyEngineSummaries AWS API Documentation
|
|
8512
|
+
#
|
|
8513
|
+
# @overload list_policy_engine_summaries(params = {})
|
|
8514
|
+
# @param [Hash] params ({})
|
|
8515
|
+
def list_policy_engine_summaries(params = {}, options = {})
|
|
8516
|
+
req = build_request(:list_policy_engine_summaries, params)
|
|
8517
|
+
req.send_request(options)
|
|
8518
|
+
end
|
|
8519
|
+
|
|
7512
8520
|
# Retrieves a list of policy engines within the AgentCore Policy system.
|
|
7513
8521
|
# This operation supports pagination to help administrators discover and
|
|
7514
8522
|
# manage policy engines across their account. Each policy engine serves
|
|
@@ -7547,14 +8555,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
7547
8555
|
# resp.policy_engines #=> Array
|
|
7548
8556
|
# resp.policy_engines[0].policy_engine_id #=> String
|
|
7549
8557
|
# resp.policy_engines[0].name #=> String
|
|
7550
|
-
# resp.policy_engines[0].description #=> String
|
|
7551
8558
|
# resp.policy_engines[0].created_at #=> Time
|
|
7552
8559
|
# resp.policy_engines[0].updated_at #=> Time
|
|
7553
8560
|
# resp.policy_engines[0].policy_engine_arn #=> String
|
|
7554
8561
|
# resp.policy_engines[0].status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
8562
|
+
# resp.policy_engines[0].encryption_key_arn #=> String
|
|
8563
|
+
# resp.policy_engines[0].description #=> String
|
|
7555
8564
|
# resp.policy_engines[0].status_reasons #=> Array
|
|
7556
8565
|
# resp.policy_engines[0].status_reasons[0] #=> String
|
|
7557
|
-
# resp.policy_engines[0].encryption_key_arn #=> String
|
|
7558
8566
|
# resp.next_token #=> String
|
|
7559
8567
|
#
|
|
7560
8568
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPolicyEngines AWS API Documentation
|
|
@@ -7633,12 +8641,75 @@ module Aws::BedrockAgentCoreControl
|
|
|
7633
8641
|
# resp.policy_generation_assets[0].findings[0].description #=> String
|
|
7634
8642
|
# resp.next_token #=> String
|
|
7635
8643
|
#
|
|
7636
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPolicyGenerationAssets AWS API Documentation
|
|
8644
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPolicyGenerationAssets AWS API Documentation
|
|
8645
|
+
#
|
|
8646
|
+
# @overload list_policy_generation_assets(params = {})
|
|
8647
|
+
# @param [Hash] params ({})
|
|
8648
|
+
def list_policy_generation_assets(params = {}, options = {})
|
|
8649
|
+
req = build_request(:list_policy_generation_assets, params)
|
|
8650
|
+
req.send_request(options)
|
|
8651
|
+
end
|
|
8652
|
+
|
|
8653
|
+
# Retrieves a paginated list of metadata-only policy generation
|
|
8654
|
+
# summaries within a policy engine without decrypting customer content.
|
|
8655
|
+
# This lightweight read operation returns resource identifiers, status,
|
|
8656
|
+
# timestamps, and findings for each policy generation, but does not
|
|
8657
|
+
# include status reasons. Because this operation does not require access
|
|
8658
|
+
# to the customer's KMS key, it is suitable for resource discovery,
|
|
8659
|
+
# inventory, and integration scenarios where only metadata is needed.
|
|
8660
|
+
#
|
|
8661
|
+
# @option params [String] :next_token
|
|
8662
|
+
# A pagination token returned from a previous
|
|
8663
|
+
# [ListPolicyGenerationSummaries][1] call. Use this token to retrieve
|
|
8664
|
+
# the next page of results when the response is paginated.
|
|
8665
|
+
#
|
|
8666
|
+
#
|
|
8667
|
+
#
|
|
8668
|
+
# [1]: https://docs.aws.amazon.com/bedrock-agentcore-control/latest/APIReference/API_ListPolicyGenerationSummaries.html
|
|
8669
|
+
#
|
|
8670
|
+
# @option params [Integer] :max_results
|
|
8671
|
+
# The maximum number of policy generation summaries to return in a
|
|
8672
|
+
# single response.
|
|
8673
|
+
#
|
|
8674
|
+
# @option params [required, String] :policy_engine_id
|
|
8675
|
+
# The identifier of the policy engine whose policy generation summaries
|
|
8676
|
+
# to retrieve.
|
|
8677
|
+
#
|
|
8678
|
+
# @return [Types::ListPolicyGenerationSummariesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
8679
|
+
#
|
|
8680
|
+
# * {Types::ListPolicyGenerationSummariesResponse#policy_generations #policy_generations} => Array<Types::PolicyGenerationSummary>
|
|
8681
|
+
# * {Types::ListPolicyGenerationSummariesResponse#next_token #next_token} => String
|
|
8682
|
+
#
|
|
8683
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
8684
|
+
#
|
|
8685
|
+
# @example Request syntax with placeholder values
|
|
8686
|
+
#
|
|
8687
|
+
# resp = client.list_policy_generation_summaries({
|
|
8688
|
+
# next_token: "NextToken",
|
|
8689
|
+
# max_results: 1,
|
|
8690
|
+
# policy_engine_id: "ResourceId", # required
|
|
8691
|
+
# })
|
|
8692
|
+
#
|
|
8693
|
+
# @example Response structure
|
|
8694
|
+
#
|
|
8695
|
+
# resp.policy_generations #=> Array
|
|
8696
|
+
# resp.policy_generations[0].policy_engine_id #=> String
|
|
8697
|
+
# resp.policy_generations[0].policy_generation_id #=> String
|
|
8698
|
+
# resp.policy_generations[0].name #=> String
|
|
8699
|
+
# resp.policy_generations[0].policy_generation_arn #=> String
|
|
8700
|
+
# resp.policy_generations[0].resource.arn #=> String
|
|
8701
|
+
# resp.policy_generations[0].created_at #=> Time
|
|
8702
|
+
# resp.policy_generations[0].updated_at #=> Time
|
|
8703
|
+
# resp.policy_generations[0].status #=> String, one of "GENERATING", "GENERATED", "GENERATE_FAILED", "DELETE_FAILED"
|
|
8704
|
+
# resp.policy_generations[0].findings #=> String
|
|
8705
|
+
# resp.next_token #=> String
|
|
8706
|
+
#
|
|
8707
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPolicyGenerationSummaries AWS API Documentation
|
|
7637
8708
|
#
|
|
7638
|
-
# @overload
|
|
8709
|
+
# @overload list_policy_generation_summaries(params = {})
|
|
7639
8710
|
# @param [Hash] params ({})
|
|
7640
|
-
def
|
|
7641
|
-
req = build_request(:
|
|
8711
|
+
def list_policy_generation_summaries(params = {}, options = {})
|
|
8712
|
+
req = build_request(:list_policy_generation_summaries, params)
|
|
7642
8713
|
req.send_request(options)
|
|
7643
8714
|
end
|
|
7644
8715
|
|
|
@@ -7684,9 +8755,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
7684
8755
|
# resp.policy_generations[0].created_at #=> Time
|
|
7685
8756
|
# resp.policy_generations[0].updated_at #=> Time
|
|
7686
8757
|
# resp.policy_generations[0].status #=> String, one of "GENERATING", "GENERATED", "GENERATE_FAILED", "DELETE_FAILED"
|
|
8758
|
+
# resp.policy_generations[0].findings #=> String
|
|
7687
8759
|
# resp.policy_generations[0].status_reasons #=> Array
|
|
7688
8760
|
# resp.policy_generations[0].status_reasons[0] #=> String
|
|
7689
|
-
# resp.policy_generations[0].findings #=> String
|
|
7690
8761
|
# resp.next_token #=> String
|
|
7691
8762
|
#
|
|
7692
8763
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPolicyGenerations AWS API Documentation
|
|
@@ -7698,8 +8769,77 @@ module Aws::BedrockAgentCoreControl
|
|
|
7698
8769
|
req.send_request(options)
|
|
7699
8770
|
end
|
|
7700
8771
|
|
|
8772
|
+
# Retrieves a paginated list of metadata-only policy summaries within a
|
|
8773
|
+
# policy engine without decrypting customer content. This lightweight
|
|
8774
|
+
# read operation returns resource identifiers, status, and timestamps
|
|
8775
|
+
# for each policy, but does not include policy definitions,
|
|
8776
|
+
# descriptions, or status reasons. Because this operation does not
|
|
8777
|
+
# require access to the customer's KMS key, it is suitable for resource
|
|
8778
|
+
# discovery, inventory, and integration scenarios where only metadata is
|
|
8779
|
+
# needed.
|
|
8780
|
+
#
|
|
8781
|
+
# @option params [String] :next_token
|
|
8782
|
+
# A pagination token returned from a previous [ListPolicySummaries][1]
|
|
8783
|
+
# call. Use this token to retrieve the next page of results when the
|
|
8784
|
+
# response is paginated.
|
|
8785
|
+
#
|
|
8786
|
+
#
|
|
8787
|
+
#
|
|
8788
|
+
# [1]: https://docs.aws.amazon.com/bedrock-agentcore-control/latest/APIReference/API_ListPolicySummaries.html
|
|
8789
|
+
#
|
|
8790
|
+
# @option params [Integer] :max_results
|
|
8791
|
+
# The maximum number of policy summaries to return in a single response.
|
|
8792
|
+
#
|
|
8793
|
+
# @option params [required, String] :policy_engine_id
|
|
8794
|
+
# The identifier of the policy engine whose policy summaries to
|
|
8795
|
+
# retrieve.
|
|
8796
|
+
#
|
|
8797
|
+
# @option params [String] :target_resource_scope
|
|
8798
|
+
# Optional filter to list policy summaries that apply to a specific
|
|
8799
|
+
# resource scope or resource type. This helps narrow down results to
|
|
8800
|
+
# those relevant for particular Amazon Web Services resources, agent
|
|
8801
|
+
# tools, or operational contexts within the policy engine ecosystem.
|
|
8802
|
+
#
|
|
8803
|
+
# @return [Types::ListPolicySummariesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
8804
|
+
#
|
|
8805
|
+
# * {Types::ListPolicySummariesResponse#policies #policies} => Array<Types::PolicySummary>
|
|
8806
|
+
# * {Types::ListPolicySummariesResponse#next_token #next_token} => String
|
|
8807
|
+
#
|
|
8808
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
8809
|
+
#
|
|
8810
|
+
# @example Request syntax with placeholder values
|
|
8811
|
+
#
|
|
8812
|
+
# resp = client.list_policy_summaries({
|
|
8813
|
+
# next_token: "NextToken",
|
|
8814
|
+
# max_results: 1,
|
|
8815
|
+
# policy_engine_id: "ResourceId", # required
|
|
8816
|
+
# target_resource_scope: "BedrockAgentcoreResourceArn",
|
|
8817
|
+
# })
|
|
8818
|
+
#
|
|
8819
|
+
# @example Response structure
|
|
8820
|
+
#
|
|
8821
|
+
# resp.policies #=> Array
|
|
8822
|
+
# resp.policies[0].policy_id #=> String
|
|
8823
|
+
# resp.policies[0].name #=> String
|
|
8824
|
+
# resp.policies[0].policy_engine_id #=> String
|
|
8825
|
+
# resp.policies[0].created_at #=> Time
|
|
8826
|
+
# resp.policies[0].updated_at #=> Time
|
|
8827
|
+
# resp.policies[0].policy_arn #=> String
|
|
8828
|
+
# resp.policies[0].status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
8829
|
+
# resp.next_token #=> String
|
|
8830
|
+
#
|
|
8831
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPolicySummaries AWS API Documentation
|
|
8832
|
+
#
|
|
8833
|
+
# @overload list_policy_summaries(params = {})
|
|
8834
|
+
# @param [Hash] params ({})
|
|
8835
|
+
def list_policy_summaries(params = {}, options = {})
|
|
8836
|
+
req = build_request(:list_policy_summaries, params)
|
|
8837
|
+
req.send_request(options)
|
|
8838
|
+
end
|
|
8839
|
+
|
|
7701
8840
|
# Lists all registries in the account. You can optionally filter results
|
|
7702
|
-
# by status using the `status` parameter
|
|
8841
|
+
# by status using the `status` parameter, or by authorizer type using
|
|
8842
|
+
# the `authorizerType` parameter.
|
|
7703
8843
|
#
|
|
7704
8844
|
# @option params [Integer] :max_results
|
|
7705
8845
|
# The maximum number of results to return in the response. If the total
|
|
@@ -7718,6 +8858,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
7718
8858
|
# `CREATING`, `READY`, `UPDATING`, `CREATE_FAILED`, `UPDATE_FAILED`,
|
|
7719
8859
|
# `DELETING`, and `DELETE_FAILED`.
|
|
7720
8860
|
#
|
|
8861
|
+
# @option params [String] :authorizer_type
|
|
8862
|
+
# Filter registries by their authorizer type. Possible values are
|
|
8863
|
+
# `CUSTOM_JWT` and `AWS_IAM`. For more information about authorizer
|
|
8864
|
+
# types, see the `RegistryAuthorizerType` enum.
|
|
8865
|
+
#
|
|
7721
8866
|
# @return [Types::ListRegistriesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
7722
8867
|
#
|
|
7723
8868
|
# * {Types::ListRegistriesResponse#registries #registries} => Array<Types::RegistrySummary>
|
|
@@ -7731,6 +8876,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
7731
8876
|
# max_results: 1,
|
|
7732
8877
|
# next_token: "NextToken",
|
|
7733
8878
|
# status: "CREATING", # accepts CREATING, READY, UPDATING, CREATE_FAILED, UPDATE_FAILED, DELETING, DELETE_FAILED
|
|
8879
|
+
# authorizer_type: "CUSTOM_JWT", # accepts CUSTOM_JWT, AWS_IAM
|
|
7734
8880
|
# })
|
|
7735
8881
|
#
|
|
7736
8882
|
# @example Response structure
|
|
@@ -8041,8 +9187,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
8041
9187
|
# * {Types::StartPolicyGenerationResponse#created_at #created_at} => Time
|
|
8042
9188
|
# * {Types::StartPolicyGenerationResponse#updated_at #updated_at} => Time
|
|
8043
9189
|
# * {Types::StartPolicyGenerationResponse#status #status} => String
|
|
8044
|
-
# * {Types::StartPolicyGenerationResponse#status_reasons #status_reasons} => Array<String>
|
|
8045
9190
|
# * {Types::StartPolicyGenerationResponse#findings #findings} => String
|
|
9191
|
+
# * {Types::StartPolicyGenerationResponse#status_reasons #status_reasons} => Array<String>
|
|
8046
9192
|
#
|
|
8047
9193
|
# @example Request syntax with placeholder values
|
|
8048
9194
|
#
|
|
@@ -8068,9 +9214,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
8068
9214
|
# resp.created_at #=> Time
|
|
8069
9215
|
# resp.updated_at #=> Time
|
|
8070
9216
|
# resp.status #=> String, one of "GENERATING", "GENERATED", "GENERATE_FAILED", "DELETE_FAILED"
|
|
9217
|
+
# resp.findings #=> String
|
|
8071
9218
|
# resp.status_reasons #=> Array
|
|
8072
9219
|
# resp.status_reasons[0] #=> String
|
|
8073
|
-
# resp.findings #=> String
|
|
8074
9220
|
#
|
|
8075
9221
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/StartPolicyGeneration AWS API Documentation
|
|
8076
9222
|
#
|
|
@@ -8414,6 +9560,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
8414
9560
|
# network_mode_config: {
|
|
8415
9561
|
# security_groups: ["SecurityGroupId"], # required
|
|
8416
9562
|
# subnets: ["SubnetId"], # required
|
|
9563
|
+
# require_service_s3_endpoint: false,
|
|
8417
9564
|
# },
|
|
8418
9565
|
# },
|
|
8419
9566
|
# description: "Description",
|
|
@@ -9651,6 +10798,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
9651
10798
|
# network_mode_config: {
|
|
9652
10799
|
# security_groups: ["SecurityGroupId"], # required
|
|
9653
10800
|
# subnets: ["SubnetId"], # required
|
|
10801
|
+
# require_service_s3_endpoint: false,
|
|
9654
10802
|
# },
|
|
9655
10803
|
# },
|
|
9656
10804
|
# filesystem_configurations: [
|
|
@@ -9911,6 +11059,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
9911
11059
|
# resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.security_groups[0] #=> String
|
|
9912
11060
|
# resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.subnets #=> Array
|
|
9913
11061
|
# resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.subnets[0] #=> String
|
|
11062
|
+
# resp.harness.environment.agent_core_runtime_environment.network_configuration.network_mode_config.require_service_s3_endpoint #=> Boolean
|
|
9914
11063
|
# resp.harness.environment.agent_core_runtime_environment.filesystem_configurations #=> Array
|
|
9915
11064
|
# resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].session_storage.mount_path #=> String
|
|
9916
11065
|
# resp.harness.environment.agent_core_runtime_environment.filesystem_configurations[0].s3_files_access_point.access_point_arn #=> String
|
|
@@ -10980,6 +12129,286 @@ module Aws::BedrockAgentCoreControl
|
|
|
10980
12129
|
req.send_request(options)
|
|
10981
12130
|
end
|
|
10982
12131
|
|
|
12132
|
+
# Updates an existing payment connector. This operation uses PATCH
|
|
12133
|
+
# semantics, so you only need to specify the fields you want to change.
|
|
12134
|
+
#
|
|
12135
|
+
# @option params [required, String] :payment_manager_id
|
|
12136
|
+
# The unique identifier of the parent payment manager.
|
|
12137
|
+
#
|
|
12138
|
+
# @option params [required, String] :payment_connector_id
|
|
12139
|
+
# The unique identifier of the payment connector to update.
|
|
12140
|
+
#
|
|
12141
|
+
# @option params [String] :description
|
|
12142
|
+
# The updated description of the payment connector.
|
|
12143
|
+
#
|
|
12144
|
+
# @option params [String] :type
|
|
12145
|
+
# The updated type of the payment connector.
|
|
12146
|
+
#
|
|
12147
|
+
# @option params [Array<Types::CredentialsProviderConfiguration>] :credential_provider_configurations
|
|
12148
|
+
# The updated credential provider configurations for the payment
|
|
12149
|
+
# connector.
|
|
12150
|
+
#
|
|
12151
|
+
# @option params [String] :client_token
|
|
12152
|
+
# A unique, case-sensitive identifier to ensure that the API request
|
|
12153
|
+
# completes no more than one time. If you don't specify this field, a
|
|
12154
|
+
# value is randomly generated for you. If this token matches a previous
|
|
12155
|
+
# request, the service ignores the request, but doesn't return an
|
|
12156
|
+
# error. For more information, see [Ensuring idempotency][1].
|
|
12157
|
+
#
|
|
12158
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
12159
|
+
# not need to pass this option.**
|
|
12160
|
+
#
|
|
12161
|
+
#
|
|
12162
|
+
#
|
|
12163
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
|
|
12164
|
+
#
|
|
12165
|
+
# @return [Types::UpdatePaymentConnectorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
12166
|
+
#
|
|
12167
|
+
# * {Types::UpdatePaymentConnectorResponse#payment_connector_id #payment_connector_id} => String
|
|
12168
|
+
# * {Types::UpdatePaymentConnectorResponse#payment_manager_id #payment_manager_id} => String
|
|
12169
|
+
# * {Types::UpdatePaymentConnectorResponse#name #name} => String
|
|
12170
|
+
# * {Types::UpdatePaymentConnectorResponse#type #type} => String
|
|
12171
|
+
# * {Types::UpdatePaymentConnectorResponse#credential_provider_configurations #credential_provider_configurations} => Array<Types::CredentialsProviderConfiguration>
|
|
12172
|
+
# * {Types::UpdatePaymentConnectorResponse#last_updated_at #last_updated_at} => Time
|
|
12173
|
+
# * {Types::UpdatePaymentConnectorResponse#status #status} => String
|
|
12174
|
+
#
|
|
12175
|
+
# @example Request syntax with placeholder values
|
|
12176
|
+
#
|
|
12177
|
+
# resp = client.update_payment_connector({
|
|
12178
|
+
# payment_manager_id: "PaymentManagerId", # required
|
|
12179
|
+
# payment_connector_id: "PaymentConnectorId", # required
|
|
12180
|
+
# description: "PaymentsDescription",
|
|
12181
|
+
# type: "CoinbaseCDP", # accepts CoinbaseCDP, StripePrivy
|
|
12182
|
+
# credential_provider_configurations: [
|
|
12183
|
+
# {
|
|
12184
|
+
# coinbase_cdp: {
|
|
12185
|
+
# credential_provider_arn: "PaymentCredentialProviderArn", # required
|
|
12186
|
+
# },
|
|
12187
|
+
# stripe_privy: {
|
|
12188
|
+
# credential_provider_arn: "PaymentCredentialProviderArn", # required
|
|
12189
|
+
# },
|
|
12190
|
+
# },
|
|
12191
|
+
# ],
|
|
12192
|
+
# client_token: "ClientToken",
|
|
12193
|
+
# })
|
|
12194
|
+
#
|
|
12195
|
+
# @example Response structure
|
|
12196
|
+
#
|
|
12197
|
+
# resp.payment_connector_id #=> String
|
|
12198
|
+
# resp.payment_manager_id #=> String
|
|
12199
|
+
# resp.name #=> String
|
|
12200
|
+
# resp.type #=> String, one of "CoinbaseCDP", "StripePrivy"
|
|
12201
|
+
# resp.credential_provider_configurations #=> Array
|
|
12202
|
+
# resp.credential_provider_configurations[0].coinbase_cdp.credential_provider_arn #=> String
|
|
12203
|
+
# resp.credential_provider_configurations[0].stripe_privy.credential_provider_arn #=> String
|
|
12204
|
+
# resp.last_updated_at #=> Time
|
|
12205
|
+
# resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
12206
|
+
#
|
|
12207
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatePaymentConnector AWS API Documentation
|
|
12208
|
+
#
|
|
12209
|
+
# @overload update_payment_connector(params = {})
|
|
12210
|
+
# @param [Hash] params ({})
|
|
12211
|
+
def update_payment_connector(params = {}, options = {})
|
|
12212
|
+
req = build_request(:update_payment_connector, params)
|
|
12213
|
+
req.send_request(options)
|
|
12214
|
+
end
|
|
12215
|
+
|
|
12216
|
+
# Updates an existing payment credential provider with new
|
|
12217
|
+
# authentication credentials.
|
|
12218
|
+
#
|
|
12219
|
+
# @option params [required, String] :name
|
|
12220
|
+
# The name of the payment credential provider to update.
|
|
12221
|
+
#
|
|
12222
|
+
# @option params [required, String] :credential_provider_vendor
|
|
12223
|
+
# The vendor type for the payment credential provider (e.g.,
|
|
12224
|
+
# CoinbaseCDP, StripePrivy).
|
|
12225
|
+
#
|
|
12226
|
+
# @option params [required, Types::PaymentProviderConfigurationInput] :provider_configuration_input
|
|
12227
|
+
# Configuration specific to the vendor, including API credentials.
|
|
12228
|
+
#
|
|
12229
|
+
# @return [Types::UpdatePaymentCredentialProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
12230
|
+
#
|
|
12231
|
+
# * {Types::UpdatePaymentCredentialProviderResponse#name #name} => String
|
|
12232
|
+
# * {Types::UpdatePaymentCredentialProviderResponse#credential_provider_vendor #credential_provider_vendor} => String
|
|
12233
|
+
# * {Types::UpdatePaymentCredentialProviderResponse#credential_provider_arn #credential_provider_arn} => String
|
|
12234
|
+
# * {Types::UpdatePaymentCredentialProviderResponse#provider_configuration_output #provider_configuration_output} => Types::PaymentProviderConfigurationOutput
|
|
12235
|
+
# * {Types::UpdatePaymentCredentialProviderResponse#created_time #created_time} => Time
|
|
12236
|
+
# * {Types::UpdatePaymentCredentialProviderResponse#last_updated_time #last_updated_time} => Time
|
|
12237
|
+
#
|
|
12238
|
+
# @example Request syntax with placeholder values
|
|
12239
|
+
#
|
|
12240
|
+
# resp = client.update_payment_credential_provider({
|
|
12241
|
+
# name: "CredentialProviderName", # required
|
|
12242
|
+
# credential_provider_vendor: "CoinbaseCDP", # required, accepts CoinbaseCDP, StripePrivy
|
|
12243
|
+
# provider_configuration_input: { # required
|
|
12244
|
+
# coinbase_cdp_configuration: {
|
|
12245
|
+
# api_key_id: "CoinbaseCdpApiKeyIdType", # required
|
|
12246
|
+
# api_key_secret: "CoinbaseCdpApiKeySecretType", # required
|
|
12247
|
+
# wallet_secret: "CoinbaseCdpWalletSecretType", # required
|
|
12248
|
+
# },
|
|
12249
|
+
# stripe_privy_configuration: {
|
|
12250
|
+
# app_id: "StripePrivyAppIdType", # required
|
|
12251
|
+
# app_secret: "StripePrivyAppSecretType", # required
|
|
12252
|
+
# authorization_private_key: "StripePrivyAuthorizationPrivateKeyType", # required
|
|
12253
|
+
# authorization_id: "StripePrivyAuthorizationIdType", # required
|
|
12254
|
+
# },
|
|
12255
|
+
# },
|
|
12256
|
+
# })
|
|
12257
|
+
#
|
|
12258
|
+
# @example Response structure
|
|
12259
|
+
#
|
|
12260
|
+
# resp.name #=> String
|
|
12261
|
+
# resp.credential_provider_vendor #=> String, one of "CoinbaseCDP", "StripePrivy"
|
|
12262
|
+
# resp.credential_provider_arn #=> String
|
|
12263
|
+
# resp.provider_configuration_output.coinbase_cdp_configuration.api_key_id #=> String
|
|
12264
|
+
# resp.provider_configuration_output.coinbase_cdp_configuration.api_key_secret_arn.secret_arn #=> String
|
|
12265
|
+
# resp.provider_configuration_output.coinbase_cdp_configuration.wallet_secret_arn.secret_arn #=> String
|
|
12266
|
+
# resp.provider_configuration_output.stripe_privy_configuration.app_id #=> String
|
|
12267
|
+
# resp.provider_configuration_output.stripe_privy_configuration.app_secret_arn.secret_arn #=> String
|
|
12268
|
+
# resp.provider_configuration_output.stripe_privy_configuration.authorization_private_key_arn.secret_arn #=> String
|
|
12269
|
+
# resp.provider_configuration_output.stripe_privy_configuration.authorization_id #=> String
|
|
12270
|
+
# resp.created_time #=> Time
|
|
12271
|
+
# resp.last_updated_time #=> Time
|
|
12272
|
+
#
|
|
12273
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatePaymentCredentialProvider AWS API Documentation
|
|
12274
|
+
#
|
|
12275
|
+
# @overload update_payment_credential_provider(params = {})
|
|
12276
|
+
# @param [Hash] params ({})
|
|
12277
|
+
def update_payment_credential_provider(params = {}, options = {})
|
|
12278
|
+
req = build_request(:update_payment_credential_provider, params)
|
|
12279
|
+
req.send_request(options)
|
|
12280
|
+
end
|
|
12281
|
+
|
|
12282
|
+
# Updates an existing payment manager. This operation uses PATCH
|
|
12283
|
+
# semantics, so you only need to specify the fields you want to change.
|
|
12284
|
+
#
|
|
12285
|
+
# @option params [required, String] :payment_manager_id
|
|
12286
|
+
# The unique identifier of the payment manager to update.
|
|
12287
|
+
#
|
|
12288
|
+
# @option params [String] :description
|
|
12289
|
+
# The updated description of the payment manager.
|
|
12290
|
+
#
|
|
12291
|
+
# @option params [String] :authorizer_type
|
|
12292
|
+
# The updated authorizer type for the payment manager.
|
|
12293
|
+
#
|
|
12294
|
+
# @option params [Types::AuthorizerConfiguration] :authorizer_configuration
|
|
12295
|
+
# The updated authorizer configuration for the payment manager.
|
|
12296
|
+
#
|
|
12297
|
+
# @option params [String] :role_arn
|
|
12298
|
+
# The updated Amazon Resource Name (ARN) of the IAM role for the payment
|
|
12299
|
+
# manager.
|
|
12300
|
+
#
|
|
12301
|
+
# @option params [String] :client_token
|
|
12302
|
+
# A unique, case-sensitive identifier to ensure that the API request
|
|
12303
|
+
# completes no more than one time. If you don't specify this field, a
|
|
12304
|
+
# value is randomly generated for you. If this token matches a previous
|
|
12305
|
+
# request, the service ignores the request, but doesn't return an
|
|
12306
|
+
# error. For more information, see [Ensuring idempotency][1].
|
|
12307
|
+
#
|
|
12308
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
12309
|
+
# not need to pass this option.**
|
|
12310
|
+
#
|
|
12311
|
+
#
|
|
12312
|
+
#
|
|
12313
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
|
|
12314
|
+
#
|
|
12315
|
+
# @return [Types::UpdatePaymentManagerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
12316
|
+
#
|
|
12317
|
+
# * {Types::UpdatePaymentManagerResponse#payment_manager_arn #payment_manager_arn} => String
|
|
12318
|
+
# * {Types::UpdatePaymentManagerResponse#payment_manager_id #payment_manager_id} => String
|
|
12319
|
+
# * {Types::UpdatePaymentManagerResponse#name #name} => String
|
|
12320
|
+
# * {Types::UpdatePaymentManagerResponse#authorizer_type #authorizer_type} => String
|
|
12321
|
+
# * {Types::UpdatePaymentManagerResponse#role_arn #role_arn} => String
|
|
12322
|
+
# * {Types::UpdatePaymentManagerResponse#workload_identity_details #workload_identity_details} => Types::WorkloadIdentityDetails
|
|
12323
|
+
# * {Types::UpdatePaymentManagerResponse#last_updated_at #last_updated_at} => Time
|
|
12324
|
+
# * {Types::UpdatePaymentManagerResponse#status #status} => String
|
|
12325
|
+
#
|
|
12326
|
+
# @example Request syntax with placeholder values
|
|
12327
|
+
#
|
|
12328
|
+
# resp = client.update_payment_manager({
|
|
12329
|
+
# payment_manager_id: "PaymentManagerId", # required
|
|
12330
|
+
# description: "PaymentsDescription",
|
|
12331
|
+
# authorizer_type: "CUSTOM_JWT", # accepts CUSTOM_JWT, AWS_IAM
|
|
12332
|
+
# authorizer_configuration: {
|
|
12333
|
+
# custom_jwt_authorizer: {
|
|
12334
|
+
# discovery_url: "DiscoveryUrl", # required
|
|
12335
|
+
# allowed_audience: ["AllowedAudience"],
|
|
12336
|
+
# allowed_clients: ["AllowedClient"],
|
|
12337
|
+
# allowed_scopes: ["AllowedScopeType"],
|
|
12338
|
+
# custom_claims: [
|
|
12339
|
+
# {
|
|
12340
|
+
# inbound_token_claim_name: "InboundTokenClaimNameType", # required
|
|
12341
|
+
# inbound_token_claim_value_type: "STRING", # required, accepts STRING, STRING_ARRAY
|
|
12342
|
+
# authorizing_claim_match_value: { # required
|
|
12343
|
+
# claim_match_value: { # required
|
|
12344
|
+
# match_value_string: "MatchValueString",
|
|
12345
|
+
# match_value_string_list: ["MatchValueString"],
|
|
12346
|
+
# },
|
|
12347
|
+
# claim_match_operator: "EQUALS", # required, accepts EQUALS, CONTAINS, CONTAINS_ANY
|
|
12348
|
+
# },
|
|
12349
|
+
# },
|
|
12350
|
+
# ],
|
|
12351
|
+
# private_endpoint: {
|
|
12352
|
+
# self_managed_lattice_resource: {
|
|
12353
|
+
# resource_configuration_identifier: "ResourceConfigurationIdentifier",
|
|
12354
|
+
# },
|
|
12355
|
+
# managed_vpc_resource: {
|
|
12356
|
+
# vpc_identifier: "VpcIdentifier", # required
|
|
12357
|
+
# subnet_ids: ["SubnetId"], # required
|
|
12358
|
+
# endpoint_ip_address_type: "IPV4", # required, accepts IPV4, IPV6
|
|
12359
|
+
# security_group_ids: ["SecurityGroupIdentifier"],
|
|
12360
|
+
# tags: {
|
|
12361
|
+
# "TagKey" => "TagValue",
|
|
12362
|
+
# },
|
|
12363
|
+
# routing_domain: "RoutingDomain",
|
|
12364
|
+
# },
|
|
12365
|
+
# },
|
|
12366
|
+
# private_endpoint_overrides: [
|
|
12367
|
+
# {
|
|
12368
|
+
# domain: "PrivateEndpointOverrideDomain", # required
|
|
12369
|
+
# private_endpoint: { # required
|
|
12370
|
+
# self_managed_lattice_resource: {
|
|
12371
|
+
# resource_configuration_identifier: "ResourceConfigurationIdentifier",
|
|
12372
|
+
# },
|
|
12373
|
+
# managed_vpc_resource: {
|
|
12374
|
+
# vpc_identifier: "VpcIdentifier", # required
|
|
12375
|
+
# subnet_ids: ["SubnetId"], # required
|
|
12376
|
+
# endpoint_ip_address_type: "IPV4", # required, accepts IPV4, IPV6
|
|
12377
|
+
# security_group_ids: ["SecurityGroupIdentifier"],
|
|
12378
|
+
# tags: {
|
|
12379
|
+
# "TagKey" => "TagValue",
|
|
12380
|
+
# },
|
|
12381
|
+
# routing_domain: "RoutingDomain",
|
|
12382
|
+
# },
|
|
12383
|
+
# },
|
|
12384
|
+
# },
|
|
12385
|
+
# ],
|
|
12386
|
+
# },
|
|
12387
|
+
# },
|
|
12388
|
+
# role_arn: "RoleArn",
|
|
12389
|
+
# client_token: "ClientToken",
|
|
12390
|
+
# })
|
|
12391
|
+
#
|
|
12392
|
+
# @example Response structure
|
|
12393
|
+
#
|
|
12394
|
+
# resp.payment_manager_arn #=> String
|
|
12395
|
+
# resp.payment_manager_id #=> String
|
|
12396
|
+
# resp.name #=> String
|
|
12397
|
+
# resp.authorizer_type #=> String, one of "CUSTOM_JWT", "AWS_IAM"
|
|
12398
|
+
# resp.role_arn #=> String
|
|
12399
|
+
# resp.workload_identity_details.workload_identity_arn #=> String
|
|
12400
|
+
# resp.last_updated_at #=> Time
|
|
12401
|
+
# resp.status #=> String, one of "CREATING", "UPDATING", "DELETING", "READY", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
12402
|
+
#
|
|
12403
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatePaymentManager AWS API Documentation
|
|
12404
|
+
#
|
|
12405
|
+
# @overload update_payment_manager(params = {})
|
|
12406
|
+
# @param [Hash] params ({})
|
|
12407
|
+
def update_payment_manager(params = {}, options = {})
|
|
12408
|
+
req = build_request(:update_payment_manager, params)
|
|
12409
|
+
req.send_request(options)
|
|
12410
|
+
end
|
|
12411
|
+
|
|
10983
12412
|
# Updates an existing policy within the AgentCore Policy system. This
|
|
10984
12413
|
# operation allows modification of the policy description and definition
|
|
10985
12414
|
# while maintaining the policy's identity. The updated policy is
|
|
@@ -11021,12 +12450,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
11021
12450
|
# * {Types::UpdatePolicyResponse#policy_id #policy_id} => String
|
|
11022
12451
|
# * {Types::UpdatePolicyResponse#name #name} => String
|
|
11023
12452
|
# * {Types::UpdatePolicyResponse#policy_engine_id #policy_engine_id} => String
|
|
11024
|
-
# * {Types::UpdatePolicyResponse#definition #definition} => Types::PolicyDefinition
|
|
11025
|
-
# * {Types::UpdatePolicyResponse#description #description} => String
|
|
11026
12453
|
# * {Types::UpdatePolicyResponse#created_at #created_at} => Time
|
|
11027
12454
|
# * {Types::UpdatePolicyResponse#updated_at #updated_at} => Time
|
|
11028
12455
|
# * {Types::UpdatePolicyResponse#policy_arn #policy_arn} => String
|
|
11029
12456
|
# * {Types::UpdatePolicyResponse#status #status} => String
|
|
12457
|
+
# * {Types::UpdatePolicyResponse#definition #definition} => Types::PolicyDefinition
|
|
12458
|
+
# * {Types::UpdatePolicyResponse#description #description} => String
|
|
11030
12459
|
# * {Types::UpdatePolicyResponse#status_reasons #status_reasons} => Array<String>
|
|
11031
12460
|
#
|
|
11032
12461
|
# @example Request syntax with placeholder values
|
|
@@ -11054,14 +12483,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
11054
12483
|
# resp.policy_id #=> String
|
|
11055
12484
|
# resp.name #=> String
|
|
11056
12485
|
# resp.policy_engine_id #=> String
|
|
11057
|
-
# resp.definition.cedar.statement #=> String
|
|
11058
|
-
# resp.definition.policy_generation.policy_generation_id #=> String
|
|
11059
|
-
# resp.definition.policy_generation.policy_generation_asset_id #=> String
|
|
11060
|
-
# resp.description #=> String
|
|
11061
12486
|
# resp.created_at #=> Time
|
|
11062
12487
|
# resp.updated_at #=> Time
|
|
11063
12488
|
# resp.policy_arn #=> String
|
|
11064
12489
|
# resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
12490
|
+
# resp.definition.cedar.statement #=> String
|
|
12491
|
+
# resp.definition.policy_generation.policy_generation_id #=> String
|
|
12492
|
+
# resp.definition.policy_generation.policy_generation_asset_id #=> String
|
|
12493
|
+
# resp.description #=> String
|
|
11065
12494
|
# resp.status_reasons #=> Array
|
|
11066
12495
|
# resp.status_reasons[0] #=> String
|
|
11067
12496
|
#
|
|
@@ -11090,13 +12519,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
11090
12519
|
#
|
|
11091
12520
|
# * {Types::UpdatePolicyEngineResponse#policy_engine_id #policy_engine_id} => String
|
|
11092
12521
|
# * {Types::UpdatePolicyEngineResponse#name #name} => String
|
|
11093
|
-
# * {Types::UpdatePolicyEngineResponse#description #description} => String
|
|
11094
12522
|
# * {Types::UpdatePolicyEngineResponse#created_at #created_at} => Time
|
|
11095
12523
|
# * {Types::UpdatePolicyEngineResponse#updated_at #updated_at} => Time
|
|
11096
12524
|
# * {Types::UpdatePolicyEngineResponse#policy_engine_arn #policy_engine_arn} => String
|
|
11097
12525
|
# * {Types::UpdatePolicyEngineResponse#status #status} => String
|
|
11098
|
-
# * {Types::UpdatePolicyEngineResponse#status_reasons #status_reasons} => Array<String>
|
|
11099
12526
|
# * {Types::UpdatePolicyEngineResponse#encryption_key_arn #encryption_key_arn} => String
|
|
12527
|
+
# * {Types::UpdatePolicyEngineResponse#description #description} => String
|
|
12528
|
+
# * {Types::UpdatePolicyEngineResponse#status_reasons #status_reasons} => Array<String>
|
|
11100
12529
|
#
|
|
11101
12530
|
# @example Request syntax with placeholder values
|
|
11102
12531
|
#
|
|
@@ -11111,14 +12540,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
11111
12540
|
#
|
|
11112
12541
|
# resp.policy_engine_id #=> String
|
|
11113
12542
|
# resp.name #=> String
|
|
11114
|
-
# resp.description #=> String
|
|
11115
12543
|
# resp.created_at #=> Time
|
|
11116
12544
|
# resp.updated_at #=> Time
|
|
11117
12545
|
# resp.policy_engine_arn #=> String
|
|
11118
12546
|
# resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED"
|
|
12547
|
+
# resp.encryption_key_arn #=> String
|
|
12548
|
+
# resp.description #=> String
|
|
11119
12549
|
# resp.status_reasons #=> Array
|
|
11120
12550
|
# resp.status_reasons[0] #=> String
|
|
11121
|
-
# resp.encryption_key_arn #=> String
|
|
11122
12551
|
#
|
|
11123
12552
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatePolicyEngine AWS API Documentation
|
|
11124
12553
|
#
|
|
@@ -11616,7 +13045,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
11616
13045
|
tracer: tracer
|
|
11617
13046
|
)
|
|
11618
13047
|
context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
|
|
11619
|
-
context[:gem_version] = '1.
|
|
13048
|
+
context[:gem_version] = '1.46.0'
|
|
11620
13049
|
Seahorse::Client::Request.new(handlers, context)
|
|
11621
13050
|
end
|
|
11622
13051
|
|