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
data/sig/types.rbs
CHANGED
|
@@ -165,6 +165,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
165
165
|
class AtlassianOauth2ProviderConfigInput
|
|
166
166
|
attr_accessor client_id: ::String
|
|
167
167
|
attr_accessor client_secret: ::String
|
|
168
|
+
attr_accessor client_secret_config: Types::SecretReference
|
|
169
|
+
attr_accessor client_secret_source: ("MANAGED" | "EXTERNAL")
|
|
168
170
|
SENSITIVE: [:client_secret]
|
|
169
171
|
end
|
|
170
172
|
|
|
@@ -357,14 +359,22 @@ module Aws::BedrockAgentCoreControl
|
|
|
357
359
|
class CoinbaseCdpConfigurationInput
|
|
358
360
|
attr_accessor api_key_id: ::String
|
|
359
361
|
attr_accessor api_key_secret: ::String
|
|
362
|
+
attr_accessor api_key_secret_source: ("MANAGED" | "EXTERNAL")
|
|
363
|
+
attr_accessor api_key_secret_config: Types::SecretReference
|
|
360
364
|
attr_accessor wallet_secret: ::String
|
|
365
|
+
attr_accessor wallet_secret_source: ("MANAGED" | "EXTERNAL")
|
|
366
|
+
attr_accessor wallet_secret_config: Types::SecretReference
|
|
361
367
|
SENSITIVE: [:api_key_secret, :wallet_secret]
|
|
362
368
|
end
|
|
363
369
|
|
|
364
370
|
class CoinbaseCdpConfigurationOutput
|
|
365
371
|
attr_accessor api_key_id: ::String
|
|
366
372
|
attr_accessor api_key_secret_arn: Types::Secret
|
|
373
|
+
attr_accessor api_key_secret_json_key: ::String
|
|
374
|
+
attr_accessor api_key_secret_source: ("MANAGED" | "EXTERNAL")
|
|
367
375
|
attr_accessor wallet_secret_arn: Types::Secret
|
|
376
|
+
attr_accessor wallet_secret_json_key: ::String
|
|
377
|
+
attr_accessor wallet_secret_source: ("MANAGED" | "EXTERNAL")
|
|
368
378
|
SENSITIVE: []
|
|
369
379
|
end
|
|
370
380
|
|
|
@@ -417,6 +427,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
417
427
|
attr_accessor bundle_id: ::String
|
|
418
428
|
attr_accessor bundle_name: ::String
|
|
419
429
|
attr_accessor description: ::String
|
|
430
|
+
attr_accessor created_at: ::Time
|
|
420
431
|
SENSITIVE: [:description]
|
|
421
432
|
end
|
|
422
433
|
|
|
@@ -518,12 +529,16 @@ module Aws::BedrockAgentCoreControl
|
|
|
518
529
|
class CreateApiKeyCredentialProviderRequest
|
|
519
530
|
attr_accessor name: ::String
|
|
520
531
|
attr_accessor api_key: ::String
|
|
532
|
+
attr_accessor api_key_secret_config: Types::SecretReference
|
|
533
|
+
attr_accessor api_key_secret_source: ("MANAGED" | "EXTERNAL")
|
|
521
534
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
522
535
|
SENSITIVE: [:api_key]
|
|
523
536
|
end
|
|
524
537
|
|
|
525
538
|
class CreateApiKeyCredentialProviderResponse
|
|
526
539
|
attr_accessor api_key_secret_arn: Types::Secret
|
|
540
|
+
attr_accessor api_key_secret_json_key: ::String
|
|
541
|
+
attr_accessor api_key_secret_source: ("MANAGED" | "EXTERNAL")
|
|
527
542
|
attr_accessor name: ::String
|
|
528
543
|
attr_accessor credential_provider_arn: ::String
|
|
529
544
|
SENSITIVE: []
|
|
@@ -810,6 +825,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
810
825
|
|
|
811
826
|
class CreateOauth2CredentialProviderResponse
|
|
812
827
|
attr_accessor client_secret_arn: Types::Secret
|
|
828
|
+
attr_accessor client_secret_json_key: ::String
|
|
829
|
+
attr_accessor client_secret_source: ("MANAGED" | "EXTERNAL")
|
|
813
830
|
attr_accessor name: ::String
|
|
814
831
|
attr_accessor credential_provider_arn: ::String
|
|
815
832
|
attr_accessor callback_url: ::String
|
|
@@ -1169,10 +1186,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
1169
1186
|
attr_accessor oauth_discovery: Types::Oauth2Discovery
|
|
1170
1187
|
attr_accessor client_id: ::String
|
|
1171
1188
|
attr_accessor client_secret: ::String
|
|
1172
|
-
attr_accessor
|
|
1173
|
-
attr_accessor
|
|
1189
|
+
attr_accessor client_secret_config: Types::SecretReference
|
|
1190
|
+
attr_accessor client_secret_source: ("MANAGED" | "EXTERNAL")
|
|
1174
1191
|
attr_accessor on_behalf_of_token_exchange_config: Types::OnBehalfOfTokenExchangeConfigType
|
|
1175
1192
|
attr_accessor client_authentication_method: ("CLIENT_SECRET_BASIC" | "CLIENT_SECRET_POST" | "AWS_IAM_ID_TOKEN_JWT")
|
|
1193
|
+
attr_accessor private_endpoint: Types::PrivateEndpoint
|
|
1194
|
+
attr_accessor private_endpoint_overrides: ::Array[Types::PrivateEndpointOverride]
|
|
1176
1195
|
SENSITIVE: [:client_secret]
|
|
1177
1196
|
end
|
|
1178
1197
|
|
|
@@ -1926,6 +1945,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
1926
1945
|
|
|
1927
1946
|
class GetApiKeyCredentialProviderResponse
|
|
1928
1947
|
attr_accessor api_key_secret_arn: Types::Secret
|
|
1948
|
+
attr_accessor api_key_secret_json_key: ::String
|
|
1949
|
+
attr_accessor api_key_secret_source: ("MANAGED" | "EXTERNAL")
|
|
1929
1950
|
attr_accessor name: ::String
|
|
1930
1951
|
attr_accessor credential_provider_arn: ::String
|
|
1931
1952
|
attr_accessor created_time: ::Time
|
|
@@ -2182,6 +2203,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
2182
2203
|
|
|
2183
2204
|
class GetOauth2CredentialProviderResponse
|
|
2184
2205
|
attr_accessor client_secret_arn: Types::Secret
|
|
2206
|
+
attr_accessor client_secret_json_key: ::String
|
|
2207
|
+
attr_accessor client_secret_source: ("MANAGED" | "EXTERNAL")
|
|
2185
2208
|
attr_accessor name: ::String
|
|
2186
2209
|
attr_accessor credential_provider_arn: ::String
|
|
2187
2210
|
attr_accessor credential_provider_vendor: ("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")
|
|
@@ -2465,6 +2488,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
2465
2488
|
class GithubOauth2ProviderConfigInput
|
|
2466
2489
|
attr_accessor client_id: ::String
|
|
2467
2490
|
attr_accessor client_secret: ::String
|
|
2491
|
+
attr_accessor client_secret_config: Types::SecretReference
|
|
2492
|
+
attr_accessor client_secret_source: ("MANAGED" | "EXTERNAL")
|
|
2468
2493
|
SENSITIVE: [:client_secret]
|
|
2469
2494
|
end
|
|
2470
2495
|
|
|
@@ -2477,6 +2502,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
2477
2502
|
class GoogleOauth2ProviderConfigInput
|
|
2478
2503
|
attr_accessor client_id: ::String
|
|
2479
2504
|
attr_accessor client_secret: ::String
|
|
2505
|
+
attr_accessor client_secret_config: Types::SecretReference
|
|
2506
|
+
attr_accessor client_secret_source: ("MANAGED" | "EXTERNAL")
|
|
2480
2507
|
SENSITIVE: [:client_secret]
|
|
2481
2508
|
end
|
|
2482
2509
|
|
|
@@ -2565,6 +2592,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
2565
2592
|
attr_accessor max_tokens: ::Integer
|
|
2566
2593
|
attr_accessor temperature: ::Float
|
|
2567
2594
|
attr_accessor top_p: ::Float
|
|
2595
|
+
attr_accessor api_format: ("converse_stream" | "responses" | "chat_completions")
|
|
2596
|
+
attr_accessor additional_params: untyped
|
|
2568
2597
|
SENSITIVE: []
|
|
2569
2598
|
end
|
|
2570
2599
|
|
|
@@ -2634,6 +2663,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
2634
2663
|
SENSITIVE: [:description, :input_schema]
|
|
2635
2664
|
end
|
|
2636
2665
|
|
|
2666
|
+
class HarnessLiteLlmModelConfig
|
|
2667
|
+
attr_accessor model_id: ::String
|
|
2668
|
+
attr_accessor api_key_arn: ::String
|
|
2669
|
+
attr_accessor api_base: ::String
|
|
2670
|
+
attr_accessor max_tokens: ::Integer
|
|
2671
|
+
attr_accessor temperature: ::Float
|
|
2672
|
+
attr_accessor top_p: ::Float
|
|
2673
|
+
attr_accessor additional_params: untyped
|
|
2674
|
+
SENSITIVE: [:api_base]
|
|
2675
|
+
end
|
|
2676
|
+
|
|
2637
2677
|
class HarnessMemoryConfiguration
|
|
2638
2678
|
attr_accessor agent_core_memory_configuration: Types::HarnessAgentCoreMemoryConfiguration
|
|
2639
2679
|
attr_accessor unknown: untyped
|
|
@@ -2649,6 +2689,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2649
2689
|
attr_accessor bedrock_model_config: Types::HarnessBedrockModelConfig
|
|
2650
2690
|
attr_accessor open_ai_model_config: Types::HarnessOpenAiModelConfig
|
|
2651
2691
|
attr_accessor gemini_model_config: Types::HarnessGeminiModelConfig
|
|
2692
|
+
attr_accessor lite_llm_model_config: Types::HarnessLiteLlmModelConfig
|
|
2652
2693
|
attr_accessor unknown: untyped
|
|
2653
2694
|
SENSITIVE: []
|
|
2654
2695
|
|
|
@@ -2658,6 +2699,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
2658
2699
|
end
|
|
2659
2700
|
class GeminiModelConfig < HarnessModelConfiguration
|
|
2660
2701
|
end
|
|
2702
|
+
class LiteLlmModelConfig < HarnessModelConfiguration
|
|
2703
|
+
end
|
|
2661
2704
|
class Unknown < HarnessModelConfiguration
|
|
2662
2705
|
end
|
|
2663
2706
|
end
|
|
@@ -2668,6 +2711,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
2668
2711
|
attr_accessor max_tokens: ::Integer
|
|
2669
2712
|
attr_accessor temperature: ::Float
|
|
2670
2713
|
attr_accessor top_p: ::Float
|
|
2714
|
+
attr_accessor api_format: ("chat_completions" | "responses")
|
|
2715
|
+
attr_accessor additional_params: untyped
|
|
2671
2716
|
SENSITIVE: []
|
|
2672
2717
|
end
|
|
2673
2718
|
|
|
@@ -2679,15 +2724,39 @@ module Aws::BedrockAgentCoreControl
|
|
|
2679
2724
|
|
|
2680
2725
|
class HarnessSkill
|
|
2681
2726
|
attr_accessor path: ::String
|
|
2727
|
+
attr_accessor s3: Types::HarnessSkillS3Source
|
|
2728
|
+
attr_accessor git: Types::HarnessSkillGitSource
|
|
2682
2729
|
attr_accessor unknown: untyped
|
|
2683
2730
|
SENSITIVE: []
|
|
2684
2731
|
|
|
2685
2732
|
class Path < HarnessSkill
|
|
2686
2733
|
end
|
|
2734
|
+
class S3 < HarnessSkill
|
|
2735
|
+
end
|
|
2736
|
+
class Git < HarnessSkill
|
|
2737
|
+
end
|
|
2687
2738
|
class Unknown < HarnessSkill
|
|
2688
2739
|
end
|
|
2689
2740
|
end
|
|
2690
2741
|
|
|
2742
|
+
class HarnessSkillGitAuth
|
|
2743
|
+
attr_accessor credential_arn: ::String
|
|
2744
|
+
attr_accessor username: ::String
|
|
2745
|
+
SENSITIVE: []
|
|
2746
|
+
end
|
|
2747
|
+
|
|
2748
|
+
class HarnessSkillGitSource
|
|
2749
|
+
attr_accessor url: ::String
|
|
2750
|
+
attr_accessor path: ::String
|
|
2751
|
+
attr_accessor auth: Types::HarnessSkillGitAuth
|
|
2752
|
+
SENSITIVE: []
|
|
2753
|
+
end
|
|
2754
|
+
|
|
2755
|
+
class HarnessSkillS3Source
|
|
2756
|
+
attr_accessor uri: ::String
|
|
2757
|
+
SENSITIVE: []
|
|
2758
|
+
end
|
|
2759
|
+
|
|
2691
2760
|
class HarnessSlidingWindowConfiguration
|
|
2692
2761
|
attr_accessor messages_count: ::Integer
|
|
2693
2762
|
SENSITIVE: []
|
|
@@ -2797,6 +2866,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
2797
2866
|
class IncludedOauth2ProviderConfigInput
|
|
2798
2867
|
attr_accessor client_id: ::String
|
|
2799
2868
|
attr_accessor client_secret: ::String
|
|
2869
|
+
attr_accessor client_secret_config: Types::SecretReference
|
|
2870
|
+
attr_accessor client_secret_source: ("MANAGED" | "EXTERNAL")
|
|
2800
2871
|
attr_accessor issuer: ::String
|
|
2801
2872
|
attr_accessor authorization_endpoint: ::String
|
|
2802
2873
|
attr_accessor token_endpoint: ::String
|
|
@@ -2893,6 +2964,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
2893
2964
|
class LinkedinOauth2ProviderConfigInput
|
|
2894
2965
|
attr_accessor client_id: ::String
|
|
2895
2966
|
attr_accessor client_secret: ::String
|
|
2967
|
+
attr_accessor client_secret_config: Types::SecretReference
|
|
2968
|
+
attr_accessor client_secret_source: ("MANAGED" | "EXTERNAL")
|
|
2896
2969
|
SENSITIVE: [:client_secret]
|
|
2897
2970
|
end
|
|
2898
2971
|
|
|
@@ -3553,6 +3626,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
3553
3626
|
class MicrosoftOauth2ProviderConfigInput
|
|
3554
3627
|
attr_accessor client_id: ::String
|
|
3555
3628
|
attr_accessor client_secret: ::String
|
|
3629
|
+
attr_accessor client_secret_config: Types::SecretReference
|
|
3630
|
+
attr_accessor client_secret_source: ("MANAGED" | "EXTERNAL")
|
|
3556
3631
|
attr_accessor tenant_id: ::String
|
|
3557
3632
|
SENSITIVE: [:client_secret]
|
|
3558
3633
|
end
|
|
@@ -4199,6 +4274,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
4199
4274
|
class SalesforceOauth2ProviderConfigInput
|
|
4200
4275
|
attr_accessor client_id: ::String
|
|
4201
4276
|
attr_accessor client_secret: ::String
|
|
4277
|
+
attr_accessor client_secret_config: Types::SecretReference
|
|
4278
|
+
attr_accessor client_secret_source: ("MANAGED" | "EXTERNAL")
|
|
4202
4279
|
SENSITIVE: [:client_secret]
|
|
4203
4280
|
end
|
|
4204
4281
|
|
|
@@ -4227,6 +4304,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
4227
4304
|
SENSITIVE: []
|
|
4228
4305
|
end
|
|
4229
4306
|
|
|
4307
|
+
class SecretReference
|
|
4308
|
+
attr_accessor secret_id: ::String
|
|
4309
|
+
attr_accessor json_key: ::String
|
|
4310
|
+
SENSITIVE: []
|
|
4311
|
+
end
|
|
4312
|
+
|
|
4230
4313
|
class SecretsManagerLocation
|
|
4231
4314
|
attr_accessor secret_arn: ::String
|
|
4232
4315
|
SENSITIVE: []
|
|
@@ -4354,6 +4437,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
4354
4437
|
class SlackOauth2ProviderConfigInput
|
|
4355
4438
|
attr_accessor client_id: ::String
|
|
4356
4439
|
attr_accessor client_secret: ::String
|
|
4440
|
+
attr_accessor client_secret_config: Types::SecretReference
|
|
4441
|
+
attr_accessor client_secret_source: ("MANAGED" | "EXTERNAL")
|
|
4357
4442
|
SENSITIVE: [:client_secret]
|
|
4358
4443
|
end
|
|
4359
4444
|
|
|
@@ -4441,7 +4526,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
4441
4526
|
class StripePrivyConfigurationInput
|
|
4442
4527
|
attr_accessor app_id: ::String
|
|
4443
4528
|
attr_accessor app_secret: ::String
|
|
4529
|
+
attr_accessor app_secret_source: ("MANAGED" | "EXTERNAL")
|
|
4530
|
+
attr_accessor app_secret_config: Types::SecretReference
|
|
4444
4531
|
attr_accessor authorization_private_key: ::String
|
|
4532
|
+
attr_accessor authorization_private_key_source: ("MANAGED" | "EXTERNAL")
|
|
4533
|
+
attr_accessor authorization_private_key_config: Types::SecretReference
|
|
4445
4534
|
attr_accessor authorization_id: ::String
|
|
4446
4535
|
SENSITIVE: [:app_secret, :authorization_private_key]
|
|
4447
4536
|
end
|
|
@@ -4449,7 +4538,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
4449
4538
|
class StripePrivyConfigurationOutput
|
|
4450
4539
|
attr_accessor app_id: ::String
|
|
4451
4540
|
attr_accessor app_secret_arn: Types::Secret
|
|
4541
|
+
attr_accessor app_secret_json_key: ::String
|
|
4542
|
+
attr_accessor app_secret_source: ("MANAGED" | "EXTERNAL")
|
|
4452
4543
|
attr_accessor authorization_private_key_arn: Types::Secret
|
|
4544
|
+
attr_accessor authorization_private_key_json_key: ::String
|
|
4545
|
+
attr_accessor authorization_private_key_source: ("MANAGED" | "EXTERNAL")
|
|
4453
4546
|
attr_accessor authorization_id: ::String
|
|
4454
4547
|
SENSITIVE: []
|
|
4455
4548
|
end
|
|
@@ -4734,11 +4827,15 @@ module Aws::BedrockAgentCoreControl
|
|
|
4734
4827
|
class UpdateApiKeyCredentialProviderRequest
|
|
4735
4828
|
attr_accessor name: ::String
|
|
4736
4829
|
attr_accessor api_key: ::String
|
|
4830
|
+
attr_accessor api_key_secret_config: Types::SecretReference
|
|
4831
|
+
attr_accessor api_key_secret_source: ("MANAGED" | "EXTERNAL")
|
|
4737
4832
|
SENSITIVE: [:api_key]
|
|
4738
4833
|
end
|
|
4739
4834
|
|
|
4740
4835
|
class UpdateApiKeyCredentialProviderResponse
|
|
4741
4836
|
attr_accessor api_key_secret_arn: Types::Secret
|
|
4837
|
+
attr_accessor api_key_secret_json_key: ::String
|
|
4838
|
+
attr_accessor api_key_secret_source: ("MANAGED" | "EXTERNAL")
|
|
4742
4839
|
attr_accessor name: ::String
|
|
4743
4840
|
attr_accessor credential_provider_arn: ::String
|
|
4744
4841
|
attr_accessor created_time: ::Time
|
|
@@ -4962,6 +5059,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
4962
5059
|
|
|
4963
5060
|
class UpdateOauth2CredentialProviderResponse
|
|
4964
5061
|
attr_accessor client_secret_arn: Types::Secret
|
|
5062
|
+
attr_accessor client_secret_json_key: ::String
|
|
5063
|
+
attr_accessor client_secret_source: ("MANAGED" | "EXTERNAL")
|
|
4965
5064
|
attr_accessor name: ::String
|
|
4966
5065
|
attr_accessor credential_provider_vendor: ("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")
|
|
4967
5066
|
attr_accessor credential_provider_arn: ::String
|