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
data/sig/client.rbs
CHANGED
|
@@ -111,7 +111,8 @@ module Aws
|
|
|
111
111
|
network_mode: ("PUBLIC" | "VPC"),
|
|
112
112
|
network_mode_config: {
|
|
113
113
|
security_groups: Array[::String],
|
|
114
|
-
subnets: Array[::String]
|
|
114
|
+
subnets: Array[::String],
|
|
115
|
+
require_service_s3_endpoint: bool?
|
|
115
116
|
}?
|
|
116
117
|
},
|
|
117
118
|
?client_token: ::String,
|
|
@@ -249,7 +250,8 @@ module Aws
|
|
|
249
250
|
network_mode: ("PUBLIC" | "VPC"),
|
|
250
251
|
vpc_config: {
|
|
251
252
|
security_groups: Array[::String],
|
|
252
|
-
subnets: Array[::String]
|
|
253
|
+
subnets: Array[::String],
|
|
254
|
+
require_service_s3_endpoint: bool?
|
|
253
255
|
}?
|
|
254
256
|
},
|
|
255
257
|
?recording: {
|
|
@@ -321,7 +323,8 @@ module Aws
|
|
|
321
323
|
network_mode: ("PUBLIC" | "SANDBOX" | "VPC"),
|
|
322
324
|
vpc_config: {
|
|
323
325
|
security_groups: Array[::String],
|
|
324
|
-
subnets: Array[::String]
|
|
326
|
+
subnets: Array[::String],
|
|
327
|
+
require_service_s3_endpoint: bool?
|
|
325
328
|
}?
|
|
326
329
|
},
|
|
327
330
|
?certificates: Array[
|
|
@@ -791,7 +794,8 @@ module Aws
|
|
|
791
794
|
network_mode: ("PUBLIC" | "VPC"),
|
|
792
795
|
network_mode_config: {
|
|
793
796
|
security_groups: Array[::String],
|
|
794
|
-
subnets: Array[::String]
|
|
797
|
+
subnets: Array[::String],
|
|
798
|
+
require_service_s3_endpoint: bool?
|
|
795
799
|
}?
|
|
796
800
|
}?,
|
|
797
801
|
filesystem_configurations: Array[
|
|
@@ -1461,17 +1465,151 @@ module Aws
|
|
|
1461
1465
|
) -> _CreateOnlineEvaluationConfigResponseSuccess
|
|
1462
1466
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateOnlineEvaluationConfigResponseSuccess
|
|
1463
1467
|
|
|
1468
|
+
interface _CreatePaymentConnectorResponseSuccess
|
|
1469
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreatePaymentConnectorResponse]
|
|
1470
|
+
def payment_connector_id: () -> ::String
|
|
1471
|
+
def payment_manager_id: () -> ::String
|
|
1472
|
+
def name: () -> ::String
|
|
1473
|
+
def type: () -> ("CoinbaseCDP" | "StripePrivy")
|
|
1474
|
+
def credential_provider_configurations: () -> ::Array[Types::CredentialsProviderConfiguration]
|
|
1475
|
+
def created_at: () -> ::Time
|
|
1476
|
+
def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
1477
|
+
end
|
|
1478
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_payment_connector-instance_method
|
|
1479
|
+
def create_payment_connector: (
|
|
1480
|
+
payment_manager_id: ::String,
|
|
1481
|
+
name: ::String,
|
|
1482
|
+
?description: ::String,
|
|
1483
|
+
type: ("CoinbaseCDP" | "StripePrivy"),
|
|
1484
|
+
credential_provider_configurations: Array[
|
|
1485
|
+
{
|
|
1486
|
+
coinbase_cdp: {
|
|
1487
|
+
credential_provider_arn: ::String
|
|
1488
|
+
}?,
|
|
1489
|
+
stripe_privy: {
|
|
1490
|
+
credential_provider_arn: ::String
|
|
1491
|
+
}?
|
|
1492
|
+
},
|
|
1493
|
+
],
|
|
1494
|
+
?client_token: ::String
|
|
1495
|
+
) -> _CreatePaymentConnectorResponseSuccess
|
|
1496
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePaymentConnectorResponseSuccess
|
|
1497
|
+
|
|
1498
|
+
interface _CreatePaymentCredentialProviderResponseSuccess
|
|
1499
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreatePaymentCredentialProviderResponse]
|
|
1500
|
+
def name: () -> ::String
|
|
1501
|
+
def credential_provider_vendor: () -> ("CoinbaseCDP" | "StripePrivy")
|
|
1502
|
+
def credential_provider_arn: () -> ::String
|
|
1503
|
+
def provider_configuration_output: () -> Types::PaymentProviderConfigurationOutput
|
|
1504
|
+
end
|
|
1505
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_payment_credential_provider-instance_method
|
|
1506
|
+
def create_payment_credential_provider: (
|
|
1507
|
+
name: ::String,
|
|
1508
|
+
credential_provider_vendor: ("CoinbaseCDP" | "StripePrivy"),
|
|
1509
|
+
provider_configuration_input: {
|
|
1510
|
+
coinbase_cdp_configuration: {
|
|
1511
|
+
api_key_id: ::String,
|
|
1512
|
+
api_key_secret: ::String,
|
|
1513
|
+
wallet_secret: ::String
|
|
1514
|
+
}?,
|
|
1515
|
+
stripe_privy_configuration: {
|
|
1516
|
+
app_id: ::String,
|
|
1517
|
+
app_secret: ::String,
|
|
1518
|
+
authorization_private_key: ::String,
|
|
1519
|
+
authorization_id: ::String
|
|
1520
|
+
}?
|
|
1521
|
+
},
|
|
1522
|
+
?tags: Hash[::String, ::String]
|
|
1523
|
+
) -> _CreatePaymentCredentialProviderResponseSuccess
|
|
1524
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePaymentCredentialProviderResponseSuccess
|
|
1525
|
+
|
|
1526
|
+
interface _CreatePaymentManagerResponseSuccess
|
|
1527
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreatePaymentManagerResponse]
|
|
1528
|
+
def payment_manager_arn: () -> ::String
|
|
1529
|
+
def payment_manager_id: () -> ::String
|
|
1530
|
+
def name: () -> ::String
|
|
1531
|
+
def authorizer_type: () -> ("CUSTOM_JWT" | "AWS_IAM")
|
|
1532
|
+
def authorizer_configuration: () -> Types::AuthorizerConfiguration
|
|
1533
|
+
def role_arn: () -> ::String
|
|
1534
|
+
def workload_identity_details: () -> Types::WorkloadIdentityDetails
|
|
1535
|
+
def created_at: () -> ::Time
|
|
1536
|
+
def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
1537
|
+
def tags: () -> ::Hash[::String, ::String]
|
|
1538
|
+
end
|
|
1539
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_payment_manager-instance_method
|
|
1540
|
+
def create_payment_manager: (
|
|
1541
|
+
name: ::String,
|
|
1542
|
+
?description: ::String,
|
|
1543
|
+
authorizer_type: ("CUSTOM_JWT" | "AWS_IAM"),
|
|
1544
|
+
?authorizer_configuration: {
|
|
1545
|
+
custom_jwt_authorizer: {
|
|
1546
|
+
discovery_url: ::String,
|
|
1547
|
+
allowed_audience: Array[::String]?,
|
|
1548
|
+
allowed_clients: Array[::String]?,
|
|
1549
|
+
allowed_scopes: Array[::String]?,
|
|
1550
|
+
custom_claims: Array[
|
|
1551
|
+
{
|
|
1552
|
+
inbound_token_claim_name: ::String,
|
|
1553
|
+
inbound_token_claim_value_type: ("STRING" | "STRING_ARRAY"),
|
|
1554
|
+
authorizing_claim_match_value: {
|
|
1555
|
+
claim_match_value: {
|
|
1556
|
+
match_value_string: ::String?,
|
|
1557
|
+
match_value_string_list: Array[::String]?
|
|
1558
|
+
},
|
|
1559
|
+
claim_match_operator: ("EQUALS" | "CONTAINS" | "CONTAINS_ANY")
|
|
1560
|
+
}
|
|
1561
|
+
},
|
|
1562
|
+
]?,
|
|
1563
|
+
private_endpoint: {
|
|
1564
|
+
self_managed_lattice_resource: {
|
|
1565
|
+
resource_configuration_identifier: ::String?
|
|
1566
|
+
}?,
|
|
1567
|
+
managed_vpc_resource: {
|
|
1568
|
+
vpc_identifier: ::String,
|
|
1569
|
+
subnet_ids: Array[::String],
|
|
1570
|
+
endpoint_ip_address_type: ("IPV4" | "IPV6"),
|
|
1571
|
+
security_group_ids: Array[::String]?,
|
|
1572
|
+
tags: Hash[::String, ::String]?,
|
|
1573
|
+
routing_domain: ::String?
|
|
1574
|
+
}?
|
|
1575
|
+
}?,
|
|
1576
|
+
private_endpoint_overrides: Array[
|
|
1577
|
+
{
|
|
1578
|
+
domain: ::String,
|
|
1579
|
+
private_endpoint: {
|
|
1580
|
+
self_managed_lattice_resource: {
|
|
1581
|
+
resource_configuration_identifier: ::String?
|
|
1582
|
+
}?,
|
|
1583
|
+
managed_vpc_resource: {
|
|
1584
|
+
vpc_identifier: ::String,
|
|
1585
|
+
subnet_ids: Array[::String],
|
|
1586
|
+
endpoint_ip_address_type: ("IPV4" | "IPV6"),
|
|
1587
|
+
security_group_ids: Array[::String]?,
|
|
1588
|
+
tags: Hash[::String, ::String]?,
|
|
1589
|
+
routing_domain: ::String?
|
|
1590
|
+
}?
|
|
1591
|
+
}
|
|
1592
|
+
},
|
|
1593
|
+
]?
|
|
1594
|
+
}?
|
|
1595
|
+
},
|
|
1596
|
+
role_arn: ::String,
|
|
1597
|
+
?client_token: ::String,
|
|
1598
|
+
?tags: Hash[::String, ::String]
|
|
1599
|
+
) -> _CreatePaymentManagerResponseSuccess
|
|
1600
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePaymentManagerResponseSuccess
|
|
1601
|
+
|
|
1464
1602
|
interface _CreatePolicyResponseSuccess
|
|
1465
1603
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreatePolicyResponse]
|
|
1466
1604
|
def policy_id: () -> ::String
|
|
1467
1605
|
def name: () -> ::String
|
|
1468
1606
|
def policy_engine_id: () -> ::String
|
|
1469
|
-
def definition: () -> Types::PolicyDefinition
|
|
1470
|
-
def description: () -> ::String
|
|
1471
1607
|
def created_at: () -> ::Time
|
|
1472
1608
|
def updated_at: () -> ::Time
|
|
1473
1609
|
def policy_arn: () -> ::String
|
|
1474
1610
|
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
1611
|
+
def definition: () -> Types::PolicyDefinition
|
|
1612
|
+
def description: () -> ::String
|
|
1475
1613
|
def status_reasons: () -> ::Array[::String]
|
|
1476
1614
|
end
|
|
1477
1615
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_policy-instance_method
|
|
@@ -1497,13 +1635,13 @@ module Aws
|
|
|
1497
1635
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreatePolicyEngineResponse]
|
|
1498
1636
|
def policy_engine_id: () -> ::String
|
|
1499
1637
|
def name: () -> ::String
|
|
1500
|
-
def description: () -> ::String
|
|
1501
1638
|
def created_at: () -> ::Time
|
|
1502
1639
|
def updated_at: () -> ::Time
|
|
1503
1640
|
def policy_engine_arn: () -> ::String
|
|
1504
1641
|
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
1505
|
-
def status_reasons: () -> ::Array[::String]
|
|
1506
1642
|
def encryption_key_arn: () -> ::String
|
|
1643
|
+
def description: () -> ::String
|
|
1644
|
+
def status_reasons: () -> ::Array[::String]
|
|
1507
1645
|
end
|
|
1508
1646
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_policy_engine-instance_method
|
|
1509
1647
|
def create_policy_engine: (
|
|
@@ -1848,17 +1986,51 @@ module Aws
|
|
|
1848
1986
|
) -> _DeleteOnlineEvaluationConfigResponseSuccess
|
|
1849
1987
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteOnlineEvaluationConfigResponseSuccess
|
|
1850
1988
|
|
|
1989
|
+
interface _DeletePaymentConnectorResponseSuccess
|
|
1990
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeletePaymentConnectorResponse]
|
|
1991
|
+
def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
1992
|
+
def payment_connector_id: () -> ::String
|
|
1993
|
+
end
|
|
1994
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_payment_connector-instance_method
|
|
1995
|
+
def delete_payment_connector: (
|
|
1996
|
+
payment_manager_id: ::String,
|
|
1997
|
+
payment_connector_id: ::String,
|
|
1998
|
+
?client_token: ::String
|
|
1999
|
+
) -> _DeletePaymentConnectorResponseSuccess
|
|
2000
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeletePaymentConnectorResponseSuccess
|
|
2001
|
+
|
|
2002
|
+
interface _DeletePaymentCredentialProviderResponseSuccess
|
|
2003
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeletePaymentCredentialProviderResponse]
|
|
2004
|
+
end
|
|
2005
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_payment_credential_provider-instance_method
|
|
2006
|
+
def delete_payment_credential_provider: (
|
|
2007
|
+
name: ::String
|
|
2008
|
+
) -> _DeletePaymentCredentialProviderResponseSuccess
|
|
2009
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeletePaymentCredentialProviderResponseSuccess
|
|
2010
|
+
|
|
2011
|
+
interface _DeletePaymentManagerResponseSuccess
|
|
2012
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeletePaymentManagerResponse]
|
|
2013
|
+
def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
2014
|
+
def payment_manager_id: () -> ::String
|
|
2015
|
+
end
|
|
2016
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_payment_manager-instance_method
|
|
2017
|
+
def delete_payment_manager: (
|
|
2018
|
+
payment_manager_id: ::String,
|
|
2019
|
+
?client_token: ::String
|
|
2020
|
+
) -> _DeletePaymentManagerResponseSuccess
|
|
2021
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeletePaymentManagerResponseSuccess
|
|
2022
|
+
|
|
1851
2023
|
interface _DeletePolicyResponseSuccess
|
|
1852
2024
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeletePolicyResponse]
|
|
1853
2025
|
def policy_id: () -> ::String
|
|
1854
2026
|
def name: () -> ::String
|
|
1855
2027
|
def policy_engine_id: () -> ::String
|
|
1856
|
-
def definition: () -> Types::PolicyDefinition
|
|
1857
|
-
def description: () -> ::String
|
|
1858
2028
|
def created_at: () -> ::Time
|
|
1859
2029
|
def updated_at: () -> ::Time
|
|
1860
2030
|
def policy_arn: () -> ::String
|
|
1861
2031
|
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
2032
|
+
def definition: () -> Types::PolicyDefinition
|
|
2033
|
+
def description: () -> ::String
|
|
1862
2034
|
def status_reasons: () -> ::Array[::String]
|
|
1863
2035
|
end
|
|
1864
2036
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_policy-instance_method
|
|
@@ -1872,13 +2044,13 @@ module Aws
|
|
|
1872
2044
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeletePolicyEngineResponse]
|
|
1873
2045
|
def policy_engine_id: () -> ::String
|
|
1874
2046
|
def name: () -> ::String
|
|
1875
|
-
def description: () -> ::String
|
|
1876
2047
|
def created_at: () -> ::Time
|
|
1877
2048
|
def updated_at: () -> ::Time
|
|
1878
2049
|
def policy_engine_arn: () -> ::String
|
|
1879
2050
|
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
1880
|
-
def status_reasons: () -> ::Array[::String]
|
|
1881
2051
|
def encryption_key_arn: () -> ::String
|
|
2052
|
+
def description: () -> ::String
|
|
2053
|
+
def status_reasons: () -> ::Array[::String]
|
|
1882
2054
|
end
|
|
1883
2055
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_policy_engine-instance_method
|
|
1884
2056
|
def delete_policy_engine: (
|
|
@@ -2247,17 +2419,72 @@ module Aws
|
|
|
2247
2419
|
) -> _GetOnlineEvaluationConfigResponseSuccess
|
|
2248
2420
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetOnlineEvaluationConfigResponseSuccess
|
|
2249
2421
|
|
|
2422
|
+
interface _GetPaymentConnectorResponseSuccess
|
|
2423
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetPaymentConnectorResponse]
|
|
2424
|
+
def payment_connector_id: () -> ::String
|
|
2425
|
+
def name: () -> ::String
|
|
2426
|
+
def description: () -> ::String
|
|
2427
|
+
def type: () -> ("CoinbaseCDP" | "StripePrivy")
|
|
2428
|
+
def credential_provider_configurations: () -> ::Array[Types::CredentialsProviderConfiguration]
|
|
2429
|
+
def created_at: () -> ::Time
|
|
2430
|
+
def last_updated_at: () -> ::Time
|
|
2431
|
+
def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
2432
|
+
end
|
|
2433
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_payment_connector-instance_method
|
|
2434
|
+
def get_payment_connector: (
|
|
2435
|
+
payment_manager_id: ::String,
|
|
2436
|
+
payment_connector_id: ::String
|
|
2437
|
+
) -> _GetPaymentConnectorResponseSuccess
|
|
2438
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPaymentConnectorResponseSuccess
|
|
2439
|
+
|
|
2440
|
+
interface _GetPaymentCredentialProviderResponseSuccess
|
|
2441
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetPaymentCredentialProviderResponse]
|
|
2442
|
+
def name: () -> ::String
|
|
2443
|
+
def credential_provider_arn: () -> ::String
|
|
2444
|
+
def credential_provider_vendor: () -> ("CoinbaseCDP" | "StripePrivy")
|
|
2445
|
+
def provider_configuration_output: () -> Types::PaymentProviderConfigurationOutput
|
|
2446
|
+
def created_time: () -> ::Time
|
|
2447
|
+
def last_updated_time: () -> ::Time
|
|
2448
|
+
def tags: () -> ::Hash[::String, ::String]
|
|
2449
|
+
end
|
|
2450
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_payment_credential_provider-instance_method
|
|
2451
|
+
def get_payment_credential_provider: (
|
|
2452
|
+
name: ::String
|
|
2453
|
+
) -> _GetPaymentCredentialProviderResponseSuccess
|
|
2454
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPaymentCredentialProviderResponseSuccess
|
|
2455
|
+
|
|
2456
|
+
interface _GetPaymentManagerResponseSuccess
|
|
2457
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetPaymentManagerResponse]
|
|
2458
|
+
def payment_manager_arn: () -> ::String
|
|
2459
|
+
def payment_manager_id: () -> ::String
|
|
2460
|
+
def name: () -> ::String
|
|
2461
|
+
def description: () -> ::String
|
|
2462
|
+
def authorizer_type: () -> ("CUSTOM_JWT" | "AWS_IAM")
|
|
2463
|
+
def authorizer_configuration: () -> Types::AuthorizerConfiguration
|
|
2464
|
+
def role_arn: () -> ::String
|
|
2465
|
+
def workload_identity_details: () -> Types::WorkloadIdentityDetails
|
|
2466
|
+
def created_at: () -> ::Time
|
|
2467
|
+
def last_updated_at: () -> ::Time
|
|
2468
|
+
def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
2469
|
+
def tags: () -> ::Hash[::String, ::String]
|
|
2470
|
+
end
|
|
2471
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_payment_manager-instance_method
|
|
2472
|
+
def get_payment_manager: (
|
|
2473
|
+
payment_manager_id: ::String
|
|
2474
|
+
) -> _GetPaymentManagerResponseSuccess
|
|
2475
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPaymentManagerResponseSuccess
|
|
2476
|
+
|
|
2250
2477
|
interface _GetPolicyResponseSuccess
|
|
2251
2478
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetPolicyResponse]
|
|
2252
2479
|
def policy_id: () -> ::String
|
|
2253
2480
|
def name: () -> ::String
|
|
2254
2481
|
def policy_engine_id: () -> ::String
|
|
2255
|
-
def definition: () -> Types::PolicyDefinition
|
|
2256
|
-
def description: () -> ::String
|
|
2257
2482
|
def created_at: () -> ::Time
|
|
2258
2483
|
def updated_at: () -> ::Time
|
|
2259
2484
|
def policy_arn: () -> ::String
|
|
2260
2485
|
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
2486
|
+
def definition: () -> Types::PolicyDefinition
|
|
2487
|
+
def description: () -> ::String
|
|
2261
2488
|
def status_reasons: () -> ::Array[::String]
|
|
2262
2489
|
end
|
|
2263
2490
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_policy-instance_method
|
|
@@ -2271,13 +2498,13 @@ module Aws
|
|
|
2271
2498
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetPolicyEngineResponse]
|
|
2272
2499
|
def policy_engine_id: () -> ::String
|
|
2273
2500
|
def name: () -> ::String
|
|
2274
|
-
def description: () -> ::String
|
|
2275
2501
|
def created_at: () -> ::Time
|
|
2276
2502
|
def updated_at: () -> ::Time
|
|
2277
2503
|
def policy_engine_arn: () -> ::String
|
|
2278
2504
|
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
2279
|
-
def status_reasons: () -> ::Array[::String]
|
|
2280
2505
|
def encryption_key_arn: () -> ::String
|
|
2506
|
+
def description: () -> ::String
|
|
2507
|
+
def status_reasons: () -> ::Array[::String]
|
|
2281
2508
|
end
|
|
2282
2509
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_policy_engine-instance_method
|
|
2283
2510
|
def get_policy_engine: (
|
|
@@ -2285,6 +2512,22 @@ module Aws
|
|
|
2285
2512
|
) -> _GetPolicyEngineResponseSuccess
|
|
2286
2513
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPolicyEngineResponseSuccess
|
|
2287
2514
|
|
|
2515
|
+
interface _GetPolicyEngineSummaryResponseSuccess
|
|
2516
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetPolicyEngineSummaryResponse]
|
|
2517
|
+
def policy_engine_id: () -> ::String
|
|
2518
|
+
def name: () -> ::String
|
|
2519
|
+
def created_at: () -> ::Time
|
|
2520
|
+
def updated_at: () -> ::Time
|
|
2521
|
+
def policy_engine_arn: () -> ::String
|
|
2522
|
+
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
2523
|
+
def encryption_key_arn: () -> ::String
|
|
2524
|
+
end
|
|
2525
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_policy_engine_summary-instance_method
|
|
2526
|
+
def get_policy_engine_summary: (
|
|
2527
|
+
policy_engine_id: ::String
|
|
2528
|
+
) -> _GetPolicyEngineSummaryResponseSuccess
|
|
2529
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPolicyEngineSummaryResponseSuccess
|
|
2530
|
+
|
|
2288
2531
|
interface _GetPolicyGenerationResponseSuccess
|
|
2289
2532
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetPolicyGenerationResponse]
|
|
2290
2533
|
def policy_engine_id: () -> ::String
|
|
@@ -2295,8 +2538,8 @@ module Aws
|
|
|
2295
2538
|
def created_at: () -> ::Time
|
|
2296
2539
|
def updated_at: () -> ::Time
|
|
2297
2540
|
def status: () -> ("GENERATING" | "GENERATED" | "GENERATE_FAILED" | "DELETE_FAILED")
|
|
2298
|
-
def status_reasons: () -> ::Array[::String]
|
|
2299
2541
|
def findings: () -> ::String
|
|
2542
|
+
def status_reasons: () -> ::Array[::String]
|
|
2300
2543
|
end
|
|
2301
2544
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_policy_generation-instance_method
|
|
2302
2545
|
def get_policy_generation: (
|
|
@@ -2305,6 +2548,42 @@ module Aws
|
|
|
2305
2548
|
) -> _GetPolicyGenerationResponseSuccess
|
|
2306
2549
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPolicyGenerationResponseSuccess
|
|
2307
2550
|
|
|
2551
|
+
interface _GetPolicyGenerationSummaryResponseSuccess
|
|
2552
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetPolicyGenerationSummaryResponse]
|
|
2553
|
+
def policy_engine_id: () -> ::String
|
|
2554
|
+
def policy_generation_id: () -> ::String
|
|
2555
|
+
def name: () -> ::String
|
|
2556
|
+
def policy_generation_arn: () -> ::String
|
|
2557
|
+
def resource: () -> Types::Resource
|
|
2558
|
+
def created_at: () -> ::Time
|
|
2559
|
+
def updated_at: () -> ::Time
|
|
2560
|
+
def status: () -> ("GENERATING" | "GENERATED" | "GENERATE_FAILED" | "DELETE_FAILED")
|
|
2561
|
+
def findings: () -> ::String
|
|
2562
|
+
end
|
|
2563
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_policy_generation_summary-instance_method
|
|
2564
|
+
def get_policy_generation_summary: (
|
|
2565
|
+
policy_generation_id: ::String,
|
|
2566
|
+
policy_engine_id: ::String
|
|
2567
|
+
) -> _GetPolicyGenerationSummaryResponseSuccess
|
|
2568
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPolicyGenerationSummaryResponseSuccess
|
|
2569
|
+
|
|
2570
|
+
interface _GetPolicySummaryResponseSuccess
|
|
2571
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetPolicySummaryResponse]
|
|
2572
|
+
def policy_id: () -> ::String
|
|
2573
|
+
def name: () -> ::String
|
|
2574
|
+
def policy_engine_id: () -> ::String
|
|
2575
|
+
def created_at: () -> ::Time
|
|
2576
|
+
def updated_at: () -> ::Time
|
|
2577
|
+
def policy_arn: () -> ::String
|
|
2578
|
+
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
2579
|
+
end
|
|
2580
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_policy_summary-instance_method
|
|
2581
|
+
def get_policy_summary: (
|
|
2582
|
+
policy_engine_id: ::String,
|
|
2583
|
+
policy_id: ::String
|
|
2584
|
+
) -> _GetPolicySummaryResponseSuccess
|
|
2585
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPolicySummaryResponseSuccess
|
|
2586
|
+
|
|
2308
2587
|
interface _GetRegistryResponseSuccess
|
|
2309
2588
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetRegistryResponse]
|
|
2310
2589
|
def name: () -> ::String
|
|
@@ -2602,6 +2881,43 @@ module Aws
|
|
|
2602
2881
|
) -> _ListOnlineEvaluationConfigsResponseSuccess
|
|
2603
2882
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListOnlineEvaluationConfigsResponseSuccess
|
|
2604
2883
|
|
|
2884
|
+
interface _ListPaymentConnectorsResponseSuccess
|
|
2885
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListPaymentConnectorsResponse]
|
|
2886
|
+
def payment_connectors: () -> ::Array[Types::PaymentConnectorSummary]
|
|
2887
|
+
def next_token: () -> ::String
|
|
2888
|
+
end
|
|
2889
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_payment_connectors-instance_method
|
|
2890
|
+
def list_payment_connectors: (
|
|
2891
|
+
payment_manager_id: ::String,
|
|
2892
|
+
?max_results: ::Integer,
|
|
2893
|
+
?next_token: ::String
|
|
2894
|
+
) -> _ListPaymentConnectorsResponseSuccess
|
|
2895
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPaymentConnectorsResponseSuccess
|
|
2896
|
+
|
|
2897
|
+
interface _ListPaymentCredentialProvidersResponseSuccess
|
|
2898
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListPaymentCredentialProvidersResponse]
|
|
2899
|
+
def credential_providers: () -> ::Array[Types::PaymentCredentialProviderItem]
|
|
2900
|
+
def next_token: () -> ::String
|
|
2901
|
+
end
|
|
2902
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_payment_credential_providers-instance_method
|
|
2903
|
+
def list_payment_credential_providers: (
|
|
2904
|
+
?next_token: ::String,
|
|
2905
|
+
?max_results: ::Integer
|
|
2906
|
+
) -> _ListPaymentCredentialProvidersResponseSuccess
|
|
2907
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPaymentCredentialProvidersResponseSuccess
|
|
2908
|
+
|
|
2909
|
+
interface _ListPaymentManagersResponseSuccess
|
|
2910
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListPaymentManagersResponse]
|
|
2911
|
+
def payment_managers: () -> ::Array[Types::PaymentManagerSummary]
|
|
2912
|
+
def next_token: () -> ::String
|
|
2913
|
+
end
|
|
2914
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_payment_managers-instance_method
|
|
2915
|
+
def list_payment_managers: (
|
|
2916
|
+
?max_results: ::Integer,
|
|
2917
|
+
?next_token: ::String
|
|
2918
|
+
) -> _ListPaymentManagersResponseSuccess
|
|
2919
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPaymentManagersResponseSuccess
|
|
2920
|
+
|
|
2605
2921
|
interface _ListPoliciesResponseSuccess
|
|
2606
2922
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListPoliciesResponse]
|
|
2607
2923
|
def policies: () -> ::Array[Types::Policy]
|
|
@@ -2616,6 +2932,18 @@ module Aws
|
|
|
2616
2932
|
) -> _ListPoliciesResponseSuccess
|
|
2617
2933
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPoliciesResponseSuccess
|
|
2618
2934
|
|
|
2935
|
+
interface _ListPolicyEngineSummariesResponseSuccess
|
|
2936
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListPolicyEngineSummariesResponse]
|
|
2937
|
+
def policy_engines: () -> ::Array[Types::PolicyEngineSummary]
|
|
2938
|
+
def next_token: () -> ::String
|
|
2939
|
+
end
|
|
2940
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_policy_engine_summaries-instance_method
|
|
2941
|
+
def list_policy_engine_summaries: (
|
|
2942
|
+
?next_token: ::String,
|
|
2943
|
+
?max_results: ::Integer
|
|
2944
|
+
) -> _ListPolicyEngineSummariesResponseSuccess
|
|
2945
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPolicyEngineSummariesResponseSuccess
|
|
2946
|
+
|
|
2619
2947
|
interface _ListPolicyEnginesResponseSuccess
|
|
2620
2948
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListPolicyEnginesResponse]
|
|
2621
2949
|
def policy_engines: () -> ::Array[Types::PolicyEngine]
|
|
@@ -2642,6 +2970,19 @@ module Aws
|
|
|
2642
2970
|
) -> _ListPolicyGenerationAssetsResponseSuccess
|
|
2643
2971
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPolicyGenerationAssetsResponseSuccess
|
|
2644
2972
|
|
|
2973
|
+
interface _ListPolicyGenerationSummariesResponseSuccess
|
|
2974
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListPolicyGenerationSummariesResponse]
|
|
2975
|
+
def policy_generations: () -> ::Array[Types::PolicyGenerationSummary]
|
|
2976
|
+
def next_token: () -> ::String
|
|
2977
|
+
end
|
|
2978
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_policy_generation_summaries-instance_method
|
|
2979
|
+
def list_policy_generation_summaries: (
|
|
2980
|
+
?next_token: ::String,
|
|
2981
|
+
?max_results: ::Integer,
|
|
2982
|
+
policy_engine_id: ::String
|
|
2983
|
+
) -> _ListPolicyGenerationSummariesResponseSuccess
|
|
2984
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPolicyGenerationSummariesResponseSuccess
|
|
2985
|
+
|
|
2645
2986
|
interface _ListPolicyGenerationsResponseSuccess
|
|
2646
2987
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListPolicyGenerationsResponse]
|
|
2647
2988
|
def policy_generations: () -> ::Array[Types::PolicyGeneration]
|
|
@@ -2655,6 +2996,20 @@ module Aws
|
|
|
2655
2996
|
) -> _ListPolicyGenerationsResponseSuccess
|
|
2656
2997
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPolicyGenerationsResponseSuccess
|
|
2657
2998
|
|
|
2999
|
+
interface _ListPolicySummariesResponseSuccess
|
|
3000
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListPolicySummariesResponse]
|
|
3001
|
+
def policies: () -> ::Array[Types::PolicySummary]
|
|
3002
|
+
def next_token: () -> ::String
|
|
3003
|
+
end
|
|
3004
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_policy_summaries-instance_method
|
|
3005
|
+
def list_policy_summaries: (
|
|
3006
|
+
?next_token: ::String,
|
|
3007
|
+
?max_results: ::Integer,
|
|
3008
|
+
policy_engine_id: ::String,
|
|
3009
|
+
?target_resource_scope: ::String
|
|
3010
|
+
) -> _ListPolicySummariesResponseSuccess
|
|
3011
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPolicySummariesResponseSuccess
|
|
3012
|
+
|
|
2658
3013
|
interface _ListRegistriesResponseSuccess
|
|
2659
3014
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListRegistriesResponse]
|
|
2660
3015
|
def registries: () -> ::Array[Types::RegistrySummary]
|
|
@@ -2664,7 +3019,8 @@ module Aws
|
|
|
2664
3019
|
def list_registries: (
|
|
2665
3020
|
?max_results: ::Integer,
|
|
2666
3021
|
?next_token: ::String,
|
|
2667
|
-
?status: ("CREATING" | "READY" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETING" | "DELETE_FAILED")
|
|
3022
|
+
?status: ("CREATING" | "READY" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETING" | "DELETE_FAILED"),
|
|
3023
|
+
?authorizer_type: ("CUSTOM_JWT" | "AWS_IAM")
|
|
2668
3024
|
) -> _ListRegistriesResponseSuccess
|
|
2669
3025
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRegistriesResponseSuccess
|
|
2670
3026
|
|
|
@@ -2743,8 +3099,8 @@ module Aws
|
|
|
2743
3099
|
def created_at: () -> ::Time
|
|
2744
3100
|
def updated_at: () -> ::Time
|
|
2745
3101
|
def status: () -> ("GENERATING" | "GENERATED" | "GENERATE_FAILED" | "DELETE_FAILED")
|
|
2746
|
-
def status_reasons: () -> ::Array[::String]
|
|
2747
3102
|
def findings: () -> ::String
|
|
3103
|
+
def status_reasons: () -> ::Array[::String]
|
|
2748
3104
|
end
|
|
2749
3105
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#start_policy_generation-instance_method
|
|
2750
3106
|
def start_policy_generation: (
|
|
@@ -2840,7 +3196,8 @@ module Aws
|
|
|
2840
3196
|
network_mode: ("PUBLIC" | "VPC"),
|
|
2841
3197
|
network_mode_config: {
|
|
2842
3198
|
security_groups: Array[::String],
|
|
2843
|
-
subnets: Array[::String]
|
|
3199
|
+
subnets: Array[::String],
|
|
3200
|
+
require_service_s3_endpoint: bool?
|
|
2844
3201
|
}?
|
|
2845
3202
|
},
|
|
2846
3203
|
?description: ::String,
|
|
@@ -3417,7 +3774,8 @@ module Aws
|
|
|
3417
3774
|
network_mode: ("PUBLIC" | "VPC"),
|
|
3418
3775
|
network_mode_config: {
|
|
3419
3776
|
security_groups: Array[::String],
|
|
3420
|
-
subnets: Array[::String]
|
|
3777
|
+
subnets: Array[::String],
|
|
3778
|
+
require_service_s3_endpoint: bool?
|
|
3421
3779
|
}?
|
|
3422
3780
|
}?,
|
|
3423
3781
|
filesystem_configurations: Array[
|
|
@@ -4258,17 +4616,149 @@ module Aws
|
|
|
4258
4616
|
) -> _UpdateOnlineEvaluationConfigResponseSuccess
|
|
4259
4617
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateOnlineEvaluationConfigResponseSuccess
|
|
4260
4618
|
|
|
4619
|
+
interface _UpdatePaymentConnectorResponseSuccess
|
|
4620
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdatePaymentConnectorResponse]
|
|
4621
|
+
def payment_connector_id: () -> ::String
|
|
4622
|
+
def payment_manager_id: () -> ::String
|
|
4623
|
+
def name: () -> ::String
|
|
4624
|
+
def type: () -> ("CoinbaseCDP" | "StripePrivy")
|
|
4625
|
+
def credential_provider_configurations: () -> ::Array[Types::CredentialsProviderConfiguration]
|
|
4626
|
+
def last_updated_at: () -> ::Time
|
|
4627
|
+
def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
4628
|
+
end
|
|
4629
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_payment_connector-instance_method
|
|
4630
|
+
def update_payment_connector: (
|
|
4631
|
+
payment_manager_id: ::String,
|
|
4632
|
+
payment_connector_id: ::String,
|
|
4633
|
+
?description: ::String,
|
|
4634
|
+
?type: ("CoinbaseCDP" | "StripePrivy"),
|
|
4635
|
+
?credential_provider_configurations: Array[
|
|
4636
|
+
{
|
|
4637
|
+
coinbase_cdp: {
|
|
4638
|
+
credential_provider_arn: ::String
|
|
4639
|
+
}?,
|
|
4640
|
+
stripe_privy: {
|
|
4641
|
+
credential_provider_arn: ::String
|
|
4642
|
+
}?
|
|
4643
|
+
},
|
|
4644
|
+
],
|
|
4645
|
+
?client_token: ::String
|
|
4646
|
+
) -> _UpdatePaymentConnectorResponseSuccess
|
|
4647
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePaymentConnectorResponseSuccess
|
|
4648
|
+
|
|
4649
|
+
interface _UpdatePaymentCredentialProviderResponseSuccess
|
|
4650
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdatePaymentCredentialProviderResponse]
|
|
4651
|
+
def name: () -> ::String
|
|
4652
|
+
def credential_provider_vendor: () -> ("CoinbaseCDP" | "StripePrivy")
|
|
4653
|
+
def credential_provider_arn: () -> ::String
|
|
4654
|
+
def provider_configuration_output: () -> Types::PaymentProviderConfigurationOutput
|
|
4655
|
+
def created_time: () -> ::Time
|
|
4656
|
+
def last_updated_time: () -> ::Time
|
|
4657
|
+
end
|
|
4658
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_payment_credential_provider-instance_method
|
|
4659
|
+
def update_payment_credential_provider: (
|
|
4660
|
+
name: ::String,
|
|
4661
|
+
credential_provider_vendor: ("CoinbaseCDP" | "StripePrivy"),
|
|
4662
|
+
provider_configuration_input: {
|
|
4663
|
+
coinbase_cdp_configuration: {
|
|
4664
|
+
api_key_id: ::String,
|
|
4665
|
+
api_key_secret: ::String,
|
|
4666
|
+
wallet_secret: ::String
|
|
4667
|
+
}?,
|
|
4668
|
+
stripe_privy_configuration: {
|
|
4669
|
+
app_id: ::String,
|
|
4670
|
+
app_secret: ::String,
|
|
4671
|
+
authorization_private_key: ::String,
|
|
4672
|
+
authorization_id: ::String
|
|
4673
|
+
}?
|
|
4674
|
+
}
|
|
4675
|
+
) -> _UpdatePaymentCredentialProviderResponseSuccess
|
|
4676
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePaymentCredentialProviderResponseSuccess
|
|
4677
|
+
|
|
4678
|
+
interface _UpdatePaymentManagerResponseSuccess
|
|
4679
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdatePaymentManagerResponse]
|
|
4680
|
+
def payment_manager_arn: () -> ::String
|
|
4681
|
+
def payment_manager_id: () -> ::String
|
|
4682
|
+
def name: () -> ::String
|
|
4683
|
+
def authorizer_type: () -> ("CUSTOM_JWT" | "AWS_IAM")
|
|
4684
|
+
def role_arn: () -> ::String
|
|
4685
|
+
def workload_identity_details: () -> Types::WorkloadIdentityDetails
|
|
4686
|
+
def last_updated_at: () -> ::Time
|
|
4687
|
+
def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "READY" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
4688
|
+
end
|
|
4689
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_payment_manager-instance_method
|
|
4690
|
+
def update_payment_manager: (
|
|
4691
|
+
payment_manager_id: ::String,
|
|
4692
|
+
?description: ::String,
|
|
4693
|
+
?authorizer_type: ("CUSTOM_JWT" | "AWS_IAM"),
|
|
4694
|
+
?authorizer_configuration: {
|
|
4695
|
+
custom_jwt_authorizer: {
|
|
4696
|
+
discovery_url: ::String,
|
|
4697
|
+
allowed_audience: Array[::String]?,
|
|
4698
|
+
allowed_clients: Array[::String]?,
|
|
4699
|
+
allowed_scopes: Array[::String]?,
|
|
4700
|
+
custom_claims: Array[
|
|
4701
|
+
{
|
|
4702
|
+
inbound_token_claim_name: ::String,
|
|
4703
|
+
inbound_token_claim_value_type: ("STRING" | "STRING_ARRAY"),
|
|
4704
|
+
authorizing_claim_match_value: {
|
|
4705
|
+
claim_match_value: {
|
|
4706
|
+
match_value_string: ::String?,
|
|
4707
|
+
match_value_string_list: Array[::String]?
|
|
4708
|
+
},
|
|
4709
|
+
claim_match_operator: ("EQUALS" | "CONTAINS" | "CONTAINS_ANY")
|
|
4710
|
+
}
|
|
4711
|
+
},
|
|
4712
|
+
]?,
|
|
4713
|
+
private_endpoint: {
|
|
4714
|
+
self_managed_lattice_resource: {
|
|
4715
|
+
resource_configuration_identifier: ::String?
|
|
4716
|
+
}?,
|
|
4717
|
+
managed_vpc_resource: {
|
|
4718
|
+
vpc_identifier: ::String,
|
|
4719
|
+
subnet_ids: Array[::String],
|
|
4720
|
+
endpoint_ip_address_type: ("IPV4" | "IPV6"),
|
|
4721
|
+
security_group_ids: Array[::String]?,
|
|
4722
|
+
tags: Hash[::String, ::String]?,
|
|
4723
|
+
routing_domain: ::String?
|
|
4724
|
+
}?
|
|
4725
|
+
}?,
|
|
4726
|
+
private_endpoint_overrides: Array[
|
|
4727
|
+
{
|
|
4728
|
+
domain: ::String,
|
|
4729
|
+
private_endpoint: {
|
|
4730
|
+
self_managed_lattice_resource: {
|
|
4731
|
+
resource_configuration_identifier: ::String?
|
|
4732
|
+
}?,
|
|
4733
|
+
managed_vpc_resource: {
|
|
4734
|
+
vpc_identifier: ::String,
|
|
4735
|
+
subnet_ids: Array[::String],
|
|
4736
|
+
endpoint_ip_address_type: ("IPV4" | "IPV6"),
|
|
4737
|
+
security_group_ids: Array[::String]?,
|
|
4738
|
+
tags: Hash[::String, ::String]?,
|
|
4739
|
+
routing_domain: ::String?
|
|
4740
|
+
}?
|
|
4741
|
+
}
|
|
4742
|
+
},
|
|
4743
|
+
]?
|
|
4744
|
+
}?
|
|
4745
|
+
},
|
|
4746
|
+
?role_arn: ::String,
|
|
4747
|
+
?client_token: ::String
|
|
4748
|
+
) -> _UpdatePaymentManagerResponseSuccess
|
|
4749
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePaymentManagerResponseSuccess
|
|
4750
|
+
|
|
4261
4751
|
interface _UpdatePolicyResponseSuccess
|
|
4262
4752
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdatePolicyResponse]
|
|
4263
4753
|
def policy_id: () -> ::String
|
|
4264
4754
|
def name: () -> ::String
|
|
4265
4755
|
def policy_engine_id: () -> ::String
|
|
4266
|
-
def definition: () -> Types::PolicyDefinition
|
|
4267
|
-
def description: () -> ::String
|
|
4268
4756
|
def created_at: () -> ::Time
|
|
4269
4757
|
def updated_at: () -> ::Time
|
|
4270
4758
|
def policy_arn: () -> ::String
|
|
4271
4759
|
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
4760
|
+
def definition: () -> Types::PolicyDefinition
|
|
4761
|
+
def description: () -> ::String
|
|
4272
4762
|
def status_reasons: () -> ::Array[::String]
|
|
4273
4763
|
end
|
|
4274
4764
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_policy-instance_method
|
|
@@ -4295,13 +4785,13 @@ module Aws
|
|
|
4295
4785
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdatePolicyEngineResponse]
|
|
4296
4786
|
def policy_engine_id: () -> ::String
|
|
4297
4787
|
def name: () -> ::String
|
|
4298
|
-
def description: () -> ::String
|
|
4299
4788
|
def created_at: () -> ::Time
|
|
4300
4789
|
def updated_at: () -> ::Time
|
|
4301
4790
|
def policy_engine_arn: () -> ::String
|
|
4302
4791
|
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
4303
|
-
def status_reasons: () -> ::Array[::String]
|
|
4304
4792
|
def encryption_key_arn: () -> ::String
|
|
4793
|
+
def description: () -> ::String
|
|
4794
|
+
def status_reasons: () -> ::Array[::String]
|
|
4305
4795
|
end
|
|
4306
4796
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_policy_engine-instance_method
|
|
4307
4797
|
def update_policy_engine: (
|