aws-sdk-bedrockagentcorecontrol 1.49.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client.rb +366 -49
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +124 -24
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +556 -27
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +26 -8
- data/sig/params.rbs +190 -66
- data/sig/types.rbs +101 -2
- metadata +1 -1
|
@@ -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
|
#
|
|
@@ -2454,6 +2474,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
2454
2474
|
# max_tokens: 1,
|
|
2455
2475
|
# temperature: 1.0,
|
|
2456
2476
|
# top_p: 1.0,
|
|
2477
|
+
# api_format: "converse_stream", # accepts converse_stream, responses, chat_completions
|
|
2478
|
+
# additional_params: {
|
|
2479
|
+
# },
|
|
2457
2480
|
# },
|
|
2458
2481
|
# open_ai_model_config: {
|
|
2459
2482
|
# model_id: "ModelId", # required
|
|
@@ -2461,6 +2484,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
2461
2484
|
# max_tokens: 1,
|
|
2462
2485
|
# temperature: 1.0,
|
|
2463
2486
|
# top_p: 1.0,
|
|
2487
|
+
# api_format: "chat_completions", # accepts chat_completions, responses
|
|
2488
|
+
# additional_params: {
|
|
2489
|
+
# },
|
|
2464
2490
|
# },
|
|
2465
2491
|
# gemini_model_config: {
|
|
2466
2492
|
# model_id: "ModelId", # required
|
|
@@ -2470,6 +2496,16 @@ module Aws::BedrockAgentCoreControl
|
|
|
2470
2496
|
# top_p: 1.0,
|
|
2471
2497
|
# top_k: 1,
|
|
2472
2498
|
# },
|
|
2499
|
+
# lite_llm_model_config: {
|
|
2500
|
+
# model_id: "ModelId", # required
|
|
2501
|
+
# api_key_arn: "ApiKeyArn",
|
|
2502
|
+
# api_base: "HarnessLiteLlmApiBase",
|
|
2503
|
+
# max_tokens: 1,
|
|
2504
|
+
# temperature: 1.0,
|
|
2505
|
+
# top_p: 1.0,
|
|
2506
|
+
# additional_params: {
|
|
2507
|
+
# },
|
|
2508
|
+
# },
|
|
2473
2509
|
# },
|
|
2474
2510
|
# system_prompt: [
|
|
2475
2511
|
# {
|
|
@@ -2488,7 +2524,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2488
2524
|
# },
|
|
2489
2525
|
# },
|
|
2490
2526
|
# agent_core_browser: {
|
|
2491
|
-
# browser_arn: "
|
|
2527
|
+
# browser_arn: "HarnessBrowserArn",
|
|
2492
2528
|
# },
|
|
2493
2529
|
# agent_core_gateway: {
|
|
2494
2530
|
# gateway_arn: "GatewayArn", # required
|
|
@@ -2514,7 +2550,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2514
2550
|
# },
|
|
2515
2551
|
# },
|
|
2516
2552
|
# agent_core_code_interpreter: {
|
|
2517
|
-
# code_interpreter_arn: "
|
|
2553
|
+
# code_interpreter_arn: "HarnessCodeInterpreterArn",
|
|
2518
2554
|
# },
|
|
2519
2555
|
# },
|
|
2520
2556
|
# },
|
|
@@ -2522,6 +2558,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
2522
2558
|
# skills: [
|
|
2523
2559
|
# {
|
|
2524
2560
|
# path: "HarnessSkillPath",
|
|
2561
|
+
# s3: {
|
|
2562
|
+
# uri: "HarnessSkillS3Uri", # required
|
|
2563
|
+
# },
|
|
2564
|
+
# git: {
|
|
2565
|
+
# url: "HarnessSkillGitUrl", # required
|
|
2566
|
+
# path: "String",
|
|
2567
|
+
# auth: {
|
|
2568
|
+
# credential_arn: "ApiKeyArn", # required
|
|
2569
|
+
# username: "String",
|
|
2570
|
+
# },
|
|
2571
|
+
# },
|
|
2525
2572
|
# },
|
|
2526
2573
|
# ],
|
|
2527
2574
|
# allowed_tools: ["HarnessAllowedTool"],
|
|
@@ -2573,17 +2620,25 @@ module Aws::BedrockAgentCoreControl
|
|
|
2573
2620
|
# resp.harness.model.bedrock_model_config.max_tokens #=> Integer
|
|
2574
2621
|
# resp.harness.model.bedrock_model_config.temperature #=> Float
|
|
2575
2622
|
# resp.harness.model.bedrock_model_config.top_p #=> Float
|
|
2623
|
+
# resp.harness.model.bedrock_model_config.api_format #=> String, one of "converse_stream", "responses", "chat_completions"
|
|
2576
2624
|
# resp.harness.model.open_ai_model_config.model_id #=> String
|
|
2577
2625
|
# resp.harness.model.open_ai_model_config.api_key_arn #=> String
|
|
2578
2626
|
# resp.harness.model.open_ai_model_config.max_tokens #=> Integer
|
|
2579
2627
|
# resp.harness.model.open_ai_model_config.temperature #=> Float
|
|
2580
2628
|
# resp.harness.model.open_ai_model_config.top_p #=> Float
|
|
2629
|
+
# resp.harness.model.open_ai_model_config.api_format #=> String, one of "chat_completions", "responses"
|
|
2581
2630
|
# resp.harness.model.gemini_model_config.model_id #=> String
|
|
2582
2631
|
# resp.harness.model.gemini_model_config.api_key_arn #=> String
|
|
2583
2632
|
# resp.harness.model.gemini_model_config.max_tokens #=> Integer
|
|
2584
2633
|
# resp.harness.model.gemini_model_config.temperature #=> Float
|
|
2585
2634
|
# resp.harness.model.gemini_model_config.top_p #=> Float
|
|
2586
2635
|
# resp.harness.model.gemini_model_config.top_k #=> Integer
|
|
2636
|
+
# resp.harness.model.lite_llm_model_config.model_id #=> String
|
|
2637
|
+
# resp.harness.model.lite_llm_model_config.api_key_arn #=> String
|
|
2638
|
+
# resp.harness.model.lite_llm_model_config.api_base #=> String
|
|
2639
|
+
# resp.harness.model.lite_llm_model_config.max_tokens #=> Integer
|
|
2640
|
+
# resp.harness.model.lite_llm_model_config.temperature #=> Float
|
|
2641
|
+
# resp.harness.model.lite_llm_model_config.top_p #=> Float
|
|
2587
2642
|
# resp.harness.system_prompt #=> Array
|
|
2588
2643
|
# resp.harness.system_prompt[0].text #=> String
|
|
2589
2644
|
# resp.harness.tools #=> Array
|
|
@@ -2605,6 +2660,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
2605
2660
|
# resp.harness.tools[0].config.agent_core_code_interpreter.code_interpreter_arn #=> String
|
|
2606
2661
|
# resp.harness.skills #=> Array
|
|
2607
2662
|
# resp.harness.skills[0].path #=> String
|
|
2663
|
+
# resp.harness.skills[0].s3.uri #=> String
|
|
2664
|
+
# resp.harness.skills[0].git.url #=> String
|
|
2665
|
+
# resp.harness.skills[0].git.path #=> String
|
|
2666
|
+
# resp.harness.skills[0].git.auth.credential_arn #=> String
|
|
2667
|
+
# resp.harness.skills[0].git.auth.username #=> String
|
|
2608
2668
|
# resp.harness.allowed_tools #=> Array
|
|
2609
2669
|
# resp.harness.allowed_tools[0] #=> String
|
|
2610
2670
|
# resp.harness.truncation.strategy #=> String, one of "sliding_window", "summarization", "none"
|
|
@@ -3197,6 +3257,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
3197
3257
|
# @return [Types::CreateOauth2CredentialProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3198
3258
|
#
|
|
3199
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
|
|
3200
3262
|
# * {Types::CreateOauth2CredentialProviderResponse#name #name} => String
|
|
3201
3263
|
# * {Types::CreateOauth2CredentialProviderResponse#credential_provider_arn #credential_provider_arn} => String
|
|
3202
3264
|
# * {Types::CreateOauth2CredentialProviderResponse#callback_url #callback_url} => String
|
|
@@ -3222,6 +3284,19 @@ module Aws::BedrockAgentCoreControl
|
|
|
3222
3284
|
# },
|
|
3223
3285
|
# client_id: "DefaultClientIdType",
|
|
3224
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
|
|
3225
3300
|
# private_endpoint: {
|
|
3226
3301
|
# self_managed_lattice_resource: {
|
|
3227
3302
|
# resource_configuration_identifier: "ResourceConfigurationIdentifier",
|
|
@@ -3257,47 +3332,79 @@ module Aws::BedrockAgentCoreControl
|
|
|
3257
3332
|
# },
|
|
3258
3333
|
# },
|
|
3259
3334
|
# ],
|
|
3260
|
-
# on_behalf_of_token_exchange_config: {
|
|
3261
|
-
# grant_type: "TOKEN_EXCHANGE", # required, accepts TOKEN_EXCHANGE, JWT_AUTHORIZATION_GRANT
|
|
3262
|
-
# token_exchange_grant_type_config: {
|
|
3263
|
-
# actor_token_content: "NONE", # required, accepts NONE, M2M, AWS_IAM_ID_TOKEN_JWT
|
|
3264
|
-
# actor_token_scopes: ["ScopeType"],
|
|
3265
|
-
# },
|
|
3266
|
-
# },
|
|
3267
|
-
# client_authentication_method: "CLIENT_SECRET_BASIC", # accepts CLIENT_SECRET_BASIC, CLIENT_SECRET_POST, AWS_IAM_ID_TOKEN_JWT
|
|
3268
3335
|
# },
|
|
3269
3336
|
# google_oauth_2_provider_config: {
|
|
3270
3337
|
# client_id: "ClientIdType", # required
|
|
3271
|
-
# 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
|
|
3272
3344
|
# },
|
|
3273
3345
|
# github_oauth_2_provider_config: {
|
|
3274
3346
|
# client_id: "ClientIdType", # required
|
|
3275
|
-
# 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
|
|
3276
3353
|
# },
|
|
3277
3354
|
# slack_oauth_2_provider_config: {
|
|
3278
3355
|
# client_id: "ClientIdType", # required
|
|
3279
|
-
# 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
|
|
3280
3362
|
# },
|
|
3281
3363
|
# salesforce_oauth_2_provider_config: {
|
|
3282
3364
|
# client_id: "ClientIdType", # required
|
|
3283
|
-
# 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
|
|
3284
3371
|
# },
|
|
3285
3372
|
# microsoft_oauth_2_provider_config: {
|
|
3286
3373
|
# client_id: "ClientIdType", # required
|
|
3287
|
-
# 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
|
|
3288
3380
|
# tenant_id: "TenantIdType",
|
|
3289
3381
|
# },
|
|
3290
3382
|
# atlassian_oauth_2_provider_config: {
|
|
3291
3383
|
# client_id: "ClientIdType", # required
|
|
3292
|
-
# 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
|
|
3293
3390
|
# },
|
|
3294
3391
|
# linkedin_oauth_2_provider_config: {
|
|
3295
3392
|
# client_id: "ClientIdType", # required
|
|
3296
|
-
# 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
|
|
3297
3399
|
# },
|
|
3298
3400
|
# included_oauth_2_provider_config: {
|
|
3299
3401
|
# client_id: "ClientIdType", # required
|
|
3300
|
-
# 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
|
|
3301
3408
|
# issuer: "IssuerUrlType",
|
|
3302
3409
|
# authorization_endpoint: "AuthorizationEndpointType",
|
|
3303
3410
|
# token_endpoint: "TokenEndpointType",
|
|
@@ -3311,6 +3418,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
3311
3418
|
# @example Response structure
|
|
3312
3419
|
#
|
|
3313
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"
|
|
3314
3423
|
# resp.name #=> String
|
|
3315
3424
|
# resp.credential_provider_arn #=> String
|
|
3316
3425
|
# resp.callback_url #=> String
|
|
@@ -3687,13 +3796,33 @@ module Aws::BedrockAgentCoreControl
|
|
|
3687
3796
|
# provider_configuration_input: { # required
|
|
3688
3797
|
# coinbase_cdp_configuration: {
|
|
3689
3798
|
# api_key_id: "CoinbaseCdpApiKeyIdType", # required
|
|
3690
|
-
# api_key_secret: "
|
|
3691
|
-
#
|
|
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
|
+
# },
|
|
3692
3811
|
# },
|
|
3693
3812
|
# stripe_privy_configuration: {
|
|
3694
3813
|
# app_id: "StripePrivyAppIdType", # required
|
|
3695
|
-
# app_secret: "
|
|
3696
|
-
#
|
|
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
|
+
# },
|
|
3697
3826
|
# authorization_id: "StripePrivyAuthorizationIdType", # required
|
|
3698
3827
|
# },
|
|
3699
3828
|
# },
|
|
@@ -3709,10 +3838,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
3709
3838
|
# resp.credential_provider_arn #=> String
|
|
3710
3839
|
# resp.provider_configuration_output.coinbase_cdp_configuration.api_key_id #=> String
|
|
3711
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"
|
|
3712
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"
|
|
3713
3846
|
# resp.provider_configuration_output.stripe_privy_configuration.app_id #=> String
|
|
3714
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"
|
|
3715
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"
|
|
3716
3853
|
# resp.provider_configuration_output.stripe_privy_configuration.authorization_id #=> String
|
|
3717
3854
|
#
|
|
3718
3855
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreatePaymentCredentialProvider AWS API Documentation
|
|
@@ -5034,17 +5171,25 @@ module Aws::BedrockAgentCoreControl
|
|
|
5034
5171
|
# resp.harness.model.bedrock_model_config.max_tokens #=> Integer
|
|
5035
5172
|
# resp.harness.model.bedrock_model_config.temperature #=> Float
|
|
5036
5173
|
# resp.harness.model.bedrock_model_config.top_p #=> Float
|
|
5174
|
+
# resp.harness.model.bedrock_model_config.api_format #=> String, one of "converse_stream", "responses", "chat_completions"
|
|
5037
5175
|
# resp.harness.model.open_ai_model_config.model_id #=> String
|
|
5038
5176
|
# resp.harness.model.open_ai_model_config.api_key_arn #=> String
|
|
5039
5177
|
# resp.harness.model.open_ai_model_config.max_tokens #=> Integer
|
|
5040
5178
|
# resp.harness.model.open_ai_model_config.temperature #=> Float
|
|
5041
5179
|
# resp.harness.model.open_ai_model_config.top_p #=> Float
|
|
5180
|
+
# resp.harness.model.open_ai_model_config.api_format #=> String, one of "chat_completions", "responses"
|
|
5042
5181
|
# resp.harness.model.gemini_model_config.model_id #=> String
|
|
5043
5182
|
# resp.harness.model.gemini_model_config.api_key_arn #=> String
|
|
5044
5183
|
# resp.harness.model.gemini_model_config.max_tokens #=> Integer
|
|
5045
5184
|
# resp.harness.model.gemini_model_config.temperature #=> Float
|
|
5046
5185
|
# resp.harness.model.gemini_model_config.top_p #=> Float
|
|
5047
5186
|
# resp.harness.model.gemini_model_config.top_k #=> Integer
|
|
5187
|
+
# resp.harness.model.lite_llm_model_config.model_id #=> String
|
|
5188
|
+
# resp.harness.model.lite_llm_model_config.api_key_arn #=> String
|
|
5189
|
+
# resp.harness.model.lite_llm_model_config.api_base #=> String
|
|
5190
|
+
# resp.harness.model.lite_llm_model_config.max_tokens #=> Integer
|
|
5191
|
+
# resp.harness.model.lite_llm_model_config.temperature #=> Float
|
|
5192
|
+
# resp.harness.model.lite_llm_model_config.top_p #=> Float
|
|
5048
5193
|
# resp.harness.system_prompt #=> Array
|
|
5049
5194
|
# resp.harness.system_prompt[0].text #=> String
|
|
5050
5195
|
# resp.harness.tools #=> Array
|
|
@@ -5066,6 +5211,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
5066
5211
|
# resp.harness.tools[0].config.agent_core_code_interpreter.code_interpreter_arn #=> String
|
|
5067
5212
|
# resp.harness.skills #=> Array
|
|
5068
5213
|
# resp.harness.skills[0].path #=> String
|
|
5214
|
+
# resp.harness.skills[0].s3.uri #=> String
|
|
5215
|
+
# resp.harness.skills[0].git.url #=> String
|
|
5216
|
+
# resp.harness.skills[0].git.path #=> String
|
|
5217
|
+
# resp.harness.skills[0].git.auth.credential_arn #=> String
|
|
5218
|
+
# resp.harness.skills[0].git.auth.username #=> String
|
|
5069
5219
|
# resp.harness.allowed_tools #=> Array
|
|
5070
5220
|
# resp.harness.allowed_tools[0] #=> String
|
|
5071
5221
|
# resp.harness.truncation.strategy #=> String, one of "sliding_window", "summarization", "none"
|
|
@@ -5770,6 +5920,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
5770
5920
|
# @return [Types::GetApiKeyCredentialProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5771
5921
|
#
|
|
5772
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
|
|
5773
5925
|
# * {Types::GetApiKeyCredentialProviderResponse#name #name} => String
|
|
5774
5926
|
# * {Types::GetApiKeyCredentialProviderResponse#credential_provider_arn #credential_provider_arn} => String
|
|
5775
5927
|
# * {Types::GetApiKeyCredentialProviderResponse#created_time #created_time} => Time
|
|
@@ -5784,6 +5936,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
5784
5936
|
# @example Response structure
|
|
5785
5937
|
#
|
|
5786
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"
|
|
5787
5941
|
# resp.name #=> String
|
|
5788
5942
|
# resp.credential_provider_arn #=> String
|
|
5789
5943
|
# resp.created_time #=> Time
|
|
@@ -6588,17 +6742,25 @@ module Aws::BedrockAgentCoreControl
|
|
|
6588
6742
|
# resp.harness.model.bedrock_model_config.max_tokens #=> Integer
|
|
6589
6743
|
# resp.harness.model.bedrock_model_config.temperature #=> Float
|
|
6590
6744
|
# resp.harness.model.bedrock_model_config.top_p #=> Float
|
|
6745
|
+
# resp.harness.model.bedrock_model_config.api_format #=> String, one of "converse_stream", "responses", "chat_completions"
|
|
6591
6746
|
# resp.harness.model.open_ai_model_config.model_id #=> String
|
|
6592
6747
|
# resp.harness.model.open_ai_model_config.api_key_arn #=> String
|
|
6593
6748
|
# resp.harness.model.open_ai_model_config.max_tokens #=> Integer
|
|
6594
6749
|
# resp.harness.model.open_ai_model_config.temperature #=> Float
|
|
6595
6750
|
# resp.harness.model.open_ai_model_config.top_p #=> Float
|
|
6751
|
+
# resp.harness.model.open_ai_model_config.api_format #=> String, one of "chat_completions", "responses"
|
|
6596
6752
|
# resp.harness.model.gemini_model_config.model_id #=> String
|
|
6597
6753
|
# resp.harness.model.gemini_model_config.api_key_arn #=> String
|
|
6598
6754
|
# resp.harness.model.gemini_model_config.max_tokens #=> Integer
|
|
6599
6755
|
# resp.harness.model.gemini_model_config.temperature #=> Float
|
|
6600
6756
|
# resp.harness.model.gemini_model_config.top_p #=> Float
|
|
6601
6757
|
# resp.harness.model.gemini_model_config.top_k #=> Integer
|
|
6758
|
+
# resp.harness.model.lite_llm_model_config.model_id #=> String
|
|
6759
|
+
# resp.harness.model.lite_llm_model_config.api_key_arn #=> String
|
|
6760
|
+
# resp.harness.model.lite_llm_model_config.api_base #=> String
|
|
6761
|
+
# resp.harness.model.lite_llm_model_config.max_tokens #=> Integer
|
|
6762
|
+
# resp.harness.model.lite_llm_model_config.temperature #=> Float
|
|
6763
|
+
# resp.harness.model.lite_llm_model_config.top_p #=> Float
|
|
6602
6764
|
# resp.harness.system_prompt #=> Array
|
|
6603
6765
|
# resp.harness.system_prompt[0].text #=> String
|
|
6604
6766
|
# resp.harness.tools #=> Array
|
|
@@ -6620,6 +6782,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
6620
6782
|
# resp.harness.tools[0].config.agent_core_code_interpreter.code_interpreter_arn #=> String
|
|
6621
6783
|
# resp.harness.skills #=> Array
|
|
6622
6784
|
# resp.harness.skills[0].path #=> String
|
|
6785
|
+
# resp.harness.skills[0].s3.uri #=> String
|
|
6786
|
+
# resp.harness.skills[0].git.url #=> String
|
|
6787
|
+
# resp.harness.skills[0].git.path #=> String
|
|
6788
|
+
# resp.harness.skills[0].git.auth.credential_arn #=> String
|
|
6789
|
+
# resp.harness.skills[0].git.auth.username #=> String
|
|
6623
6790
|
# resp.harness.allowed_tools #=> Array
|
|
6624
6791
|
# resp.harness.allowed_tools[0] #=> String
|
|
6625
6792
|
# resp.harness.truncation.strategy #=> String, one of "sliding_window", "summarization", "none"
|
|
@@ -6847,6 +7014,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
6847
7014
|
# @return [Types::GetOauth2CredentialProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6848
7015
|
#
|
|
6849
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
|
|
6850
7019
|
# * {Types::GetOauth2CredentialProviderResponse#name #name} => String
|
|
6851
7020
|
# * {Types::GetOauth2CredentialProviderResponse#credential_provider_arn #credential_provider_arn} => String
|
|
6852
7021
|
# * {Types::GetOauth2CredentialProviderResponse#credential_provider_vendor #credential_provider_vendor} => String
|
|
@@ -6866,6 +7035,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
6866
7035
|
# @example Response structure
|
|
6867
7036
|
#
|
|
6868
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"
|
|
6869
7040
|
# resp.name #=> String
|
|
6870
7041
|
# resp.credential_provider_arn #=> String
|
|
6871
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"
|
|
@@ -7136,10 +7307,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
7136
7307
|
# resp.credential_provider_vendor #=> String, one of "CoinbaseCDP", "StripePrivy"
|
|
7137
7308
|
# resp.provider_configuration_output.coinbase_cdp_configuration.api_key_id #=> String
|
|
7138
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"
|
|
7139
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"
|
|
7140
7315
|
# resp.provider_configuration_output.stripe_privy_configuration.app_id #=> String
|
|
7141
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"
|
|
7142
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"
|
|
7143
7322
|
# resp.provider_configuration_output.stripe_privy_configuration.authorization_id #=> String
|
|
7144
7323
|
# resp.created_time #=> Time
|
|
7145
7324
|
# resp.last_updated_time #=> Time
|
|
@@ -8283,6 +8462,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
8283
8462
|
# resp.bundles[0].bundle_id #=> String
|
|
8284
8463
|
# resp.bundles[0].bundle_name #=> String
|
|
8285
8464
|
# resp.bundles[0].description #=> String
|
|
8465
|
+
# resp.bundles[0].created_at #=> Time
|
|
8286
8466
|
# resp.next_token #=> String
|
|
8287
8467
|
#
|
|
8288
8468
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListConfigurationBundles AWS API Documentation
|
|
@@ -10348,13 +10528,26 @@ module Aws::BedrockAgentCoreControl
|
|
|
10348
10528
|
# @option params [required, String] :name
|
|
10349
10529
|
# The name of the API key credential provider to update.
|
|
10350
10530
|
#
|
|
10351
|
-
# @option params [
|
|
10531
|
+
# @option params [String] :api_key
|
|
10352
10532
|
# The new API key to use for authentication. This value replaces the
|
|
10353
10533
|
# existing API key and is encrypted and stored securely.
|
|
10354
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
|
+
#
|
|
10355
10546
|
# @return [Types::UpdateApiKeyCredentialProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
10356
10547
|
#
|
|
10357
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
|
|
10358
10551
|
# * {Types::UpdateApiKeyCredentialProviderResponse#name #name} => String
|
|
10359
10552
|
# * {Types::UpdateApiKeyCredentialProviderResponse#credential_provider_arn #credential_provider_arn} => String
|
|
10360
10553
|
# * {Types::UpdateApiKeyCredentialProviderResponse#created_time #created_time} => Time
|
|
@@ -10364,12 +10557,19 @@ module Aws::BedrockAgentCoreControl
|
|
|
10364
10557
|
#
|
|
10365
10558
|
# resp = client.update_api_key_credential_provider({
|
|
10366
10559
|
# name: "CredentialProviderName", # required
|
|
10367
|
-
# 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
|
|
10368
10566
|
# })
|
|
10369
10567
|
#
|
|
10370
10568
|
# @example Response structure
|
|
10371
10569
|
#
|
|
10372
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"
|
|
10373
10573
|
# resp.name #=> String
|
|
10374
10574
|
# resp.credential_provider_arn #=> String
|
|
10375
10575
|
# resp.created_time #=> Time
|
|
@@ -11638,6 +11838,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
11638
11838
|
# max_tokens: 1,
|
|
11639
11839
|
# temperature: 1.0,
|
|
11640
11840
|
# top_p: 1.0,
|
|
11841
|
+
# api_format: "converse_stream", # accepts converse_stream, responses, chat_completions
|
|
11842
|
+
# additional_params: {
|
|
11843
|
+
# },
|
|
11641
11844
|
# },
|
|
11642
11845
|
# open_ai_model_config: {
|
|
11643
11846
|
# model_id: "ModelId", # required
|
|
@@ -11645,6 +11848,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
11645
11848
|
# max_tokens: 1,
|
|
11646
11849
|
# temperature: 1.0,
|
|
11647
11850
|
# top_p: 1.0,
|
|
11851
|
+
# api_format: "chat_completions", # accepts chat_completions, responses
|
|
11852
|
+
# additional_params: {
|
|
11853
|
+
# },
|
|
11648
11854
|
# },
|
|
11649
11855
|
# gemini_model_config: {
|
|
11650
11856
|
# model_id: "ModelId", # required
|
|
@@ -11654,6 +11860,16 @@ module Aws::BedrockAgentCoreControl
|
|
|
11654
11860
|
# top_p: 1.0,
|
|
11655
11861
|
# top_k: 1,
|
|
11656
11862
|
# },
|
|
11863
|
+
# lite_llm_model_config: {
|
|
11864
|
+
# model_id: "ModelId", # required
|
|
11865
|
+
# api_key_arn: "ApiKeyArn",
|
|
11866
|
+
# api_base: "HarnessLiteLlmApiBase",
|
|
11867
|
+
# max_tokens: 1,
|
|
11868
|
+
# temperature: 1.0,
|
|
11869
|
+
# top_p: 1.0,
|
|
11870
|
+
# additional_params: {
|
|
11871
|
+
# },
|
|
11872
|
+
# },
|
|
11657
11873
|
# },
|
|
11658
11874
|
# system_prompt: [
|
|
11659
11875
|
# {
|
|
@@ -11672,7 +11888,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
11672
11888
|
# },
|
|
11673
11889
|
# },
|
|
11674
11890
|
# agent_core_browser: {
|
|
11675
|
-
# browser_arn: "
|
|
11891
|
+
# browser_arn: "HarnessBrowserArn",
|
|
11676
11892
|
# },
|
|
11677
11893
|
# agent_core_gateway: {
|
|
11678
11894
|
# gateway_arn: "GatewayArn", # required
|
|
@@ -11698,7 +11914,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
11698
11914
|
# },
|
|
11699
11915
|
# },
|
|
11700
11916
|
# agent_core_code_interpreter: {
|
|
11701
|
-
# code_interpreter_arn: "
|
|
11917
|
+
# code_interpreter_arn: "HarnessCodeInterpreterArn",
|
|
11702
11918
|
# },
|
|
11703
11919
|
# },
|
|
11704
11920
|
# },
|
|
@@ -11706,6 +11922,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
11706
11922
|
# skills: [
|
|
11707
11923
|
# {
|
|
11708
11924
|
# path: "HarnessSkillPath",
|
|
11925
|
+
# s3: {
|
|
11926
|
+
# uri: "HarnessSkillS3Uri", # required
|
|
11927
|
+
# },
|
|
11928
|
+
# git: {
|
|
11929
|
+
# url: "HarnessSkillGitUrl", # required
|
|
11930
|
+
# path: "String",
|
|
11931
|
+
# auth: {
|
|
11932
|
+
# credential_arn: "ApiKeyArn", # required
|
|
11933
|
+
# username: "String",
|
|
11934
|
+
# },
|
|
11935
|
+
# },
|
|
11709
11936
|
# },
|
|
11710
11937
|
# ],
|
|
11711
11938
|
# allowed_tools: ["HarnessAllowedTool"],
|
|
@@ -11756,17 +11983,25 @@ module Aws::BedrockAgentCoreControl
|
|
|
11756
11983
|
# resp.harness.model.bedrock_model_config.max_tokens #=> Integer
|
|
11757
11984
|
# resp.harness.model.bedrock_model_config.temperature #=> Float
|
|
11758
11985
|
# resp.harness.model.bedrock_model_config.top_p #=> Float
|
|
11986
|
+
# resp.harness.model.bedrock_model_config.api_format #=> String, one of "converse_stream", "responses", "chat_completions"
|
|
11759
11987
|
# resp.harness.model.open_ai_model_config.model_id #=> String
|
|
11760
11988
|
# resp.harness.model.open_ai_model_config.api_key_arn #=> String
|
|
11761
11989
|
# resp.harness.model.open_ai_model_config.max_tokens #=> Integer
|
|
11762
11990
|
# resp.harness.model.open_ai_model_config.temperature #=> Float
|
|
11763
11991
|
# resp.harness.model.open_ai_model_config.top_p #=> Float
|
|
11992
|
+
# resp.harness.model.open_ai_model_config.api_format #=> String, one of "chat_completions", "responses"
|
|
11764
11993
|
# resp.harness.model.gemini_model_config.model_id #=> String
|
|
11765
11994
|
# resp.harness.model.gemini_model_config.api_key_arn #=> String
|
|
11766
11995
|
# resp.harness.model.gemini_model_config.max_tokens #=> Integer
|
|
11767
11996
|
# resp.harness.model.gemini_model_config.temperature #=> Float
|
|
11768
11997
|
# resp.harness.model.gemini_model_config.top_p #=> Float
|
|
11769
11998
|
# resp.harness.model.gemini_model_config.top_k #=> Integer
|
|
11999
|
+
# resp.harness.model.lite_llm_model_config.model_id #=> String
|
|
12000
|
+
# resp.harness.model.lite_llm_model_config.api_key_arn #=> String
|
|
12001
|
+
# resp.harness.model.lite_llm_model_config.api_base #=> String
|
|
12002
|
+
# resp.harness.model.lite_llm_model_config.max_tokens #=> Integer
|
|
12003
|
+
# resp.harness.model.lite_llm_model_config.temperature #=> Float
|
|
12004
|
+
# resp.harness.model.lite_llm_model_config.top_p #=> Float
|
|
11770
12005
|
# resp.harness.system_prompt #=> Array
|
|
11771
12006
|
# resp.harness.system_prompt[0].text #=> String
|
|
11772
12007
|
# resp.harness.tools #=> Array
|
|
@@ -11788,6 +12023,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
11788
12023
|
# resp.harness.tools[0].config.agent_core_code_interpreter.code_interpreter_arn #=> String
|
|
11789
12024
|
# resp.harness.skills #=> Array
|
|
11790
12025
|
# resp.harness.skills[0].path #=> String
|
|
12026
|
+
# resp.harness.skills[0].s3.uri #=> String
|
|
12027
|
+
# resp.harness.skills[0].git.url #=> String
|
|
12028
|
+
# resp.harness.skills[0].git.path #=> String
|
|
12029
|
+
# resp.harness.skills[0].git.auth.credential_arn #=> String
|
|
12030
|
+
# resp.harness.skills[0].git.auth.username #=> String
|
|
11791
12031
|
# resp.harness.allowed_tools #=> Array
|
|
11792
12032
|
# resp.harness.allowed_tools[0] #=> String
|
|
11793
12033
|
# resp.harness.truncation.strategy #=> String, one of "sliding_window", "summarization", "none"
|
|
@@ -12525,6 +12765,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
12525
12765
|
# @return [Types::UpdateOauth2CredentialProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
12526
12766
|
#
|
|
12527
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
|
|
12528
12770
|
# * {Types::UpdateOauth2CredentialProviderResponse#name #name} => String
|
|
12529
12771
|
# * {Types::UpdateOauth2CredentialProviderResponse#credential_provider_vendor #credential_provider_vendor} => String
|
|
12530
12772
|
# * {Types::UpdateOauth2CredentialProviderResponse#credential_provider_arn #credential_provider_arn} => String
|
|
@@ -12553,6 +12795,19 @@ module Aws::BedrockAgentCoreControl
|
|
|
12553
12795
|
# },
|
|
12554
12796
|
# client_id: "DefaultClientIdType",
|
|
12555
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
|
|
12556
12811
|
# private_endpoint: {
|
|
12557
12812
|
# self_managed_lattice_resource: {
|
|
12558
12813
|
# resource_configuration_identifier: "ResourceConfigurationIdentifier",
|
|
@@ -12588,47 +12843,79 @@ module Aws::BedrockAgentCoreControl
|
|
|
12588
12843
|
# },
|
|
12589
12844
|
# },
|
|
12590
12845
|
# ],
|
|
12591
|
-
# on_behalf_of_token_exchange_config: {
|
|
12592
|
-
# grant_type: "TOKEN_EXCHANGE", # required, accepts TOKEN_EXCHANGE, JWT_AUTHORIZATION_GRANT
|
|
12593
|
-
# token_exchange_grant_type_config: {
|
|
12594
|
-
# actor_token_content: "NONE", # required, accepts NONE, M2M, AWS_IAM_ID_TOKEN_JWT
|
|
12595
|
-
# actor_token_scopes: ["ScopeType"],
|
|
12596
|
-
# },
|
|
12597
|
-
# },
|
|
12598
|
-
# client_authentication_method: "CLIENT_SECRET_BASIC", # accepts CLIENT_SECRET_BASIC, CLIENT_SECRET_POST, AWS_IAM_ID_TOKEN_JWT
|
|
12599
12846
|
# },
|
|
12600
12847
|
# google_oauth_2_provider_config: {
|
|
12601
12848
|
# client_id: "ClientIdType", # required
|
|
12602
|
-
# 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
|
|
12603
12855
|
# },
|
|
12604
12856
|
# github_oauth_2_provider_config: {
|
|
12605
12857
|
# client_id: "ClientIdType", # required
|
|
12606
|
-
# 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
|
|
12607
12864
|
# },
|
|
12608
12865
|
# slack_oauth_2_provider_config: {
|
|
12609
12866
|
# client_id: "ClientIdType", # required
|
|
12610
|
-
# 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
|
|
12611
12873
|
# },
|
|
12612
12874
|
# salesforce_oauth_2_provider_config: {
|
|
12613
12875
|
# client_id: "ClientIdType", # required
|
|
12614
|
-
# 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
|
|
12615
12882
|
# },
|
|
12616
12883
|
# microsoft_oauth_2_provider_config: {
|
|
12617
12884
|
# client_id: "ClientIdType", # required
|
|
12618
|
-
# 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
|
|
12619
12891
|
# tenant_id: "TenantIdType",
|
|
12620
12892
|
# },
|
|
12621
12893
|
# atlassian_oauth_2_provider_config: {
|
|
12622
12894
|
# client_id: "ClientIdType", # required
|
|
12623
|
-
# 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
|
|
12624
12901
|
# },
|
|
12625
12902
|
# linkedin_oauth_2_provider_config: {
|
|
12626
12903
|
# client_id: "ClientIdType", # required
|
|
12627
|
-
# 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
|
|
12628
12910
|
# },
|
|
12629
12911
|
# included_oauth_2_provider_config: {
|
|
12630
12912
|
# client_id: "ClientIdType", # required
|
|
12631
|
-
# 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
|
|
12632
12919
|
# issuer: "IssuerUrlType",
|
|
12633
12920
|
# authorization_endpoint: "AuthorizationEndpointType",
|
|
12634
12921
|
# token_endpoint: "TokenEndpointType",
|
|
@@ -12639,6 +12926,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
12639
12926
|
# @example Response structure
|
|
12640
12927
|
#
|
|
12641
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"
|
|
12642
12931
|
# resp.name #=> String
|
|
12643
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"
|
|
12644
12933
|
# resp.credential_provider_arn #=> String
|
|
@@ -12989,13 +13278,33 @@ module Aws::BedrockAgentCoreControl
|
|
|
12989
13278
|
# provider_configuration_input: { # required
|
|
12990
13279
|
# coinbase_cdp_configuration: {
|
|
12991
13280
|
# api_key_id: "CoinbaseCdpApiKeyIdType", # required
|
|
12992
|
-
# api_key_secret: "
|
|
12993
|
-
#
|
|
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
|
+
# },
|
|
12994
13293
|
# },
|
|
12995
13294
|
# stripe_privy_configuration: {
|
|
12996
13295
|
# app_id: "StripePrivyAppIdType", # required
|
|
12997
|
-
# app_secret: "
|
|
12998
|
-
#
|
|
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
|
+
# },
|
|
12999
13308
|
# authorization_id: "StripePrivyAuthorizationIdType", # required
|
|
13000
13309
|
# },
|
|
13001
13310
|
# },
|
|
@@ -13008,10 +13317,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
13008
13317
|
# resp.credential_provider_arn #=> String
|
|
13009
13318
|
# resp.provider_configuration_output.coinbase_cdp_configuration.api_key_id #=> String
|
|
13010
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"
|
|
13011
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"
|
|
13012
13325
|
# resp.provider_configuration_output.stripe_privy_configuration.app_id #=> String
|
|
13013
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"
|
|
13014
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"
|
|
13015
13332
|
# resp.provider_configuration_output.stripe_privy_configuration.authorization_id #=> String
|
|
13016
13333
|
# resp.created_time #=> Time
|
|
13017
13334
|
# resp.last_updated_time #=> Time
|
|
@@ -13791,7 +14108,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
13791
14108
|
tracer: tracer
|
|
13792
14109
|
)
|
|
13793
14110
|
context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
|
|
13794
|
-
context[:gem_version] = '1.
|
|
14111
|
+
context[:gem_version] = '1.51.0'
|
|
13795
14112
|
Seahorse::Client::Request.new(handlers, context)
|
|
13796
14113
|
end
|
|
13797
14114
|
|