aws-sdk-bedrockagentcorecontrol 1.50.0 → 1.51.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client.rb +255 -45
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +79 -22
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +398 -21
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +24 -2
- data/sig/params.rbs +137 -52
- data/sig/types.rbs +58 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e11c442dd0aad4eeed4fbad4d0893be2861d4246146d3da42fa942c4c774e46f
|
|
4
|
+
data.tar.gz: b9ddaa44427221abe21a4c409088b1f66fb49c68d6d679d7420953490d41fce7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 223ab562752fe773595a90ad448cf8543a238499e6b037ae3755632a7df6c226408069bb708159c7585c3a66b8ffe65a5eb39c25395eafdb5221f313c7014e70
|
|
7
|
+
data.tar.gz: 7bf906f31088f5d4fab318e8fdc3c9b575f458c5b78d12fde4116499993e4a51f3a0ee7341ef9b7d3c5a6f280d32e2ac3b1cc8eb1fd7acb9ffb16a6a45382be9
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.51.0 (2026-05-29)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Reference your own AWS Secrets Manager secrets when configuring credential providers, giving you control over encryption, rotation, and access policies instead of using service-managed secrets.
|
|
8
|
+
|
|
4
9
|
1.50.0 (2026-05-28)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.51.0
|
|
@@ -830,10 +830,21 @@ module Aws::BedrockAgentCoreControl
|
|
|
830
830
|
# The name of the API key credential provider. The name must be unique
|
|
831
831
|
# within your account.
|
|
832
832
|
#
|
|
833
|
-
# @option params [
|
|
833
|
+
# @option params [String] :api_key
|
|
834
834
|
# The API key to use for authentication. This value is encrypted and
|
|
835
835
|
# stored securely.
|
|
836
836
|
#
|
|
837
|
+
# @option params [Types::SecretReference] :api_key_secret_config
|
|
838
|
+
# A reference to the AWS Secrets Manager secret that stores the API key.
|
|
839
|
+
# This includes the secret ID and the JSON key used to extract the API
|
|
840
|
+
# key value from the secret. Required when `apiKeySecretSource` is set
|
|
841
|
+
# to `EXTERNAL`.
|
|
842
|
+
#
|
|
843
|
+
# @option params [String] :api_key_secret_source
|
|
844
|
+
# The source type of the API key secret. Use `MANAGED` if the secret is
|
|
845
|
+
# managed by the service, or `EXTERNAL` if you manage the secret
|
|
846
|
+
# yourself in AWS Secrets Manager.
|
|
847
|
+
#
|
|
837
848
|
# @option params [Hash<String,String>] :tags
|
|
838
849
|
# A map of tag keys and values to assign to the API key credential
|
|
839
850
|
# provider. Tags enable you to categorize your resources in different
|
|
@@ -842,6 +853,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
842
853
|
# @return [Types::CreateApiKeyCredentialProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
843
854
|
#
|
|
844
855
|
# * {Types::CreateApiKeyCredentialProviderResponse#api_key_secret_arn #api_key_secret_arn} => Types::Secret
|
|
856
|
+
# * {Types::CreateApiKeyCredentialProviderResponse#api_key_secret_json_key #api_key_secret_json_key} => String
|
|
857
|
+
# * {Types::CreateApiKeyCredentialProviderResponse#api_key_secret_source #api_key_secret_source} => String
|
|
845
858
|
# * {Types::CreateApiKeyCredentialProviderResponse#name #name} => String
|
|
846
859
|
# * {Types::CreateApiKeyCredentialProviderResponse#credential_provider_arn #credential_provider_arn} => String
|
|
847
860
|
#
|
|
@@ -849,7 +862,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
849
862
|
#
|
|
850
863
|
# resp = client.create_api_key_credential_provider({
|
|
851
864
|
# name: "CredentialProviderName", # required
|
|
852
|
-
# api_key: "
|
|
865
|
+
# api_key: "DefaultApiKeyType",
|
|
866
|
+
# api_key_secret_config: {
|
|
867
|
+
# secret_id: "SecretIdType", # required
|
|
868
|
+
# json_key: "SecretJsonKeyType", # required
|
|
869
|
+
# },
|
|
870
|
+
# api_key_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
|
|
853
871
|
# tags: {
|
|
854
872
|
# "TagKey" => "TagValue",
|
|
855
873
|
# },
|
|
@@ -858,6 +876,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
858
876
|
# @example Response structure
|
|
859
877
|
#
|
|
860
878
|
# resp.api_key_secret_arn.secret_arn #=> String
|
|
879
|
+
# resp.api_key_secret_json_key #=> String
|
|
880
|
+
# resp.api_key_secret_source #=> String, one of "MANAGED", "EXTERNAL"
|
|
861
881
|
# resp.name #=> String
|
|
862
882
|
# resp.credential_provider_arn #=> String
|
|
863
883
|
#
|
|
@@ -3237,6 +3257,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
3237
3257
|
# @return [Types::CreateOauth2CredentialProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3238
3258
|
#
|
|
3239
3259
|
# * {Types::CreateOauth2CredentialProviderResponse#client_secret_arn #client_secret_arn} => Types::Secret
|
|
3260
|
+
# * {Types::CreateOauth2CredentialProviderResponse#client_secret_json_key #client_secret_json_key} => String
|
|
3261
|
+
# * {Types::CreateOauth2CredentialProviderResponse#client_secret_source #client_secret_source} => String
|
|
3240
3262
|
# * {Types::CreateOauth2CredentialProviderResponse#name #name} => String
|
|
3241
3263
|
# * {Types::CreateOauth2CredentialProviderResponse#credential_provider_arn #credential_provider_arn} => String
|
|
3242
3264
|
# * {Types::CreateOauth2CredentialProviderResponse#callback_url #callback_url} => String
|
|
@@ -3262,6 +3284,19 @@ module Aws::BedrockAgentCoreControl
|
|
|
3262
3284
|
# },
|
|
3263
3285
|
# client_id: "DefaultClientIdType",
|
|
3264
3286
|
# client_secret: "DefaultClientSecretType",
|
|
3287
|
+
# client_secret_config: {
|
|
3288
|
+
# secret_id: "SecretIdType", # required
|
|
3289
|
+
# json_key: "SecretJsonKeyType", # required
|
|
3290
|
+
# },
|
|
3291
|
+
# client_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
|
|
3292
|
+
# on_behalf_of_token_exchange_config: {
|
|
3293
|
+
# grant_type: "TOKEN_EXCHANGE", # required, accepts TOKEN_EXCHANGE, JWT_AUTHORIZATION_GRANT
|
|
3294
|
+
# token_exchange_grant_type_config: {
|
|
3295
|
+
# actor_token_content: "NONE", # required, accepts NONE, M2M, AWS_IAM_ID_TOKEN_JWT
|
|
3296
|
+
# actor_token_scopes: ["ScopeType"],
|
|
3297
|
+
# },
|
|
3298
|
+
# },
|
|
3299
|
+
# client_authentication_method: "CLIENT_SECRET_BASIC", # accepts CLIENT_SECRET_BASIC, CLIENT_SECRET_POST, AWS_IAM_ID_TOKEN_JWT
|
|
3265
3300
|
# private_endpoint: {
|
|
3266
3301
|
# self_managed_lattice_resource: {
|
|
3267
3302
|
# resource_configuration_identifier: "ResourceConfigurationIdentifier",
|
|
@@ -3297,47 +3332,79 @@ module Aws::BedrockAgentCoreControl
|
|
|
3297
3332
|
# },
|
|
3298
3333
|
# },
|
|
3299
3334
|
# ],
|
|
3300
|
-
# on_behalf_of_token_exchange_config: {
|
|
3301
|
-
# grant_type: "TOKEN_EXCHANGE", # required, accepts TOKEN_EXCHANGE, JWT_AUTHORIZATION_GRANT
|
|
3302
|
-
# token_exchange_grant_type_config: {
|
|
3303
|
-
# actor_token_content: "NONE", # required, accepts NONE, M2M, AWS_IAM_ID_TOKEN_JWT
|
|
3304
|
-
# actor_token_scopes: ["ScopeType"],
|
|
3305
|
-
# },
|
|
3306
|
-
# },
|
|
3307
|
-
# client_authentication_method: "CLIENT_SECRET_BASIC", # accepts CLIENT_SECRET_BASIC, CLIENT_SECRET_POST, AWS_IAM_ID_TOKEN_JWT
|
|
3308
3335
|
# },
|
|
3309
3336
|
# google_oauth_2_provider_config: {
|
|
3310
3337
|
# client_id: "ClientIdType", # required
|
|
3311
|
-
# client_secret: "
|
|
3338
|
+
# client_secret: "DefaultClientSecretType",
|
|
3339
|
+
# client_secret_config: {
|
|
3340
|
+
# secret_id: "SecretIdType", # required
|
|
3341
|
+
# json_key: "SecretJsonKeyType", # required
|
|
3342
|
+
# },
|
|
3343
|
+
# client_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
|
|
3312
3344
|
# },
|
|
3313
3345
|
# github_oauth_2_provider_config: {
|
|
3314
3346
|
# client_id: "ClientIdType", # required
|
|
3315
|
-
# client_secret: "
|
|
3347
|
+
# client_secret: "DefaultClientSecretType",
|
|
3348
|
+
# client_secret_config: {
|
|
3349
|
+
# secret_id: "SecretIdType", # required
|
|
3350
|
+
# json_key: "SecretJsonKeyType", # required
|
|
3351
|
+
# },
|
|
3352
|
+
# client_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
|
|
3316
3353
|
# },
|
|
3317
3354
|
# slack_oauth_2_provider_config: {
|
|
3318
3355
|
# client_id: "ClientIdType", # required
|
|
3319
|
-
# client_secret: "
|
|
3356
|
+
# client_secret: "DefaultClientSecretType",
|
|
3357
|
+
# client_secret_config: {
|
|
3358
|
+
# secret_id: "SecretIdType", # required
|
|
3359
|
+
# json_key: "SecretJsonKeyType", # required
|
|
3360
|
+
# },
|
|
3361
|
+
# client_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
|
|
3320
3362
|
# },
|
|
3321
3363
|
# salesforce_oauth_2_provider_config: {
|
|
3322
3364
|
# client_id: "ClientIdType", # required
|
|
3323
|
-
# client_secret: "
|
|
3365
|
+
# client_secret: "DefaultClientSecretType",
|
|
3366
|
+
# client_secret_config: {
|
|
3367
|
+
# secret_id: "SecretIdType", # required
|
|
3368
|
+
# json_key: "SecretJsonKeyType", # required
|
|
3369
|
+
# },
|
|
3370
|
+
# client_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
|
|
3324
3371
|
# },
|
|
3325
3372
|
# microsoft_oauth_2_provider_config: {
|
|
3326
3373
|
# client_id: "ClientIdType", # required
|
|
3327
|
-
# client_secret: "
|
|
3374
|
+
# client_secret: "DefaultClientSecretType",
|
|
3375
|
+
# client_secret_config: {
|
|
3376
|
+
# secret_id: "SecretIdType", # required
|
|
3377
|
+
# json_key: "SecretJsonKeyType", # required
|
|
3378
|
+
# },
|
|
3379
|
+
# client_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
|
|
3328
3380
|
# tenant_id: "TenantIdType",
|
|
3329
3381
|
# },
|
|
3330
3382
|
# atlassian_oauth_2_provider_config: {
|
|
3331
3383
|
# client_id: "ClientIdType", # required
|
|
3332
|
-
# client_secret: "
|
|
3384
|
+
# client_secret: "DefaultClientSecretType",
|
|
3385
|
+
# client_secret_config: {
|
|
3386
|
+
# secret_id: "SecretIdType", # required
|
|
3387
|
+
# json_key: "SecretJsonKeyType", # required
|
|
3388
|
+
# },
|
|
3389
|
+
# client_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
|
|
3333
3390
|
# },
|
|
3334
3391
|
# linkedin_oauth_2_provider_config: {
|
|
3335
3392
|
# client_id: "ClientIdType", # required
|
|
3336
|
-
# client_secret: "
|
|
3393
|
+
# client_secret: "DefaultClientSecretType",
|
|
3394
|
+
# client_secret_config: {
|
|
3395
|
+
# secret_id: "SecretIdType", # required
|
|
3396
|
+
# json_key: "SecretJsonKeyType", # required
|
|
3397
|
+
# },
|
|
3398
|
+
# client_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
|
|
3337
3399
|
# },
|
|
3338
3400
|
# included_oauth_2_provider_config: {
|
|
3339
3401
|
# client_id: "ClientIdType", # required
|
|
3340
|
-
# client_secret: "
|
|
3402
|
+
# client_secret: "DefaultClientSecretType",
|
|
3403
|
+
# client_secret_config: {
|
|
3404
|
+
# secret_id: "SecretIdType", # required
|
|
3405
|
+
# json_key: "SecretJsonKeyType", # required
|
|
3406
|
+
# },
|
|
3407
|
+
# client_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
|
|
3341
3408
|
# issuer: "IssuerUrlType",
|
|
3342
3409
|
# authorization_endpoint: "AuthorizationEndpointType",
|
|
3343
3410
|
# token_endpoint: "TokenEndpointType",
|
|
@@ -3351,6 +3418,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
3351
3418
|
# @example Response structure
|
|
3352
3419
|
#
|
|
3353
3420
|
# resp.client_secret_arn.secret_arn #=> String
|
|
3421
|
+
# resp.client_secret_json_key #=> String
|
|
3422
|
+
# resp.client_secret_source #=> String, one of "MANAGED", "EXTERNAL"
|
|
3354
3423
|
# resp.name #=> String
|
|
3355
3424
|
# resp.credential_provider_arn #=> String
|
|
3356
3425
|
# resp.callback_url #=> String
|
|
@@ -3727,13 +3796,33 @@ module Aws::BedrockAgentCoreControl
|
|
|
3727
3796
|
# provider_configuration_input: { # required
|
|
3728
3797
|
# coinbase_cdp_configuration: {
|
|
3729
3798
|
# api_key_id: "CoinbaseCdpApiKeyIdType", # required
|
|
3730
|
-
# api_key_secret: "
|
|
3731
|
-
#
|
|
3799
|
+
# api_key_secret: "DefaultCoinbaseCdpApiKeySecretType",
|
|
3800
|
+
# api_key_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
|
|
3801
|
+
# api_key_secret_config: {
|
|
3802
|
+
# secret_id: "SecretIdType", # required
|
|
3803
|
+
# json_key: "SecretJsonKeyType", # required
|
|
3804
|
+
# },
|
|
3805
|
+
# wallet_secret: "DefaultCoinbaseCdpWalletSecretType",
|
|
3806
|
+
# wallet_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
|
|
3807
|
+
# wallet_secret_config: {
|
|
3808
|
+
# secret_id: "SecretIdType", # required
|
|
3809
|
+
# json_key: "SecretJsonKeyType", # required
|
|
3810
|
+
# },
|
|
3732
3811
|
# },
|
|
3733
3812
|
# stripe_privy_configuration: {
|
|
3734
3813
|
# app_id: "StripePrivyAppIdType", # required
|
|
3735
|
-
# app_secret: "
|
|
3736
|
-
#
|
|
3814
|
+
# app_secret: "DefaultStripePrivyAppSecretType",
|
|
3815
|
+
# app_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
|
|
3816
|
+
# app_secret_config: {
|
|
3817
|
+
# secret_id: "SecretIdType", # required
|
|
3818
|
+
# json_key: "SecretJsonKeyType", # required
|
|
3819
|
+
# },
|
|
3820
|
+
# authorization_private_key: "DefaultStripePrivyAuthorizationPrivateKeyType",
|
|
3821
|
+
# authorization_private_key_source: "MANAGED", # accepts MANAGED, EXTERNAL
|
|
3822
|
+
# authorization_private_key_config: {
|
|
3823
|
+
# secret_id: "SecretIdType", # required
|
|
3824
|
+
# json_key: "SecretJsonKeyType", # required
|
|
3825
|
+
# },
|
|
3737
3826
|
# authorization_id: "StripePrivyAuthorizationIdType", # required
|
|
3738
3827
|
# },
|
|
3739
3828
|
# },
|
|
@@ -3749,10 +3838,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
3749
3838
|
# resp.credential_provider_arn #=> String
|
|
3750
3839
|
# resp.provider_configuration_output.coinbase_cdp_configuration.api_key_id #=> String
|
|
3751
3840
|
# resp.provider_configuration_output.coinbase_cdp_configuration.api_key_secret_arn.secret_arn #=> String
|
|
3841
|
+
# resp.provider_configuration_output.coinbase_cdp_configuration.api_key_secret_json_key #=> String
|
|
3842
|
+
# resp.provider_configuration_output.coinbase_cdp_configuration.api_key_secret_source #=> String, one of "MANAGED", "EXTERNAL"
|
|
3752
3843
|
# resp.provider_configuration_output.coinbase_cdp_configuration.wallet_secret_arn.secret_arn #=> String
|
|
3844
|
+
# resp.provider_configuration_output.coinbase_cdp_configuration.wallet_secret_json_key #=> String
|
|
3845
|
+
# resp.provider_configuration_output.coinbase_cdp_configuration.wallet_secret_source #=> String, one of "MANAGED", "EXTERNAL"
|
|
3753
3846
|
# resp.provider_configuration_output.stripe_privy_configuration.app_id #=> String
|
|
3754
3847
|
# resp.provider_configuration_output.stripe_privy_configuration.app_secret_arn.secret_arn #=> String
|
|
3848
|
+
# resp.provider_configuration_output.stripe_privy_configuration.app_secret_json_key #=> String
|
|
3849
|
+
# resp.provider_configuration_output.stripe_privy_configuration.app_secret_source #=> String, one of "MANAGED", "EXTERNAL"
|
|
3755
3850
|
# resp.provider_configuration_output.stripe_privy_configuration.authorization_private_key_arn.secret_arn #=> String
|
|
3851
|
+
# resp.provider_configuration_output.stripe_privy_configuration.authorization_private_key_json_key #=> String
|
|
3852
|
+
# resp.provider_configuration_output.stripe_privy_configuration.authorization_private_key_source #=> String, one of "MANAGED", "EXTERNAL"
|
|
3756
3853
|
# resp.provider_configuration_output.stripe_privy_configuration.authorization_id #=> String
|
|
3757
3854
|
#
|
|
3758
3855
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreatePaymentCredentialProvider AWS API Documentation
|
|
@@ -5823,6 +5920,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
5823
5920
|
# @return [Types::GetApiKeyCredentialProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5824
5921
|
#
|
|
5825
5922
|
# * {Types::GetApiKeyCredentialProviderResponse#api_key_secret_arn #api_key_secret_arn} => Types::Secret
|
|
5923
|
+
# * {Types::GetApiKeyCredentialProviderResponse#api_key_secret_json_key #api_key_secret_json_key} => String
|
|
5924
|
+
# * {Types::GetApiKeyCredentialProviderResponse#api_key_secret_source #api_key_secret_source} => String
|
|
5826
5925
|
# * {Types::GetApiKeyCredentialProviderResponse#name #name} => String
|
|
5827
5926
|
# * {Types::GetApiKeyCredentialProviderResponse#credential_provider_arn #credential_provider_arn} => String
|
|
5828
5927
|
# * {Types::GetApiKeyCredentialProviderResponse#created_time #created_time} => Time
|
|
@@ -5837,6 +5936,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
5837
5936
|
# @example Response structure
|
|
5838
5937
|
#
|
|
5839
5938
|
# resp.api_key_secret_arn.secret_arn #=> String
|
|
5939
|
+
# resp.api_key_secret_json_key #=> String
|
|
5940
|
+
# resp.api_key_secret_source #=> String, one of "MANAGED", "EXTERNAL"
|
|
5840
5941
|
# resp.name #=> String
|
|
5841
5942
|
# resp.credential_provider_arn #=> String
|
|
5842
5943
|
# resp.created_time #=> Time
|
|
@@ -6913,6 +7014,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
6913
7014
|
# @return [Types::GetOauth2CredentialProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6914
7015
|
#
|
|
6915
7016
|
# * {Types::GetOauth2CredentialProviderResponse#client_secret_arn #client_secret_arn} => Types::Secret
|
|
7017
|
+
# * {Types::GetOauth2CredentialProviderResponse#client_secret_json_key #client_secret_json_key} => String
|
|
7018
|
+
# * {Types::GetOauth2CredentialProviderResponse#client_secret_source #client_secret_source} => String
|
|
6916
7019
|
# * {Types::GetOauth2CredentialProviderResponse#name #name} => String
|
|
6917
7020
|
# * {Types::GetOauth2CredentialProviderResponse#credential_provider_arn #credential_provider_arn} => String
|
|
6918
7021
|
# * {Types::GetOauth2CredentialProviderResponse#credential_provider_vendor #credential_provider_vendor} => String
|
|
@@ -6932,6 +7035,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
6932
7035
|
# @example Response structure
|
|
6933
7036
|
#
|
|
6934
7037
|
# resp.client_secret_arn.secret_arn #=> String
|
|
7038
|
+
# resp.client_secret_json_key #=> String
|
|
7039
|
+
# resp.client_secret_source #=> String, one of "MANAGED", "EXTERNAL"
|
|
6935
7040
|
# resp.name #=> String
|
|
6936
7041
|
# resp.credential_provider_arn #=> String
|
|
6937
7042
|
# resp.credential_provider_vendor #=> String, one of "GoogleOauth2", "GithubOauth2", "SlackOauth2", "SalesforceOauth2", "MicrosoftOauth2", "CustomOauth2", "AtlassianOauth2", "LinkedinOauth2", "XOauth2", "OktaOauth2", "OneLoginOauth2", "PingOneOauth2", "FacebookOauth2", "YandexOauth2", "RedditOauth2", "ZoomOauth2", "TwitchOauth2", "SpotifyOauth2", "DropboxOauth2", "NotionOauth2", "HubspotOauth2", "CyberArkOauth2", "FusionAuthOauth2", "Auth0Oauth2", "CognitoOauth2"
|
|
@@ -7202,10 +7307,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
7202
7307
|
# resp.credential_provider_vendor #=> String, one of "CoinbaseCDP", "StripePrivy"
|
|
7203
7308
|
# resp.provider_configuration_output.coinbase_cdp_configuration.api_key_id #=> String
|
|
7204
7309
|
# resp.provider_configuration_output.coinbase_cdp_configuration.api_key_secret_arn.secret_arn #=> String
|
|
7310
|
+
# resp.provider_configuration_output.coinbase_cdp_configuration.api_key_secret_json_key #=> String
|
|
7311
|
+
# resp.provider_configuration_output.coinbase_cdp_configuration.api_key_secret_source #=> String, one of "MANAGED", "EXTERNAL"
|
|
7205
7312
|
# resp.provider_configuration_output.coinbase_cdp_configuration.wallet_secret_arn.secret_arn #=> String
|
|
7313
|
+
# resp.provider_configuration_output.coinbase_cdp_configuration.wallet_secret_json_key #=> String
|
|
7314
|
+
# resp.provider_configuration_output.coinbase_cdp_configuration.wallet_secret_source #=> String, one of "MANAGED", "EXTERNAL"
|
|
7206
7315
|
# resp.provider_configuration_output.stripe_privy_configuration.app_id #=> String
|
|
7207
7316
|
# resp.provider_configuration_output.stripe_privy_configuration.app_secret_arn.secret_arn #=> String
|
|
7317
|
+
# resp.provider_configuration_output.stripe_privy_configuration.app_secret_json_key #=> String
|
|
7318
|
+
# resp.provider_configuration_output.stripe_privy_configuration.app_secret_source #=> String, one of "MANAGED", "EXTERNAL"
|
|
7208
7319
|
# resp.provider_configuration_output.stripe_privy_configuration.authorization_private_key_arn.secret_arn #=> String
|
|
7320
|
+
# resp.provider_configuration_output.stripe_privy_configuration.authorization_private_key_json_key #=> String
|
|
7321
|
+
# resp.provider_configuration_output.stripe_privy_configuration.authorization_private_key_source #=> String, one of "MANAGED", "EXTERNAL"
|
|
7209
7322
|
# resp.provider_configuration_output.stripe_privy_configuration.authorization_id #=> String
|
|
7210
7323
|
# resp.created_time #=> Time
|
|
7211
7324
|
# resp.last_updated_time #=> Time
|
|
@@ -10415,13 +10528,26 @@ module Aws::BedrockAgentCoreControl
|
|
|
10415
10528
|
# @option params [required, String] :name
|
|
10416
10529
|
# The name of the API key credential provider to update.
|
|
10417
10530
|
#
|
|
10418
|
-
# @option params [
|
|
10531
|
+
# @option params [String] :api_key
|
|
10419
10532
|
# The new API key to use for authentication. This value replaces the
|
|
10420
10533
|
# existing API key and is encrypted and stored securely.
|
|
10421
10534
|
#
|
|
10535
|
+
# @option params [Types::SecretReference] :api_key_secret_config
|
|
10536
|
+
# A reference to the AWS Secrets Manager secret that stores the API key.
|
|
10537
|
+
# This includes the secret ID and the JSON key used to extract the API
|
|
10538
|
+
# key value from the secret. Required when `apiKeySecretSource` is set
|
|
10539
|
+
# to `EXTERNAL`.
|
|
10540
|
+
#
|
|
10541
|
+
# @option params [String] :api_key_secret_source
|
|
10542
|
+
# The source type of the API key secret. Use `MANAGED` if the secret is
|
|
10543
|
+
# managed by the service, or `EXTERNAL` if you manage the secret
|
|
10544
|
+
# yourself in AWS Secrets Manager.
|
|
10545
|
+
#
|
|
10422
10546
|
# @return [Types::UpdateApiKeyCredentialProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
10423
10547
|
#
|
|
10424
10548
|
# * {Types::UpdateApiKeyCredentialProviderResponse#api_key_secret_arn #api_key_secret_arn} => Types::Secret
|
|
10549
|
+
# * {Types::UpdateApiKeyCredentialProviderResponse#api_key_secret_json_key #api_key_secret_json_key} => String
|
|
10550
|
+
# * {Types::UpdateApiKeyCredentialProviderResponse#api_key_secret_source #api_key_secret_source} => String
|
|
10425
10551
|
# * {Types::UpdateApiKeyCredentialProviderResponse#name #name} => String
|
|
10426
10552
|
# * {Types::UpdateApiKeyCredentialProviderResponse#credential_provider_arn #credential_provider_arn} => String
|
|
10427
10553
|
# * {Types::UpdateApiKeyCredentialProviderResponse#created_time #created_time} => Time
|
|
@@ -10431,12 +10557,19 @@ module Aws::BedrockAgentCoreControl
|
|
|
10431
10557
|
#
|
|
10432
10558
|
# resp = client.update_api_key_credential_provider({
|
|
10433
10559
|
# name: "CredentialProviderName", # required
|
|
10434
|
-
# api_key: "
|
|
10560
|
+
# api_key: "DefaultApiKeyType",
|
|
10561
|
+
# api_key_secret_config: {
|
|
10562
|
+
# secret_id: "SecretIdType", # required
|
|
10563
|
+
# json_key: "SecretJsonKeyType", # required
|
|
10564
|
+
# },
|
|
10565
|
+
# api_key_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
|
|
10435
10566
|
# })
|
|
10436
10567
|
#
|
|
10437
10568
|
# @example Response structure
|
|
10438
10569
|
#
|
|
10439
10570
|
# resp.api_key_secret_arn.secret_arn #=> String
|
|
10571
|
+
# resp.api_key_secret_json_key #=> String
|
|
10572
|
+
# resp.api_key_secret_source #=> String, one of "MANAGED", "EXTERNAL"
|
|
10440
10573
|
# resp.name #=> String
|
|
10441
10574
|
# resp.credential_provider_arn #=> String
|
|
10442
10575
|
# resp.created_time #=> Time
|
|
@@ -12632,6 +12765,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
12632
12765
|
# @return [Types::UpdateOauth2CredentialProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
12633
12766
|
#
|
|
12634
12767
|
# * {Types::UpdateOauth2CredentialProviderResponse#client_secret_arn #client_secret_arn} => Types::Secret
|
|
12768
|
+
# * {Types::UpdateOauth2CredentialProviderResponse#client_secret_json_key #client_secret_json_key} => String
|
|
12769
|
+
# * {Types::UpdateOauth2CredentialProviderResponse#client_secret_source #client_secret_source} => String
|
|
12635
12770
|
# * {Types::UpdateOauth2CredentialProviderResponse#name #name} => String
|
|
12636
12771
|
# * {Types::UpdateOauth2CredentialProviderResponse#credential_provider_vendor #credential_provider_vendor} => String
|
|
12637
12772
|
# * {Types::UpdateOauth2CredentialProviderResponse#credential_provider_arn #credential_provider_arn} => String
|
|
@@ -12660,6 +12795,19 @@ module Aws::BedrockAgentCoreControl
|
|
|
12660
12795
|
# },
|
|
12661
12796
|
# client_id: "DefaultClientIdType",
|
|
12662
12797
|
# client_secret: "DefaultClientSecretType",
|
|
12798
|
+
# client_secret_config: {
|
|
12799
|
+
# secret_id: "SecretIdType", # required
|
|
12800
|
+
# json_key: "SecretJsonKeyType", # required
|
|
12801
|
+
# },
|
|
12802
|
+
# client_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
|
|
12803
|
+
# on_behalf_of_token_exchange_config: {
|
|
12804
|
+
# grant_type: "TOKEN_EXCHANGE", # required, accepts TOKEN_EXCHANGE, JWT_AUTHORIZATION_GRANT
|
|
12805
|
+
# token_exchange_grant_type_config: {
|
|
12806
|
+
# actor_token_content: "NONE", # required, accepts NONE, M2M, AWS_IAM_ID_TOKEN_JWT
|
|
12807
|
+
# actor_token_scopes: ["ScopeType"],
|
|
12808
|
+
# },
|
|
12809
|
+
# },
|
|
12810
|
+
# client_authentication_method: "CLIENT_SECRET_BASIC", # accepts CLIENT_SECRET_BASIC, CLIENT_SECRET_POST, AWS_IAM_ID_TOKEN_JWT
|
|
12663
12811
|
# private_endpoint: {
|
|
12664
12812
|
# self_managed_lattice_resource: {
|
|
12665
12813
|
# resource_configuration_identifier: "ResourceConfigurationIdentifier",
|
|
@@ -12695,47 +12843,79 @@ module Aws::BedrockAgentCoreControl
|
|
|
12695
12843
|
# },
|
|
12696
12844
|
# },
|
|
12697
12845
|
# ],
|
|
12698
|
-
# on_behalf_of_token_exchange_config: {
|
|
12699
|
-
# grant_type: "TOKEN_EXCHANGE", # required, accepts TOKEN_EXCHANGE, JWT_AUTHORIZATION_GRANT
|
|
12700
|
-
# token_exchange_grant_type_config: {
|
|
12701
|
-
# actor_token_content: "NONE", # required, accepts NONE, M2M, AWS_IAM_ID_TOKEN_JWT
|
|
12702
|
-
# actor_token_scopes: ["ScopeType"],
|
|
12703
|
-
# },
|
|
12704
|
-
# },
|
|
12705
|
-
# client_authentication_method: "CLIENT_SECRET_BASIC", # accepts CLIENT_SECRET_BASIC, CLIENT_SECRET_POST, AWS_IAM_ID_TOKEN_JWT
|
|
12706
12846
|
# },
|
|
12707
12847
|
# google_oauth_2_provider_config: {
|
|
12708
12848
|
# client_id: "ClientIdType", # required
|
|
12709
|
-
# client_secret: "
|
|
12849
|
+
# client_secret: "DefaultClientSecretType",
|
|
12850
|
+
# client_secret_config: {
|
|
12851
|
+
# secret_id: "SecretIdType", # required
|
|
12852
|
+
# json_key: "SecretJsonKeyType", # required
|
|
12853
|
+
# },
|
|
12854
|
+
# client_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
|
|
12710
12855
|
# },
|
|
12711
12856
|
# github_oauth_2_provider_config: {
|
|
12712
12857
|
# client_id: "ClientIdType", # required
|
|
12713
|
-
# client_secret: "
|
|
12858
|
+
# client_secret: "DefaultClientSecretType",
|
|
12859
|
+
# client_secret_config: {
|
|
12860
|
+
# secret_id: "SecretIdType", # required
|
|
12861
|
+
# json_key: "SecretJsonKeyType", # required
|
|
12862
|
+
# },
|
|
12863
|
+
# client_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
|
|
12714
12864
|
# },
|
|
12715
12865
|
# slack_oauth_2_provider_config: {
|
|
12716
12866
|
# client_id: "ClientIdType", # required
|
|
12717
|
-
# client_secret: "
|
|
12867
|
+
# client_secret: "DefaultClientSecretType",
|
|
12868
|
+
# client_secret_config: {
|
|
12869
|
+
# secret_id: "SecretIdType", # required
|
|
12870
|
+
# json_key: "SecretJsonKeyType", # required
|
|
12871
|
+
# },
|
|
12872
|
+
# client_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
|
|
12718
12873
|
# },
|
|
12719
12874
|
# salesforce_oauth_2_provider_config: {
|
|
12720
12875
|
# client_id: "ClientIdType", # required
|
|
12721
|
-
# client_secret: "
|
|
12876
|
+
# client_secret: "DefaultClientSecretType",
|
|
12877
|
+
# client_secret_config: {
|
|
12878
|
+
# secret_id: "SecretIdType", # required
|
|
12879
|
+
# json_key: "SecretJsonKeyType", # required
|
|
12880
|
+
# },
|
|
12881
|
+
# client_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
|
|
12722
12882
|
# },
|
|
12723
12883
|
# microsoft_oauth_2_provider_config: {
|
|
12724
12884
|
# client_id: "ClientIdType", # required
|
|
12725
|
-
# client_secret: "
|
|
12885
|
+
# client_secret: "DefaultClientSecretType",
|
|
12886
|
+
# client_secret_config: {
|
|
12887
|
+
# secret_id: "SecretIdType", # required
|
|
12888
|
+
# json_key: "SecretJsonKeyType", # required
|
|
12889
|
+
# },
|
|
12890
|
+
# client_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
|
|
12726
12891
|
# tenant_id: "TenantIdType",
|
|
12727
12892
|
# },
|
|
12728
12893
|
# atlassian_oauth_2_provider_config: {
|
|
12729
12894
|
# client_id: "ClientIdType", # required
|
|
12730
|
-
# client_secret: "
|
|
12895
|
+
# client_secret: "DefaultClientSecretType",
|
|
12896
|
+
# client_secret_config: {
|
|
12897
|
+
# secret_id: "SecretIdType", # required
|
|
12898
|
+
# json_key: "SecretJsonKeyType", # required
|
|
12899
|
+
# },
|
|
12900
|
+
# client_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
|
|
12731
12901
|
# },
|
|
12732
12902
|
# linkedin_oauth_2_provider_config: {
|
|
12733
12903
|
# client_id: "ClientIdType", # required
|
|
12734
|
-
# client_secret: "
|
|
12904
|
+
# client_secret: "DefaultClientSecretType",
|
|
12905
|
+
# client_secret_config: {
|
|
12906
|
+
# secret_id: "SecretIdType", # required
|
|
12907
|
+
# json_key: "SecretJsonKeyType", # required
|
|
12908
|
+
# },
|
|
12909
|
+
# client_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
|
|
12735
12910
|
# },
|
|
12736
12911
|
# included_oauth_2_provider_config: {
|
|
12737
12912
|
# client_id: "ClientIdType", # required
|
|
12738
|
-
# client_secret: "
|
|
12913
|
+
# client_secret: "DefaultClientSecretType",
|
|
12914
|
+
# client_secret_config: {
|
|
12915
|
+
# secret_id: "SecretIdType", # required
|
|
12916
|
+
# json_key: "SecretJsonKeyType", # required
|
|
12917
|
+
# },
|
|
12918
|
+
# client_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
|
|
12739
12919
|
# issuer: "IssuerUrlType",
|
|
12740
12920
|
# authorization_endpoint: "AuthorizationEndpointType",
|
|
12741
12921
|
# token_endpoint: "TokenEndpointType",
|
|
@@ -12746,6 +12926,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
12746
12926
|
# @example Response structure
|
|
12747
12927
|
#
|
|
12748
12928
|
# resp.client_secret_arn.secret_arn #=> String
|
|
12929
|
+
# resp.client_secret_json_key #=> String
|
|
12930
|
+
# resp.client_secret_source #=> String, one of "MANAGED", "EXTERNAL"
|
|
12749
12931
|
# resp.name #=> String
|
|
12750
12932
|
# resp.credential_provider_vendor #=> String, one of "GoogleOauth2", "GithubOauth2", "SlackOauth2", "SalesforceOauth2", "MicrosoftOauth2", "CustomOauth2", "AtlassianOauth2", "LinkedinOauth2", "XOauth2", "OktaOauth2", "OneLoginOauth2", "PingOneOauth2", "FacebookOauth2", "YandexOauth2", "RedditOauth2", "ZoomOauth2", "TwitchOauth2", "SpotifyOauth2", "DropboxOauth2", "NotionOauth2", "HubspotOauth2", "CyberArkOauth2", "FusionAuthOauth2", "Auth0Oauth2", "CognitoOauth2"
|
|
12751
12933
|
# resp.credential_provider_arn #=> String
|
|
@@ -13096,13 +13278,33 @@ module Aws::BedrockAgentCoreControl
|
|
|
13096
13278
|
# provider_configuration_input: { # required
|
|
13097
13279
|
# coinbase_cdp_configuration: {
|
|
13098
13280
|
# api_key_id: "CoinbaseCdpApiKeyIdType", # required
|
|
13099
|
-
# api_key_secret: "
|
|
13100
|
-
#
|
|
13281
|
+
# api_key_secret: "DefaultCoinbaseCdpApiKeySecretType",
|
|
13282
|
+
# api_key_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
|
|
13283
|
+
# api_key_secret_config: {
|
|
13284
|
+
# secret_id: "SecretIdType", # required
|
|
13285
|
+
# json_key: "SecretJsonKeyType", # required
|
|
13286
|
+
# },
|
|
13287
|
+
# wallet_secret: "DefaultCoinbaseCdpWalletSecretType",
|
|
13288
|
+
# wallet_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
|
|
13289
|
+
# wallet_secret_config: {
|
|
13290
|
+
# secret_id: "SecretIdType", # required
|
|
13291
|
+
# json_key: "SecretJsonKeyType", # required
|
|
13292
|
+
# },
|
|
13101
13293
|
# },
|
|
13102
13294
|
# stripe_privy_configuration: {
|
|
13103
13295
|
# app_id: "StripePrivyAppIdType", # required
|
|
13104
|
-
# app_secret: "
|
|
13105
|
-
#
|
|
13296
|
+
# app_secret: "DefaultStripePrivyAppSecretType",
|
|
13297
|
+
# app_secret_source: "MANAGED", # accepts MANAGED, EXTERNAL
|
|
13298
|
+
# app_secret_config: {
|
|
13299
|
+
# secret_id: "SecretIdType", # required
|
|
13300
|
+
# json_key: "SecretJsonKeyType", # required
|
|
13301
|
+
# },
|
|
13302
|
+
# authorization_private_key: "DefaultStripePrivyAuthorizationPrivateKeyType",
|
|
13303
|
+
# authorization_private_key_source: "MANAGED", # accepts MANAGED, EXTERNAL
|
|
13304
|
+
# authorization_private_key_config: {
|
|
13305
|
+
# secret_id: "SecretIdType", # required
|
|
13306
|
+
# json_key: "SecretJsonKeyType", # required
|
|
13307
|
+
# },
|
|
13106
13308
|
# authorization_id: "StripePrivyAuthorizationIdType", # required
|
|
13107
13309
|
# },
|
|
13108
13310
|
# },
|
|
@@ -13115,10 +13317,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
13115
13317
|
# resp.credential_provider_arn #=> String
|
|
13116
13318
|
# resp.provider_configuration_output.coinbase_cdp_configuration.api_key_id #=> String
|
|
13117
13319
|
# resp.provider_configuration_output.coinbase_cdp_configuration.api_key_secret_arn.secret_arn #=> String
|
|
13320
|
+
# resp.provider_configuration_output.coinbase_cdp_configuration.api_key_secret_json_key #=> String
|
|
13321
|
+
# resp.provider_configuration_output.coinbase_cdp_configuration.api_key_secret_source #=> String, one of "MANAGED", "EXTERNAL"
|
|
13118
13322
|
# resp.provider_configuration_output.coinbase_cdp_configuration.wallet_secret_arn.secret_arn #=> String
|
|
13323
|
+
# resp.provider_configuration_output.coinbase_cdp_configuration.wallet_secret_json_key #=> String
|
|
13324
|
+
# resp.provider_configuration_output.coinbase_cdp_configuration.wallet_secret_source #=> String, one of "MANAGED", "EXTERNAL"
|
|
13119
13325
|
# resp.provider_configuration_output.stripe_privy_configuration.app_id #=> String
|
|
13120
13326
|
# resp.provider_configuration_output.stripe_privy_configuration.app_secret_arn.secret_arn #=> String
|
|
13327
|
+
# resp.provider_configuration_output.stripe_privy_configuration.app_secret_json_key #=> String
|
|
13328
|
+
# resp.provider_configuration_output.stripe_privy_configuration.app_secret_source #=> String, one of "MANAGED", "EXTERNAL"
|
|
13121
13329
|
# resp.provider_configuration_output.stripe_privy_configuration.authorization_private_key_arn.secret_arn #=> String
|
|
13330
|
+
# resp.provider_configuration_output.stripe_privy_configuration.authorization_private_key_json_key #=> String
|
|
13331
|
+
# resp.provider_configuration_output.stripe_privy_configuration.authorization_private_key_source #=> String, one of "MANAGED", "EXTERNAL"
|
|
13122
13332
|
# resp.provider_configuration_output.stripe_privy_configuration.authorization_id #=> String
|
|
13123
13333
|
# resp.created_time #=> Time
|
|
13124
13334
|
# resp.last_updated_time #=> Time
|
|
@@ -13898,7 +14108,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
13898
14108
|
tracer: tracer
|
|
13899
14109
|
)
|
|
13900
14110
|
context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
|
|
13901
|
-
context[:gem_version] = '1.
|
|
14111
|
+
context[:gem_version] = '1.51.0'
|
|
13902
14112
|
Seahorse::Client::Request.new(handlers, context)
|
|
13903
14113
|
end
|
|
13904
14114
|
|