aws-sdk-bedrockagentcorecontrol 1.50.0 → 1.52.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 +341 -212
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +81 -22
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +452 -86
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +25 -3
- data/sig/params.rbs +138 -52
- data/sig/types.rbs +62 -5
- metadata +1 -1
data/sig/client.rbs
CHANGED
|
@@ -155,13 +155,20 @@ module Aws
|
|
|
155
155
|
interface _CreateApiKeyCredentialProviderResponseSuccess
|
|
156
156
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateApiKeyCredentialProviderResponse]
|
|
157
157
|
def api_key_secret_arn: () -> Types::Secret
|
|
158
|
+
def api_key_secret_json_key: () -> ::String
|
|
159
|
+
def api_key_secret_source: () -> ("MANAGED" | "EXTERNAL")
|
|
158
160
|
def name: () -> ::String
|
|
159
161
|
def credential_provider_arn: () -> ::String
|
|
160
162
|
end
|
|
161
163
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_api_key_credential_provider-instance_method
|
|
162
164
|
def create_api_key_credential_provider: (
|
|
163
165
|
name: ::String,
|
|
164
|
-
api_key: ::String,
|
|
166
|
+
?api_key: ::String,
|
|
167
|
+
?api_key_secret_config: {
|
|
168
|
+
secret_id: ::String,
|
|
169
|
+
json_key: ::String
|
|
170
|
+
},
|
|
171
|
+
?api_key_secret_source: ("MANAGED" | "EXTERNAL"),
|
|
165
172
|
?tags: Hash[::String, ::String]
|
|
166
173
|
) -> _CreateApiKeyCredentialProviderResponseSuccess
|
|
167
174
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApiKeyCredentialProviderResponseSuccess
|
|
@@ -530,6 +537,8 @@ module Aws
|
|
|
530
537
|
interface _CreateOauth2CredentialProviderResponseSuccess
|
|
531
538
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateOauth2CredentialProviderResponse]
|
|
532
539
|
def client_secret_arn: () -> Types::Secret
|
|
540
|
+
def client_secret_json_key: () -> ::String
|
|
541
|
+
def client_secret_source: () -> ("MANAGED" | "EXTERNAL")
|
|
533
542
|
def name: () -> ::String
|
|
534
543
|
def credential_provider_arn: () -> ::String
|
|
535
544
|
def callback_url: () -> ::String
|
|
@@ -949,7 +958,7 @@ module Aws
|
|
|
949
958
|
interface _DeleteMemoryResponseSuccess
|
|
950
959
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteMemoryOutput]
|
|
951
960
|
def memory_id: () -> ::String
|
|
952
|
-
def status: () -> ("CREATING" | "ACTIVE" | "FAILED" | "DELETING")
|
|
961
|
+
def status: () -> ("CREATING" | "ACTIVE" | "FAILED" | "DELETING" | "UPDATING")
|
|
953
962
|
end
|
|
954
963
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_memory-instance_method
|
|
955
964
|
def delete_memory: (
|
|
@@ -1143,6 +1152,8 @@ module Aws
|
|
|
1143
1152
|
interface _GetApiKeyCredentialProviderResponseSuccess
|
|
1144
1153
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetApiKeyCredentialProviderResponse]
|
|
1145
1154
|
def api_key_secret_arn: () -> Types::Secret
|
|
1155
|
+
def api_key_secret_json_key: () -> ::String
|
|
1156
|
+
def api_key_secret_source: () -> ("MANAGED" | "EXTERNAL")
|
|
1146
1157
|
def name: () -> ::String
|
|
1147
1158
|
def credential_provider_arn: () -> ::String
|
|
1148
1159
|
def created_time: () -> ::Time
|
|
@@ -1399,6 +1410,8 @@ module Aws
|
|
|
1399
1410
|
interface _GetOauth2CredentialProviderResponseSuccess
|
|
1400
1411
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetOauth2CredentialProviderResponse]
|
|
1401
1412
|
def client_secret_arn: () -> Types::Secret
|
|
1413
|
+
def client_secret_json_key: () -> ::String
|
|
1414
|
+
def client_secret_source: () -> ("MANAGED" | "EXTERNAL")
|
|
1402
1415
|
def name: () -> ::String
|
|
1403
1416
|
def credential_provider_arn: () -> ::String
|
|
1404
1417
|
def 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")
|
|
@@ -2285,6 +2298,8 @@ module Aws
|
|
|
2285
2298
|
interface _UpdateApiKeyCredentialProviderResponseSuccess
|
|
2286
2299
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateApiKeyCredentialProviderResponse]
|
|
2287
2300
|
def api_key_secret_arn: () -> Types::Secret
|
|
2301
|
+
def api_key_secret_json_key: () -> ::String
|
|
2302
|
+
def api_key_secret_source: () -> ("MANAGED" | "EXTERNAL")
|
|
2288
2303
|
def name: () -> ::String
|
|
2289
2304
|
def credential_provider_arn: () -> ::String
|
|
2290
2305
|
def created_time: () -> ::Time
|
|
@@ -2293,7 +2308,12 @@ module Aws
|
|
|
2293
2308
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_api_key_credential_provider-instance_method
|
|
2294
2309
|
def update_api_key_credential_provider: (
|
|
2295
2310
|
name: ::String,
|
|
2296
|
-
api_key: ::String
|
|
2311
|
+
?api_key: ::String,
|
|
2312
|
+
?api_key_secret_config: {
|
|
2313
|
+
secret_id: ::String,
|
|
2314
|
+
json_key: ::String
|
|
2315
|
+
},
|
|
2316
|
+
?api_key_secret_source: ("MANAGED" | "EXTERNAL")
|
|
2297
2317
|
) -> _UpdateApiKeyCredentialProviderResponseSuccess
|
|
2298
2318
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateApiKeyCredentialProviderResponseSuccess
|
|
2299
2319
|
|
|
@@ -2624,6 +2644,8 @@ module Aws
|
|
|
2624
2644
|
interface _UpdateOauth2CredentialProviderResponseSuccess
|
|
2625
2645
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateOauth2CredentialProviderResponse]
|
|
2626
2646
|
def client_secret_arn: () -> Types::Secret
|
|
2647
|
+
def client_secret_json_key: () -> ::String
|
|
2648
|
+
def client_secret_source: () -> ("MANAGED" | "EXTERNAL")
|
|
2627
2649
|
def name: () -> ::String
|
|
2628
2650
|
def 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")
|
|
2629
2651
|
def credential_provider_arn: () -> ::String
|
data/sig/params.rbs
CHANGED
|
@@ -699,6 +699,7 @@ module Aws
|
|
|
699
699
|
type metadata_schema_entry = {
|
|
700
700
|
key: ::String,
|
|
701
701
|
type: ("STRING" | "STRINGLIST" | "NUMBER")?,
|
|
702
|
+
extraction_type: ("LLM_INFERRED" | "STRICTLY_CONSISTENT")?,
|
|
702
703
|
extraction_config: Params::extraction_config?
|
|
703
704
|
}
|
|
704
705
|
|
|
@@ -747,10 +748,11 @@ module Aws
|
|
|
747
748
|
oauth_discovery: Params::oauth_2_discovery,
|
|
748
749
|
client_id: ::String?,
|
|
749
750
|
client_secret: ::String?,
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
751
|
+
client_secret_config: {
|
|
752
|
+
secret_id: ::String,
|
|
753
|
+
json_key: ::String
|
|
754
|
+
}?,
|
|
755
|
+
client_secret_source: ("MANAGED" | "EXTERNAL")?,
|
|
754
756
|
on_behalf_of_token_exchange_config: {
|
|
755
757
|
grant_type: ("TOKEN_EXCHANGE" | "JWT_AUTHORIZATION_GRANT"),
|
|
756
758
|
token_exchange_grant_type_config: {
|
|
@@ -758,47 +760,107 @@ module Aws
|
|
|
758
760
|
actor_token_scopes: Array[::String]?
|
|
759
761
|
}?
|
|
760
762
|
}?,
|
|
761
|
-
client_authentication_method: ("CLIENT_SECRET_BASIC" | "CLIENT_SECRET_POST" | "AWS_IAM_ID_TOKEN_JWT")
|
|
763
|
+
client_authentication_method: ("CLIENT_SECRET_BASIC" | "CLIENT_SECRET_POST" | "AWS_IAM_ID_TOKEN_JWT")?,
|
|
764
|
+
private_endpoint: Params::private_endpoint?,
|
|
765
|
+
private_endpoint_overrides: Array[
|
|
766
|
+
Params::private_endpoint_override
|
|
767
|
+
]?
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
type google_oauth_2_provider_config_input = {
|
|
771
|
+
client_id: ::String,
|
|
772
|
+
client_secret: ::String?,
|
|
773
|
+
client_secret_config: {
|
|
774
|
+
secret_id: ::String,
|
|
775
|
+
json_key: ::String
|
|
776
|
+
}?,
|
|
777
|
+
client_secret_source: ("MANAGED" | "EXTERNAL")?
|
|
778
|
+
}
|
|
779
|
+
|
|
780
|
+
type github_oauth_2_provider_config_input = {
|
|
781
|
+
client_id: ::String,
|
|
782
|
+
client_secret: ::String?,
|
|
783
|
+
client_secret_config: {
|
|
784
|
+
secret_id: ::String,
|
|
785
|
+
json_key: ::String
|
|
786
|
+
}?,
|
|
787
|
+
client_secret_source: ("MANAGED" | "EXTERNAL")?
|
|
788
|
+
}
|
|
789
|
+
|
|
790
|
+
type slack_oauth_2_provider_config_input = {
|
|
791
|
+
client_id: ::String,
|
|
792
|
+
client_secret: ::String?,
|
|
793
|
+
client_secret_config: {
|
|
794
|
+
secret_id: ::String,
|
|
795
|
+
json_key: ::String
|
|
796
|
+
}?,
|
|
797
|
+
client_secret_source: ("MANAGED" | "EXTERNAL")?
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
type salesforce_oauth_2_provider_config_input = {
|
|
801
|
+
client_id: ::String,
|
|
802
|
+
client_secret: ::String?,
|
|
803
|
+
client_secret_config: {
|
|
804
|
+
secret_id: ::String,
|
|
805
|
+
json_key: ::String
|
|
806
|
+
}?,
|
|
807
|
+
client_secret_source: ("MANAGED" | "EXTERNAL")?
|
|
808
|
+
}
|
|
809
|
+
|
|
810
|
+
type microsoft_oauth_2_provider_config_input = {
|
|
811
|
+
client_id: ::String,
|
|
812
|
+
client_secret: ::String?,
|
|
813
|
+
client_secret_config: {
|
|
814
|
+
secret_id: ::String,
|
|
815
|
+
json_key: ::String
|
|
816
|
+
}?,
|
|
817
|
+
client_secret_source: ("MANAGED" | "EXTERNAL")?,
|
|
818
|
+
tenant_id: ::String?
|
|
819
|
+
}
|
|
820
|
+
|
|
821
|
+
type atlassian_oauth_2_provider_config_input = {
|
|
822
|
+
client_id: ::String,
|
|
823
|
+
client_secret: ::String?,
|
|
824
|
+
client_secret_config: {
|
|
825
|
+
secret_id: ::String,
|
|
826
|
+
json_key: ::String
|
|
827
|
+
}?,
|
|
828
|
+
client_secret_source: ("MANAGED" | "EXTERNAL")?
|
|
829
|
+
}
|
|
830
|
+
|
|
831
|
+
type linkedin_oauth_2_provider_config_input = {
|
|
832
|
+
client_id: ::String,
|
|
833
|
+
client_secret: ::String?,
|
|
834
|
+
client_secret_config: {
|
|
835
|
+
secret_id: ::String,
|
|
836
|
+
json_key: ::String
|
|
837
|
+
}?,
|
|
838
|
+
client_secret_source: ("MANAGED" | "EXTERNAL")?
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
type included_oauth_2_provider_config_input = {
|
|
842
|
+
client_id: ::String,
|
|
843
|
+
client_secret: ::String?,
|
|
844
|
+
client_secret_config: {
|
|
845
|
+
secret_id: ::String,
|
|
846
|
+
json_key: ::String
|
|
847
|
+
}?,
|
|
848
|
+
client_secret_source: ("MANAGED" | "EXTERNAL")?,
|
|
849
|
+
issuer: ::String?,
|
|
850
|
+
authorization_endpoint: ::String?,
|
|
851
|
+
token_endpoint: ::String?
|
|
762
852
|
}
|
|
763
853
|
|
|
764
854
|
type oauth_2_provider_config_input = {
|
|
765
855
|
custom_oauth_2_provider_config: Params::custom_oauth_2_provider_config_input?,
|
|
766
|
-
google_oauth_2_provider_config:
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
slack_oauth_2_provider_config: {
|
|
775
|
-
client_id: ::String,
|
|
776
|
-
client_secret: ::String
|
|
777
|
-
}?,
|
|
778
|
-
salesforce_oauth_2_provider_config: {
|
|
779
|
-
client_id: ::String,
|
|
780
|
-
client_secret: ::String
|
|
781
|
-
}?,
|
|
782
|
-
microsoft_oauth_2_provider_config: {
|
|
783
|
-
client_id: ::String,
|
|
784
|
-
client_secret: ::String,
|
|
785
|
-
tenant_id: ::String?
|
|
786
|
-
}?,
|
|
787
|
-
atlassian_oauth_2_provider_config: {
|
|
788
|
-
client_id: ::String,
|
|
789
|
-
client_secret: ::String
|
|
790
|
-
}?,
|
|
791
|
-
linkedin_oauth_2_provider_config: {
|
|
792
|
-
client_id: ::String,
|
|
793
|
-
client_secret: ::String
|
|
794
|
-
}?,
|
|
795
|
-
included_oauth_2_provider_config: {
|
|
796
|
-
client_id: ::String,
|
|
797
|
-
client_secret: ::String,
|
|
798
|
-
issuer: ::String?,
|
|
799
|
-
authorization_endpoint: ::String?,
|
|
800
|
-
token_endpoint: ::String?
|
|
801
|
-
}?
|
|
856
|
+
google_oauth_2_provider_config: Params::google_oauth_2_provider_config_input?,
|
|
857
|
+
github_oauth_2_provider_config: Params::github_oauth_2_provider_config_input?,
|
|
858
|
+
slack_oauth_2_provider_config: Params::slack_oauth_2_provider_config_input?,
|
|
859
|
+
salesforce_oauth_2_provider_config: Params::salesforce_oauth_2_provider_config_input?,
|
|
860
|
+
microsoft_oauth_2_provider_config: Params::microsoft_oauth_2_provider_config_input?,
|
|
861
|
+
atlassian_oauth_2_provider_config: Params::atlassian_oauth_2_provider_config_input?,
|
|
862
|
+
linkedin_oauth_2_provider_config: Params::linkedin_oauth_2_provider_config_input?,
|
|
863
|
+
included_oauth_2_provider_config: Params::included_oauth_2_provider_config_input?
|
|
802
864
|
}
|
|
803
865
|
|
|
804
866
|
type rule = {
|
|
@@ -832,20 +894,44 @@ module Aws
|
|
|
832
894
|
}?
|
|
833
895
|
}
|
|
834
896
|
|
|
835
|
-
type
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
897
|
+
type coinbase_cdp_configuration_input = {
|
|
898
|
+
api_key_id: ::String,
|
|
899
|
+
api_key_secret: ::String?,
|
|
900
|
+
api_key_secret_source: ("MANAGED" | "EXTERNAL")?,
|
|
901
|
+
api_key_secret_config: {
|
|
902
|
+
secret_id: ::String,
|
|
903
|
+
json_key: ::String
|
|
904
|
+
}?,
|
|
905
|
+
wallet_secret: ::String?,
|
|
906
|
+
wallet_secret_source: ("MANAGED" | "EXTERNAL")?,
|
|
907
|
+
wallet_secret_config: {
|
|
908
|
+
secret_id: ::String,
|
|
909
|
+
json_key: ::String
|
|
846
910
|
}?
|
|
847
911
|
}
|
|
848
912
|
|
|
913
|
+
type stripe_privy_configuration_input = {
|
|
914
|
+
app_id: ::String,
|
|
915
|
+
app_secret: ::String?,
|
|
916
|
+
app_secret_source: ("MANAGED" | "EXTERNAL")?,
|
|
917
|
+
app_secret_config: {
|
|
918
|
+
secret_id: ::String,
|
|
919
|
+
json_key: ::String
|
|
920
|
+
}?,
|
|
921
|
+
authorization_private_key: ::String?,
|
|
922
|
+
authorization_private_key_source: ("MANAGED" | "EXTERNAL")?,
|
|
923
|
+
authorization_private_key_config: {
|
|
924
|
+
secret_id: ::String,
|
|
925
|
+
json_key: ::String
|
|
926
|
+
}?,
|
|
927
|
+
authorization_id: ::String
|
|
928
|
+
}
|
|
929
|
+
|
|
930
|
+
type payment_provider_configuration_input = {
|
|
931
|
+
coinbase_cdp_configuration: Params::coinbase_cdp_configuration_input?,
|
|
932
|
+
stripe_privy_configuration: Params::stripe_privy_configuration_input?
|
|
933
|
+
}
|
|
934
|
+
|
|
849
935
|
type policy_definition = {
|
|
850
936
|
cedar: {
|
|
851
937
|
statement: ::String
|
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
|
|
|
@@ -519,12 +529,16 @@ module Aws::BedrockAgentCoreControl
|
|
|
519
529
|
class CreateApiKeyCredentialProviderRequest
|
|
520
530
|
attr_accessor name: ::String
|
|
521
531
|
attr_accessor api_key: ::String
|
|
532
|
+
attr_accessor api_key_secret_config: Types::SecretReference
|
|
533
|
+
attr_accessor api_key_secret_source: ("MANAGED" | "EXTERNAL")
|
|
522
534
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
523
535
|
SENSITIVE: [:api_key]
|
|
524
536
|
end
|
|
525
537
|
|
|
526
538
|
class CreateApiKeyCredentialProviderResponse
|
|
527
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")
|
|
528
542
|
attr_accessor name: ::String
|
|
529
543
|
attr_accessor credential_provider_arn: ::String
|
|
530
544
|
SENSITIVE: []
|
|
@@ -811,6 +825,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
811
825
|
|
|
812
826
|
class CreateOauth2CredentialProviderResponse
|
|
813
827
|
attr_accessor client_secret_arn: Types::Secret
|
|
828
|
+
attr_accessor client_secret_json_key: ::String
|
|
829
|
+
attr_accessor client_secret_source: ("MANAGED" | "EXTERNAL")
|
|
814
830
|
attr_accessor name: ::String
|
|
815
831
|
attr_accessor credential_provider_arn: ::String
|
|
816
832
|
attr_accessor callback_url: ::String
|
|
@@ -1170,10 +1186,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
1170
1186
|
attr_accessor oauth_discovery: Types::Oauth2Discovery
|
|
1171
1187
|
attr_accessor client_id: ::String
|
|
1172
1188
|
attr_accessor client_secret: ::String
|
|
1173
|
-
attr_accessor
|
|
1174
|
-
attr_accessor
|
|
1189
|
+
attr_accessor client_secret_config: Types::SecretReference
|
|
1190
|
+
attr_accessor client_secret_source: ("MANAGED" | "EXTERNAL")
|
|
1175
1191
|
attr_accessor on_behalf_of_token_exchange_config: Types::OnBehalfOfTokenExchangeConfigType
|
|
1176
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]
|
|
1177
1195
|
SENSITIVE: [:client_secret]
|
|
1178
1196
|
end
|
|
1179
1197
|
|
|
@@ -1446,7 +1464,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1446
1464
|
|
|
1447
1465
|
class DeleteMemoryOutput
|
|
1448
1466
|
attr_accessor memory_id: ::String
|
|
1449
|
-
attr_accessor status: ("CREATING" | "ACTIVE" | "FAILED" | "DELETING")
|
|
1467
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "FAILED" | "DELETING" | "UPDATING")
|
|
1450
1468
|
SENSITIVE: []
|
|
1451
1469
|
end
|
|
1452
1470
|
|
|
@@ -1927,6 +1945,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
1927
1945
|
|
|
1928
1946
|
class GetApiKeyCredentialProviderResponse
|
|
1929
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")
|
|
1930
1950
|
attr_accessor name: ::String
|
|
1931
1951
|
attr_accessor credential_provider_arn: ::String
|
|
1932
1952
|
attr_accessor created_time: ::Time
|
|
@@ -2183,6 +2203,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
2183
2203
|
|
|
2184
2204
|
class GetOauth2CredentialProviderResponse
|
|
2185
2205
|
attr_accessor client_secret_arn: Types::Secret
|
|
2206
|
+
attr_accessor client_secret_json_key: ::String
|
|
2207
|
+
attr_accessor client_secret_source: ("MANAGED" | "EXTERNAL")
|
|
2186
2208
|
attr_accessor name: ::String
|
|
2187
2209
|
attr_accessor credential_provider_arn: ::String
|
|
2188
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")
|
|
@@ -2466,6 +2488,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
2466
2488
|
class GithubOauth2ProviderConfigInput
|
|
2467
2489
|
attr_accessor client_id: ::String
|
|
2468
2490
|
attr_accessor client_secret: ::String
|
|
2491
|
+
attr_accessor client_secret_config: Types::SecretReference
|
|
2492
|
+
attr_accessor client_secret_source: ("MANAGED" | "EXTERNAL")
|
|
2469
2493
|
SENSITIVE: [:client_secret]
|
|
2470
2494
|
end
|
|
2471
2495
|
|
|
@@ -2478,6 +2502,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
2478
2502
|
class GoogleOauth2ProviderConfigInput
|
|
2479
2503
|
attr_accessor client_id: ::String
|
|
2480
2504
|
attr_accessor client_secret: ::String
|
|
2505
|
+
attr_accessor client_secret_config: Types::SecretReference
|
|
2506
|
+
attr_accessor client_secret_source: ("MANAGED" | "EXTERNAL")
|
|
2481
2507
|
SENSITIVE: [:client_secret]
|
|
2482
2508
|
end
|
|
2483
2509
|
|
|
@@ -2840,6 +2866,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
2840
2866
|
class IncludedOauth2ProviderConfigInput
|
|
2841
2867
|
attr_accessor client_id: ::String
|
|
2842
2868
|
attr_accessor client_secret: ::String
|
|
2869
|
+
attr_accessor client_secret_config: Types::SecretReference
|
|
2870
|
+
attr_accessor client_secret_source: ("MANAGED" | "EXTERNAL")
|
|
2843
2871
|
attr_accessor issuer: ::String
|
|
2844
2872
|
attr_accessor authorization_endpoint: ::String
|
|
2845
2873
|
attr_accessor token_endpoint: ::String
|
|
@@ -2936,6 +2964,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
2936
2964
|
class LinkedinOauth2ProviderConfigInput
|
|
2937
2965
|
attr_accessor client_id: ::String
|
|
2938
2966
|
attr_accessor client_secret: ::String
|
|
2967
|
+
attr_accessor client_secret_config: Types::SecretReference
|
|
2968
|
+
attr_accessor client_secret_source: ("MANAGED" | "EXTERNAL")
|
|
2939
2969
|
SENSITIVE: [:client_secret]
|
|
2940
2970
|
end
|
|
2941
2971
|
|
|
@@ -3507,7 +3537,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3507
3537
|
attr_accessor encryption_key_arn: ::String
|
|
3508
3538
|
attr_accessor memory_execution_role_arn: ::String
|
|
3509
3539
|
attr_accessor event_expiry_duration: ::Integer
|
|
3510
|
-
attr_accessor status: ("CREATING" | "ACTIVE" | "FAILED" | "DELETING")
|
|
3540
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "FAILED" | "DELETING" | "UPDATING")
|
|
3511
3541
|
attr_accessor failure_reason: ::String
|
|
3512
3542
|
attr_accessor created_at: ::Time
|
|
3513
3543
|
attr_accessor updated_at: ::Time
|
|
@@ -3563,7 +3593,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3563
3593
|
class MemorySummary
|
|
3564
3594
|
attr_accessor arn: ::String
|
|
3565
3595
|
attr_accessor id: ::String
|
|
3566
|
-
attr_accessor status: ("CREATING" | "ACTIVE" | "FAILED" | "DELETING")
|
|
3596
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "FAILED" | "DELETING" | "UPDATING")
|
|
3567
3597
|
attr_accessor created_at: ::Time
|
|
3568
3598
|
attr_accessor updated_at: ::Time
|
|
3569
3599
|
SENSITIVE: []
|
|
@@ -3589,6 +3619,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3589
3619
|
class MetadataSchemaEntry
|
|
3590
3620
|
attr_accessor key: ::String
|
|
3591
3621
|
attr_accessor type: ("STRING" | "STRINGLIST" | "NUMBER")
|
|
3622
|
+
attr_accessor extraction_type: ("LLM_INFERRED" | "STRICTLY_CONSISTENT")
|
|
3592
3623
|
attr_accessor extraction_config: Types::ExtractionConfig
|
|
3593
3624
|
SENSITIVE: []
|
|
3594
3625
|
end
|
|
@@ -3596,6 +3627,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
3596
3627
|
class MicrosoftOauth2ProviderConfigInput
|
|
3597
3628
|
attr_accessor client_id: ::String
|
|
3598
3629
|
attr_accessor client_secret: ::String
|
|
3630
|
+
attr_accessor client_secret_config: Types::SecretReference
|
|
3631
|
+
attr_accessor client_secret_source: ("MANAGED" | "EXTERNAL")
|
|
3599
3632
|
attr_accessor tenant_id: ::String
|
|
3600
3633
|
SENSITIVE: [:client_secret]
|
|
3601
3634
|
end
|
|
@@ -4242,6 +4275,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
4242
4275
|
class SalesforceOauth2ProviderConfigInput
|
|
4243
4276
|
attr_accessor client_id: ::String
|
|
4244
4277
|
attr_accessor client_secret: ::String
|
|
4278
|
+
attr_accessor client_secret_config: Types::SecretReference
|
|
4279
|
+
attr_accessor client_secret_source: ("MANAGED" | "EXTERNAL")
|
|
4245
4280
|
SENSITIVE: [:client_secret]
|
|
4246
4281
|
end
|
|
4247
4282
|
|
|
@@ -4270,6 +4305,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
4270
4305
|
SENSITIVE: []
|
|
4271
4306
|
end
|
|
4272
4307
|
|
|
4308
|
+
class SecretReference
|
|
4309
|
+
attr_accessor secret_id: ::String
|
|
4310
|
+
attr_accessor json_key: ::String
|
|
4311
|
+
SENSITIVE: []
|
|
4312
|
+
end
|
|
4313
|
+
|
|
4273
4314
|
class SecretsManagerLocation
|
|
4274
4315
|
attr_accessor secret_arn: ::String
|
|
4275
4316
|
SENSITIVE: []
|
|
@@ -4397,6 +4438,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
4397
4438
|
class SlackOauth2ProviderConfigInput
|
|
4398
4439
|
attr_accessor client_id: ::String
|
|
4399
4440
|
attr_accessor client_secret: ::String
|
|
4441
|
+
attr_accessor client_secret_config: Types::SecretReference
|
|
4442
|
+
attr_accessor client_secret_source: ("MANAGED" | "EXTERNAL")
|
|
4400
4443
|
SENSITIVE: [:client_secret]
|
|
4401
4444
|
end
|
|
4402
4445
|
|
|
@@ -4484,7 +4527,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
4484
4527
|
class StripePrivyConfigurationInput
|
|
4485
4528
|
attr_accessor app_id: ::String
|
|
4486
4529
|
attr_accessor app_secret: ::String
|
|
4530
|
+
attr_accessor app_secret_source: ("MANAGED" | "EXTERNAL")
|
|
4531
|
+
attr_accessor app_secret_config: Types::SecretReference
|
|
4487
4532
|
attr_accessor authorization_private_key: ::String
|
|
4533
|
+
attr_accessor authorization_private_key_source: ("MANAGED" | "EXTERNAL")
|
|
4534
|
+
attr_accessor authorization_private_key_config: Types::SecretReference
|
|
4488
4535
|
attr_accessor authorization_id: ::String
|
|
4489
4536
|
SENSITIVE: [:app_secret, :authorization_private_key]
|
|
4490
4537
|
end
|
|
@@ -4492,7 +4539,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
4492
4539
|
class StripePrivyConfigurationOutput
|
|
4493
4540
|
attr_accessor app_id: ::String
|
|
4494
4541
|
attr_accessor app_secret_arn: Types::Secret
|
|
4542
|
+
attr_accessor app_secret_json_key: ::String
|
|
4543
|
+
attr_accessor app_secret_source: ("MANAGED" | "EXTERNAL")
|
|
4495
4544
|
attr_accessor authorization_private_key_arn: Types::Secret
|
|
4545
|
+
attr_accessor authorization_private_key_json_key: ::String
|
|
4546
|
+
attr_accessor authorization_private_key_source: ("MANAGED" | "EXTERNAL")
|
|
4496
4547
|
attr_accessor authorization_id: ::String
|
|
4497
4548
|
SENSITIVE: []
|
|
4498
4549
|
end
|
|
@@ -4777,11 +4828,15 @@ module Aws::BedrockAgentCoreControl
|
|
|
4777
4828
|
class UpdateApiKeyCredentialProviderRequest
|
|
4778
4829
|
attr_accessor name: ::String
|
|
4779
4830
|
attr_accessor api_key: ::String
|
|
4831
|
+
attr_accessor api_key_secret_config: Types::SecretReference
|
|
4832
|
+
attr_accessor api_key_secret_source: ("MANAGED" | "EXTERNAL")
|
|
4780
4833
|
SENSITIVE: [:api_key]
|
|
4781
4834
|
end
|
|
4782
4835
|
|
|
4783
4836
|
class UpdateApiKeyCredentialProviderResponse
|
|
4784
4837
|
attr_accessor api_key_secret_arn: Types::Secret
|
|
4838
|
+
attr_accessor api_key_secret_json_key: ::String
|
|
4839
|
+
attr_accessor api_key_secret_source: ("MANAGED" | "EXTERNAL")
|
|
4785
4840
|
attr_accessor name: ::String
|
|
4786
4841
|
attr_accessor credential_provider_arn: ::String
|
|
4787
4842
|
attr_accessor created_time: ::Time
|
|
@@ -5005,6 +5060,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
5005
5060
|
|
|
5006
5061
|
class UpdateOauth2CredentialProviderResponse
|
|
5007
5062
|
attr_accessor client_secret_arn: Types::Secret
|
|
5063
|
+
attr_accessor client_secret_json_key: ::String
|
|
5064
|
+
attr_accessor client_secret_source: ("MANAGED" | "EXTERNAL")
|
|
5008
5065
|
attr_accessor name: ::String
|
|
5009
5066
|
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")
|
|
5010
5067
|
attr_accessor credential_provider_arn: ::String
|