aws-sdk-bedrockagentcorecontrol 1.8.0 → 1.10.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 +454 -26
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +223 -2
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +775 -28
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +141 -15
- data/sig/types.rbs +235 -13
- metadata +1 -1
|
@@ -625,6 +625,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
625
625
|
# * {Types::CreateAgentRuntimeEndpointResponse#target_version #target_version} => String
|
|
626
626
|
# * {Types::CreateAgentRuntimeEndpointResponse#agent_runtime_endpoint_arn #agent_runtime_endpoint_arn} => String
|
|
627
627
|
# * {Types::CreateAgentRuntimeEndpointResponse#agent_runtime_arn #agent_runtime_arn} => String
|
|
628
|
+
# * {Types::CreateAgentRuntimeEndpointResponse#agent_runtime_id #agent_runtime_id} => String
|
|
629
|
+
# * {Types::CreateAgentRuntimeEndpointResponse#endpoint_name #endpoint_name} => String
|
|
628
630
|
# * {Types::CreateAgentRuntimeEndpointResponse#status #status} => String
|
|
629
631
|
# * {Types::CreateAgentRuntimeEndpointResponse#created_at #created_at} => Time
|
|
630
632
|
#
|
|
@@ -646,6 +648,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
646
648
|
# resp.target_version #=> String
|
|
647
649
|
# resp.agent_runtime_endpoint_arn #=> String
|
|
648
650
|
# resp.agent_runtime_arn #=> String
|
|
651
|
+
# resp.agent_runtime_id #=> String
|
|
652
|
+
# resp.endpoint_name #=> String
|
|
649
653
|
# resp.status #=> String, one of "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "READY", "DELETING"
|
|
650
654
|
# resp.created_at #=> Time
|
|
651
655
|
#
|
|
@@ -668,6 +672,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
668
672
|
# The API key to use for authentication. This value is encrypted and
|
|
669
673
|
# stored securely.
|
|
670
674
|
#
|
|
675
|
+
# @option params [Hash<String,String>] :tags
|
|
676
|
+
# A map of tag keys and values to assign to the API key credential
|
|
677
|
+
# provider. Tags enable you to categorize your resources in different
|
|
678
|
+
# ways, for example, by purpose, owner, or environment.
|
|
679
|
+
#
|
|
671
680
|
# @return [Types::CreateApiKeyCredentialProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
672
681
|
#
|
|
673
682
|
# * {Types::CreateApiKeyCredentialProviderResponse#api_key_secret_arn #api_key_secret_arn} => Types::Secret
|
|
@@ -679,6 +688,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
679
688
|
# resp = client.create_api_key_credential_provider({
|
|
680
689
|
# name: "CredentialProviderName", # required
|
|
681
690
|
# api_key: "ApiKeyType", # required
|
|
691
|
+
# tags: {
|
|
692
|
+
# "TagKey" => "TagValue",
|
|
693
|
+
# },
|
|
682
694
|
# })
|
|
683
695
|
#
|
|
684
696
|
# @example Response structure
|
|
@@ -856,9 +868,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
856
868
|
# Creates a gateway for Amazon Bedrock Agent. A gateway serves as an
|
|
857
869
|
# integration point between your agent and external services.
|
|
858
870
|
#
|
|
859
|
-
#
|
|
860
|
-
#
|
|
861
|
-
# Services services and resources.
|
|
871
|
+
# If you specify `CUSTOM_JWT` as the `authorizerType`, you must provide
|
|
872
|
+
# an `authorizerConfiguration`.
|
|
862
873
|
#
|
|
863
874
|
# @option params [required, String] :name
|
|
864
875
|
# The name of the gateway. The name must be unique within your account.
|
|
@@ -868,8 +879,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
868
879
|
#
|
|
869
880
|
# @option params [String] :client_token
|
|
870
881
|
# A unique, case-sensitive identifier to ensure that the API request
|
|
871
|
-
# completes no more than one time. If this
|
|
872
|
-
#
|
|
882
|
+
# completes no more than one time. If you don't specify this field, a
|
|
883
|
+
# value is randomly generated for you. If this token matches a previous
|
|
884
|
+
# request, the service ignores the request, but doesn't return an
|
|
873
885
|
# error. For more information, see [Ensuring idempotency][1].
|
|
874
886
|
#
|
|
875
887
|
# **A suitable default value is auto-generated.** You should normally
|
|
@@ -893,8 +905,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
893
905
|
# @option params [required, String] :authorizer_type
|
|
894
906
|
# The type of authorizer to use for the gateway.
|
|
895
907
|
#
|
|
908
|
+
# * `CUSTOM_JWT` - Authorize with a bearer token.
|
|
909
|
+
#
|
|
910
|
+
# * `AWS_IAM` - Authorize with your Amazon Web Services IAM credentials.
|
|
911
|
+
#
|
|
896
912
|
# @option params [Types::AuthorizerConfiguration] :authorizer_configuration
|
|
897
|
-
# The authorizer configuration for the gateway.
|
|
913
|
+
# The authorizer configuration for the gateway. Required if
|
|
914
|
+
# `authorizerType` is `CUSTOM_JWT`.
|
|
898
915
|
#
|
|
899
916
|
# @option params [String] :kms_key_arn
|
|
900
917
|
# The Amazon Resource Name (ARN) of the KMS key used to encrypt data
|
|
@@ -1016,8 +1033,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
1016
1033
|
#
|
|
1017
1034
|
# @option params [String] :client_token
|
|
1018
1035
|
# A unique, case-sensitive identifier to ensure that the API request
|
|
1019
|
-
# completes no more than one time. If this
|
|
1020
|
-
#
|
|
1036
|
+
# completes no more than one time. If you don't specify this field, a
|
|
1037
|
+
# value is randomly generated for you. If this token matches a previous
|
|
1038
|
+
# request, the service ignores the request, but doesn't return an
|
|
1021
1039
|
# error. For more information, see [Ensuring idempotency][1].
|
|
1022
1040
|
#
|
|
1023
1041
|
# **A suitable default value is auto-generated.** You should normally
|
|
@@ -1031,7 +1049,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1031
1049
|
# The configuration settings for the target, including endpoint
|
|
1032
1050
|
# information and schema definitions.
|
|
1033
1051
|
#
|
|
1034
|
-
# @option params [
|
|
1052
|
+
# @option params [Array<Types::CredentialProviderConfiguration>] :credential_provider_configurations
|
|
1035
1053
|
# The credential provider configurations for the target. These
|
|
1036
1054
|
# configurations specify how the gateway authenticates with the target
|
|
1037
1055
|
# endpoint.
|
|
@@ -1048,6 +1066,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1048
1066
|
# * {Types::CreateGatewayTargetResponse#description #description} => String
|
|
1049
1067
|
# * {Types::CreateGatewayTargetResponse#target_configuration #target_configuration} => Types::TargetConfiguration
|
|
1050
1068
|
# * {Types::CreateGatewayTargetResponse#credential_provider_configurations #credential_provider_configurations} => Array<Types::CredentialProviderConfiguration>
|
|
1069
|
+
# * {Types::CreateGatewayTargetResponse#last_synchronized_at #last_synchronized_at} => Time
|
|
1051
1070
|
#
|
|
1052
1071
|
# @example Request syntax with placeholder values
|
|
1053
1072
|
#
|
|
@@ -1113,9 +1132,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
1113
1132
|
# ],
|
|
1114
1133
|
# },
|
|
1115
1134
|
# },
|
|
1135
|
+
# mcp_server: {
|
|
1136
|
+
# endpoint: "McpServerTargetConfigurationEndpointString", # required
|
|
1137
|
+
# },
|
|
1116
1138
|
# },
|
|
1117
1139
|
# },
|
|
1118
|
-
# credential_provider_configurations: [
|
|
1140
|
+
# credential_provider_configurations: [
|
|
1119
1141
|
# {
|
|
1120
1142
|
# credential_provider_type: "GATEWAY_IAM_ROLE", # required, accepts GATEWAY_IAM_ROLE, OAUTH, API_KEY
|
|
1121
1143
|
# credential_provider: {
|
|
@@ -1143,7 +1165,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1143
1165
|
# resp.target_id #=> String
|
|
1144
1166
|
# resp.created_at #=> Time
|
|
1145
1167
|
# resp.updated_at #=> Time
|
|
1146
|
-
# resp.status #=> String, one of "CREATING", "UPDATING", "UPDATE_UNSUCCESSFUL", "DELETING", "READY", "FAILED"
|
|
1168
|
+
# resp.status #=> String, one of "CREATING", "UPDATING", "UPDATE_UNSUCCESSFUL", "DELETING", "READY", "FAILED", "SYNCHRONIZING", "SYNCHRONIZE_UNSUCCESSFUL"
|
|
1147
1169
|
# resp.status_reasons #=> Array
|
|
1148
1170
|
# resp.status_reasons[0] #=> String
|
|
1149
1171
|
# resp.name #=> String
|
|
@@ -1174,6 +1196,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1174
1196
|
# resp.target_configuration.mcp.lambda.tool_schema.inline_payload[0].output_schema.required[0] #=> String
|
|
1175
1197
|
# resp.target_configuration.mcp.lambda.tool_schema.inline_payload[0].output_schema.items #=> Types::SchemaDefinition
|
|
1176
1198
|
# resp.target_configuration.mcp.lambda.tool_schema.inline_payload[0].output_schema.description #=> String
|
|
1199
|
+
# resp.target_configuration.mcp.mcp_server.endpoint #=> String
|
|
1177
1200
|
# resp.credential_provider_configurations #=> Array
|
|
1178
1201
|
# resp.credential_provider_configurations[0].credential_provider_type #=> String, one of "GATEWAY_IAM_ROLE", "OAUTH", "API_KEY"
|
|
1179
1202
|
# resp.credential_provider_configurations[0].credential_provider.oauth_credential_provider.provider_arn #=> String
|
|
@@ -1185,6 +1208,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1185
1208
|
# resp.credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_parameter_name #=> String
|
|
1186
1209
|
# resp.credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_prefix #=> String
|
|
1187
1210
|
# resp.credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_location #=> String, one of "HEADER", "QUERY_PARAMETER"
|
|
1211
|
+
# resp.last_synchronized_at #=> Time
|
|
1188
1212
|
#
|
|
1189
1213
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateGatewayTarget AWS API Documentation
|
|
1190
1214
|
#
|
|
@@ -1294,6 +1318,26 @@ module Aws::BedrockAgentCoreControl
|
|
|
1294
1318
|
# model_id: "String", # required
|
|
1295
1319
|
# },
|
|
1296
1320
|
# },
|
|
1321
|
+
# self_managed_configuration: {
|
|
1322
|
+
# trigger_conditions: [
|
|
1323
|
+
# {
|
|
1324
|
+
# message_based_trigger: {
|
|
1325
|
+
# message_count: 1,
|
|
1326
|
+
# },
|
|
1327
|
+
# token_based_trigger: {
|
|
1328
|
+
# token_count: 1,
|
|
1329
|
+
# },
|
|
1330
|
+
# time_based_trigger: {
|
|
1331
|
+
# idle_session_timeout: 1,
|
|
1332
|
+
# },
|
|
1333
|
+
# },
|
|
1334
|
+
# ],
|
|
1335
|
+
# invocation_configuration: { # required
|
|
1336
|
+
# topic_arn: "Arn", # required
|
|
1337
|
+
# payload_delivery_bucket_name: "InvocationConfigurationInputPayloadDeliveryBucketNameString", # required
|
|
1338
|
+
# },
|
|
1339
|
+
# historical_context_window_size: 1,
|
|
1340
|
+
# },
|
|
1297
1341
|
# },
|
|
1298
1342
|
# },
|
|
1299
1343
|
# },
|
|
@@ -1320,7 +1364,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1320
1364
|
# resp.memory.strategies[0].strategy_id #=> String
|
|
1321
1365
|
# resp.memory.strategies[0].name #=> String
|
|
1322
1366
|
# resp.memory.strategies[0].description #=> String
|
|
1323
|
-
# resp.memory.strategies[0].configuration.type #=> String, one of "SEMANTIC_OVERRIDE", "SUMMARY_OVERRIDE", "USER_PREFERENCE_OVERRIDE"
|
|
1367
|
+
# resp.memory.strategies[0].configuration.type #=> String, one of "SEMANTIC_OVERRIDE", "SUMMARY_OVERRIDE", "USER_PREFERENCE_OVERRIDE", "SELF_MANAGED"
|
|
1324
1368
|
# resp.memory.strategies[0].configuration.extraction.custom_extraction_configuration.semantic_extraction_override.append_to_prompt #=> String
|
|
1325
1369
|
# resp.memory.strategies[0].configuration.extraction.custom_extraction_configuration.semantic_extraction_override.model_id #=> String
|
|
1326
1370
|
# resp.memory.strategies[0].configuration.extraction.custom_extraction_configuration.user_preference_extraction_override.append_to_prompt #=> String
|
|
@@ -1331,6 +1375,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
1331
1375
|
# resp.memory.strategies[0].configuration.consolidation.custom_consolidation_configuration.summary_consolidation_override.model_id #=> String
|
|
1332
1376
|
# resp.memory.strategies[0].configuration.consolidation.custom_consolidation_configuration.user_preference_consolidation_override.append_to_prompt #=> String
|
|
1333
1377
|
# resp.memory.strategies[0].configuration.consolidation.custom_consolidation_configuration.user_preference_consolidation_override.model_id #=> String
|
|
1378
|
+
# resp.memory.strategies[0].configuration.self_managed_configuration.trigger_conditions #=> Array
|
|
1379
|
+
# resp.memory.strategies[0].configuration.self_managed_configuration.trigger_conditions[0].message_based_trigger.message_count #=> Integer
|
|
1380
|
+
# resp.memory.strategies[0].configuration.self_managed_configuration.trigger_conditions[0].token_based_trigger.token_count #=> Integer
|
|
1381
|
+
# resp.memory.strategies[0].configuration.self_managed_configuration.trigger_conditions[0].time_based_trigger.idle_session_timeout #=> Integer
|
|
1382
|
+
# resp.memory.strategies[0].configuration.self_managed_configuration.invocation_configuration.topic_arn #=> String
|
|
1383
|
+
# resp.memory.strategies[0].configuration.self_managed_configuration.invocation_configuration.payload_delivery_bucket_name #=> String
|
|
1384
|
+
# resp.memory.strategies[0].configuration.self_managed_configuration.historical_context_window_size #=> Integer
|
|
1334
1385
|
# resp.memory.strategies[0].type #=> String, one of "SEMANTIC", "SUMMARIZATION", "USER_PREFERENCE", "CUSTOM"
|
|
1335
1386
|
# resp.memory.strategies[0].namespaces #=> Array
|
|
1336
1387
|
# resp.memory.strategies[0].namespaces[0] #=> String
|
|
@@ -1361,17 +1412,24 @@ module Aws::BedrockAgentCoreControl
|
|
|
1361
1412
|
# The configuration settings for the OAuth2 provider, including client
|
|
1362
1413
|
# ID, client secret, and other vendor-specific settings.
|
|
1363
1414
|
#
|
|
1415
|
+
# @option params [Hash<String,String>] :tags
|
|
1416
|
+
# A map of tag keys and values to assign to the OAuth2 credential
|
|
1417
|
+
# provider. Tags enable you to categorize your resources in different
|
|
1418
|
+
# ways, for example, by purpose, owner, or environment.
|
|
1419
|
+
#
|
|
1364
1420
|
# @return [Types::CreateOauth2CredentialProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1365
1421
|
#
|
|
1366
1422
|
# * {Types::CreateOauth2CredentialProviderResponse#client_secret_arn #client_secret_arn} => Types::Secret
|
|
1367
1423
|
# * {Types::CreateOauth2CredentialProviderResponse#name #name} => String
|
|
1368
1424
|
# * {Types::CreateOauth2CredentialProviderResponse#credential_provider_arn #credential_provider_arn} => String
|
|
1425
|
+
# * {Types::CreateOauth2CredentialProviderResponse#callback_url #callback_url} => String
|
|
1426
|
+
# * {Types::CreateOauth2CredentialProviderResponse#oauth2_provider_config_output #oauth2_provider_config_output} => Types::Oauth2ProviderConfigOutput
|
|
1369
1427
|
#
|
|
1370
1428
|
# @example Request syntax with placeholder values
|
|
1371
1429
|
#
|
|
1372
1430
|
# resp = client.create_oauth_2_credential_provider({
|
|
1373
1431
|
# name: "CredentialProviderName", # required
|
|
1374
|
-
# credential_provider_vendor: "GoogleOauth2", # required, accepts GoogleOauth2, GithubOauth2, SlackOauth2, SalesforceOauth2, MicrosoftOauth2, CustomOauth2
|
|
1432
|
+
# credential_provider_vendor: "GoogleOauth2", # required, accepts 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
|
|
1375
1433
|
# oauth2_provider_config_input: { # required
|
|
1376
1434
|
# custom_oauth_2_provider_config: {
|
|
1377
1435
|
# oauth_discovery: { # required
|
|
@@ -1381,6 +1439,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1381
1439
|
# authorization_endpoint: "AuthorizationEndpointType", # required
|
|
1382
1440
|
# token_endpoint: "TokenEndpointType", # required
|
|
1383
1441
|
# response_types: ["ResponseType"],
|
|
1442
|
+
# token_endpoint_auth_methods: ["TokenAuthMethod"],
|
|
1384
1443
|
# },
|
|
1385
1444
|
# },
|
|
1386
1445
|
# client_id: "ClientIdType", # required
|
|
@@ -1405,7 +1464,26 @@ module Aws::BedrockAgentCoreControl
|
|
|
1405
1464
|
# microsoft_oauth_2_provider_config: {
|
|
1406
1465
|
# client_id: "ClientIdType", # required
|
|
1407
1466
|
# client_secret: "ClientSecretType", # required
|
|
1467
|
+
# tenant_id: "TenantIdType",
|
|
1468
|
+
# },
|
|
1469
|
+
# atlassian_oauth_2_provider_config: {
|
|
1470
|
+
# client_id: "ClientIdType", # required
|
|
1471
|
+
# client_secret: "ClientSecretType", # required
|
|
1408
1472
|
# },
|
|
1473
|
+
# linkedin_oauth_2_provider_config: {
|
|
1474
|
+
# client_id: "ClientIdType", # required
|
|
1475
|
+
# client_secret: "ClientSecretType", # required
|
|
1476
|
+
# },
|
|
1477
|
+
# included_oauth_2_provider_config: {
|
|
1478
|
+
# client_id: "ClientIdType", # required
|
|
1479
|
+
# client_secret: "ClientSecretType", # required
|
|
1480
|
+
# issuer: "IssuerUrlType",
|
|
1481
|
+
# authorization_endpoint: "AuthorizationEndpointType",
|
|
1482
|
+
# token_endpoint: "TokenEndpointType",
|
|
1483
|
+
# },
|
|
1484
|
+
# },
|
|
1485
|
+
# tags: {
|
|
1486
|
+
# "TagKey" => "TagValue",
|
|
1409
1487
|
# },
|
|
1410
1488
|
# })
|
|
1411
1489
|
#
|
|
@@ -1414,6 +1492,88 @@ module Aws::BedrockAgentCoreControl
|
|
|
1414
1492
|
# resp.client_secret_arn.secret_arn #=> String
|
|
1415
1493
|
# resp.name #=> String
|
|
1416
1494
|
# resp.credential_provider_arn #=> String
|
|
1495
|
+
# resp.callback_url #=> String
|
|
1496
|
+
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
|
|
1497
|
+
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
|
|
1498
|
+
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
|
|
1499
|
+
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint #=> String
|
|
1500
|
+
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types #=> Array
|
|
1501
|
+
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types[0] #=> String
|
|
1502
|
+
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods #=> Array
|
|
1503
|
+
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods[0] #=> String
|
|
1504
|
+
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.client_id #=> String
|
|
1505
|
+
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
|
|
1506
|
+
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
|
|
1507
|
+
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
|
|
1508
|
+
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint #=> String
|
|
1509
|
+
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types #=> Array
|
|
1510
|
+
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types[0] #=> String
|
|
1511
|
+
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods #=> Array
|
|
1512
|
+
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods[0] #=> String
|
|
1513
|
+
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.client_id #=> String
|
|
1514
|
+
# resp.oauth2_provider_config_output.github_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
|
|
1515
|
+
# resp.oauth2_provider_config_output.github_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
|
|
1516
|
+
# resp.oauth2_provider_config_output.github_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
|
|
1517
|
+
# resp.oauth2_provider_config_output.github_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint #=> String
|
|
1518
|
+
# resp.oauth2_provider_config_output.github_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types #=> Array
|
|
1519
|
+
# resp.oauth2_provider_config_output.github_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types[0] #=> String
|
|
1520
|
+
# resp.oauth2_provider_config_output.github_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods #=> Array
|
|
1521
|
+
# resp.oauth2_provider_config_output.github_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods[0] #=> String
|
|
1522
|
+
# resp.oauth2_provider_config_output.github_oauth_2_provider_config.client_id #=> String
|
|
1523
|
+
# resp.oauth2_provider_config_output.slack_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
|
|
1524
|
+
# resp.oauth2_provider_config_output.slack_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
|
|
1525
|
+
# resp.oauth2_provider_config_output.slack_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
|
|
1526
|
+
# resp.oauth2_provider_config_output.slack_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint #=> String
|
|
1527
|
+
# resp.oauth2_provider_config_output.slack_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types #=> Array
|
|
1528
|
+
# resp.oauth2_provider_config_output.slack_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types[0] #=> String
|
|
1529
|
+
# resp.oauth2_provider_config_output.slack_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods #=> Array
|
|
1530
|
+
# resp.oauth2_provider_config_output.slack_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods[0] #=> String
|
|
1531
|
+
# resp.oauth2_provider_config_output.slack_oauth_2_provider_config.client_id #=> String
|
|
1532
|
+
# resp.oauth2_provider_config_output.salesforce_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
|
|
1533
|
+
# resp.oauth2_provider_config_output.salesforce_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
|
|
1534
|
+
# resp.oauth2_provider_config_output.salesforce_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
|
|
1535
|
+
# resp.oauth2_provider_config_output.salesforce_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint #=> String
|
|
1536
|
+
# resp.oauth2_provider_config_output.salesforce_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types #=> Array
|
|
1537
|
+
# resp.oauth2_provider_config_output.salesforce_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types[0] #=> String
|
|
1538
|
+
# resp.oauth2_provider_config_output.salesforce_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods #=> Array
|
|
1539
|
+
# resp.oauth2_provider_config_output.salesforce_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods[0] #=> String
|
|
1540
|
+
# resp.oauth2_provider_config_output.salesforce_oauth_2_provider_config.client_id #=> String
|
|
1541
|
+
# resp.oauth2_provider_config_output.microsoft_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
|
|
1542
|
+
# resp.oauth2_provider_config_output.microsoft_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
|
|
1543
|
+
# resp.oauth2_provider_config_output.microsoft_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
|
|
1544
|
+
# resp.oauth2_provider_config_output.microsoft_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint #=> String
|
|
1545
|
+
# resp.oauth2_provider_config_output.microsoft_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types #=> Array
|
|
1546
|
+
# resp.oauth2_provider_config_output.microsoft_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types[0] #=> String
|
|
1547
|
+
# resp.oauth2_provider_config_output.microsoft_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods #=> Array
|
|
1548
|
+
# resp.oauth2_provider_config_output.microsoft_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods[0] #=> String
|
|
1549
|
+
# resp.oauth2_provider_config_output.microsoft_oauth_2_provider_config.client_id #=> String
|
|
1550
|
+
# resp.oauth2_provider_config_output.atlassian_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
|
|
1551
|
+
# resp.oauth2_provider_config_output.atlassian_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
|
|
1552
|
+
# resp.oauth2_provider_config_output.atlassian_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
|
|
1553
|
+
# resp.oauth2_provider_config_output.atlassian_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint #=> String
|
|
1554
|
+
# resp.oauth2_provider_config_output.atlassian_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types #=> Array
|
|
1555
|
+
# resp.oauth2_provider_config_output.atlassian_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types[0] #=> String
|
|
1556
|
+
# resp.oauth2_provider_config_output.atlassian_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods #=> Array
|
|
1557
|
+
# resp.oauth2_provider_config_output.atlassian_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods[0] #=> String
|
|
1558
|
+
# resp.oauth2_provider_config_output.atlassian_oauth_2_provider_config.client_id #=> String
|
|
1559
|
+
# resp.oauth2_provider_config_output.linkedin_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
|
|
1560
|
+
# resp.oauth2_provider_config_output.linkedin_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
|
|
1561
|
+
# resp.oauth2_provider_config_output.linkedin_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
|
|
1562
|
+
# resp.oauth2_provider_config_output.linkedin_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint #=> String
|
|
1563
|
+
# resp.oauth2_provider_config_output.linkedin_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types #=> Array
|
|
1564
|
+
# resp.oauth2_provider_config_output.linkedin_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types[0] #=> String
|
|
1565
|
+
# resp.oauth2_provider_config_output.linkedin_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods #=> Array
|
|
1566
|
+
# resp.oauth2_provider_config_output.linkedin_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods[0] #=> String
|
|
1567
|
+
# resp.oauth2_provider_config_output.linkedin_oauth_2_provider_config.client_id #=> String
|
|
1568
|
+
# resp.oauth2_provider_config_output.included_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
|
|
1569
|
+
# resp.oauth2_provider_config_output.included_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
|
|
1570
|
+
# resp.oauth2_provider_config_output.included_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
|
|
1571
|
+
# resp.oauth2_provider_config_output.included_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint #=> String
|
|
1572
|
+
# resp.oauth2_provider_config_output.included_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types #=> Array
|
|
1573
|
+
# resp.oauth2_provider_config_output.included_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types[0] #=> String
|
|
1574
|
+
# resp.oauth2_provider_config_output.included_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods #=> Array
|
|
1575
|
+
# resp.oauth2_provider_config_output.included_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods[0] #=> String
|
|
1576
|
+
# resp.oauth2_provider_config_output.included_oauth_2_provider_config.client_id #=> String
|
|
1417
1577
|
#
|
|
1418
1578
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateOauth2CredentialProvider AWS API Documentation
|
|
1419
1579
|
#
|
|
@@ -1434,6 +1594,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
1434
1594
|
# The list of allowed OAuth2 return URLs for resources associated with
|
|
1435
1595
|
# this workload identity.
|
|
1436
1596
|
#
|
|
1597
|
+
# @option params [Hash<String,String>] :tags
|
|
1598
|
+
# A map of tag keys and values to assign to the workload identity. Tags
|
|
1599
|
+
# enable you to categorize your resources in different ways, for
|
|
1600
|
+
# example, by purpose, owner, or environment.
|
|
1601
|
+
#
|
|
1437
1602
|
# @return [Types::CreateWorkloadIdentityResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1438
1603
|
#
|
|
1439
1604
|
# * {Types::CreateWorkloadIdentityResponse#name #name} => String
|
|
@@ -1445,6 +1610,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
1445
1610
|
# resp = client.create_workload_identity({
|
|
1446
1611
|
# name: "WorkloadIdentityNameType", # required
|
|
1447
1612
|
# allowed_resource_oauth_2_return_urls: ["ResourceOauth2ReturnUrlType"],
|
|
1613
|
+
# tags: {
|
|
1614
|
+
# "TagKey" => "TagValue",
|
|
1615
|
+
# },
|
|
1448
1616
|
# })
|
|
1449
1617
|
#
|
|
1450
1618
|
# @example Response structure
|
|
@@ -1471,6 +1639,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1471
1639
|
# @return [Types::DeleteAgentRuntimeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1472
1640
|
#
|
|
1473
1641
|
# * {Types::DeleteAgentRuntimeResponse#status #status} => String
|
|
1642
|
+
# * {Types::DeleteAgentRuntimeResponse#agent_runtime_id #agent_runtime_id} => String
|
|
1474
1643
|
#
|
|
1475
1644
|
# @example Request syntax with placeholder values
|
|
1476
1645
|
#
|
|
@@ -1481,6 +1650,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1481
1650
|
# @example Response structure
|
|
1482
1651
|
#
|
|
1483
1652
|
# resp.status #=> String, one of "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "READY", "DELETING"
|
|
1653
|
+
# resp.agent_runtime_id #=> String
|
|
1484
1654
|
#
|
|
1485
1655
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteAgentRuntime AWS API Documentation
|
|
1486
1656
|
#
|
|
@@ -1510,6 +1680,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
1510
1680
|
# @return [Types::DeleteAgentRuntimeEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1511
1681
|
#
|
|
1512
1682
|
# * {Types::DeleteAgentRuntimeEndpointResponse#status #status} => String
|
|
1683
|
+
# * {Types::DeleteAgentRuntimeEndpointResponse#agent_runtime_id #agent_runtime_id} => String
|
|
1684
|
+
# * {Types::DeleteAgentRuntimeEndpointResponse#endpoint_name #endpoint_name} => String
|
|
1513
1685
|
#
|
|
1514
1686
|
# @example Request syntax with placeholder values
|
|
1515
1687
|
#
|
|
@@ -1522,6 +1694,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
1522
1694
|
# @example Response structure
|
|
1523
1695
|
#
|
|
1524
1696
|
# resp.status #=> String, one of "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "READY", "DELETING"
|
|
1697
|
+
# resp.agent_runtime_id #=> String
|
|
1698
|
+
# resp.endpoint_name #=> String
|
|
1525
1699
|
#
|
|
1526
1700
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteAgentRuntimeEndpoint AWS API Documentation
|
|
1527
1701
|
#
|
|
@@ -1693,7 +1867,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1693
1867
|
#
|
|
1694
1868
|
# resp.gateway_arn #=> String
|
|
1695
1869
|
# resp.target_id #=> String
|
|
1696
|
-
# resp.status #=> String, one of "CREATING", "UPDATING", "UPDATE_UNSUCCESSFUL", "DELETING", "READY", "FAILED"
|
|
1870
|
+
# resp.status #=> String, one of "CREATING", "UPDATING", "UPDATE_UNSUCCESSFUL", "DELETING", "READY", "FAILED", "SYNCHRONIZING", "SYNCHRONIZE_UNSUCCESSFUL"
|
|
1697
1871
|
# resp.status_reasons #=> Array
|
|
1698
1872
|
# resp.status_reasons[0] #=> String
|
|
1699
1873
|
#
|
|
@@ -2145,6 +2319,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2145
2319
|
# * {Types::GetGatewayTargetResponse#description #description} => String
|
|
2146
2320
|
# * {Types::GetGatewayTargetResponse#target_configuration #target_configuration} => Types::TargetConfiguration
|
|
2147
2321
|
# * {Types::GetGatewayTargetResponse#credential_provider_configurations #credential_provider_configurations} => Array<Types::CredentialProviderConfiguration>
|
|
2322
|
+
# * {Types::GetGatewayTargetResponse#last_synchronized_at #last_synchronized_at} => Time
|
|
2148
2323
|
#
|
|
2149
2324
|
# @example Request syntax with placeholder values
|
|
2150
2325
|
#
|
|
@@ -2159,7 +2334,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2159
2334
|
# resp.target_id #=> String
|
|
2160
2335
|
# resp.created_at #=> Time
|
|
2161
2336
|
# resp.updated_at #=> Time
|
|
2162
|
-
# resp.status #=> String, one of "CREATING", "UPDATING", "UPDATE_UNSUCCESSFUL", "DELETING", "READY", "FAILED"
|
|
2337
|
+
# resp.status #=> String, one of "CREATING", "UPDATING", "UPDATE_UNSUCCESSFUL", "DELETING", "READY", "FAILED", "SYNCHRONIZING", "SYNCHRONIZE_UNSUCCESSFUL"
|
|
2163
2338
|
# resp.status_reasons #=> Array
|
|
2164
2339
|
# resp.status_reasons[0] #=> String
|
|
2165
2340
|
# resp.name #=> String
|
|
@@ -2190,6 +2365,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2190
2365
|
# resp.target_configuration.mcp.lambda.tool_schema.inline_payload[0].output_schema.required[0] #=> String
|
|
2191
2366
|
# resp.target_configuration.mcp.lambda.tool_schema.inline_payload[0].output_schema.items #=> Types::SchemaDefinition
|
|
2192
2367
|
# resp.target_configuration.mcp.lambda.tool_schema.inline_payload[0].output_schema.description #=> String
|
|
2368
|
+
# resp.target_configuration.mcp.mcp_server.endpoint #=> String
|
|
2193
2369
|
# resp.credential_provider_configurations #=> Array
|
|
2194
2370
|
# resp.credential_provider_configurations[0].credential_provider_type #=> String, one of "GATEWAY_IAM_ROLE", "OAUTH", "API_KEY"
|
|
2195
2371
|
# resp.credential_provider_configurations[0].credential_provider.oauth_credential_provider.provider_arn #=> String
|
|
@@ -2201,6 +2377,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2201
2377
|
# resp.credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_parameter_name #=> String
|
|
2202
2378
|
# resp.credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_prefix #=> String
|
|
2203
2379
|
# resp.credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_location #=> String, one of "HEADER", "QUERY_PARAMETER"
|
|
2380
|
+
# resp.last_synchronized_at #=> Time
|
|
2204
2381
|
#
|
|
2205
2382
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetGatewayTarget AWS API Documentation
|
|
2206
2383
|
#
|
|
@@ -2243,7 +2420,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2243
2420
|
# resp.memory.strategies[0].strategy_id #=> String
|
|
2244
2421
|
# resp.memory.strategies[0].name #=> String
|
|
2245
2422
|
# resp.memory.strategies[0].description #=> String
|
|
2246
|
-
# resp.memory.strategies[0].configuration.type #=> String, one of "SEMANTIC_OVERRIDE", "SUMMARY_OVERRIDE", "USER_PREFERENCE_OVERRIDE"
|
|
2423
|
+
# resp.memory.strategies[0].configuration.type #=> String, one of "SEMANTIC_OVERRIDE", "SUMMARY_OVERRIDE", "USER_PREFERENCE_OVERRIDE", "SELF_MANAGED"
|
|
2247
2424
|
# resp.memory.strategies[0].configuration.extraction.custom_extraction_configuration.semantic_extraction_override.append_to_prompt #=> String
|
|
2248
2425
|
# resp.memory.strategies[0].configuration.extraction.custom_extraction_configuration.semantic_extraction_override.model_id #=> String
|
|
2249
2426
|
# resp.memory.strategies[0].configuration.extraction.custom_extraction_configuration.user_preference_extraction_override.append_to_prompt #=> String
|
|
@@ -2254,6 +2431,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
2254
2431
|
# resp.memory.strategies[0].configuration.consolidation.custom_consolidation_configuration.summary_consolidation_override.model_id #=> String
|
|
2255
2432
|
# resp.memory.strategies[0].configuration.consolidation.custom_consolidation_configuration.user_preference_consolidation_override.append_to_prompt #=> String
|
|
2256
2433
|
# resp.memory.strategies[0].configuration.consolidation.custom_consolidation_configuration.user_preference_consolidation_override.model_id #=> String
|
|
2434
|
+
# resp.memory.strategies[0].configuration.self_managed_configuration.trigger_conditions #=> Array
|
|
2435
|
+
# resp.memory.strategies[0].configuration.self_managed_configuration.trigger_conditions[0].message_based_trigger.message_count #=> Integer
|
|
2436
|
+
# resp.memory.strategies[0].configuration.self_managed_configuration.trigger_conditions[0].token_based_trigger.token_count #=> Integer
|
|
2437
|
+
# resp.memory.strategies[0].configuration.self_managed_configuration.trigger_conditions[0].time_based_trigger.idle_session_timeout #=> Integer
|
|
2438
|
+
# resp.memory.strategies[0].configuration.self_managed_configuration.invocation_configuration.topic_arn #=> String
|
|
2439
|
+
# resp.memory.strategies[0].configuration.self_managed_configuration.invocation_configuration.payload_delivery_bucket_name #=> String
|
|
2440
|
+
# resp.memory.strategies[0].configuration.self_managed_configuration.historical_context_window_size #=> Integer
|
|
2257
2441
|
# resp.memory.strategies[0].type #=> String, one of "SEMANTIC", "SUMMARIZATION", "USER_PREFERENCE", "CUSTOM"
|
|
2258
2442
|
# resp.memory.strategies[0].namespaces #=> Array
|
|
2259
2443
|
# resp.memory.strategies[0].namespaces[0] #=> String
|
|
@@ -2286,6 +2470,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2286
2470
|
# * {Types::GetOauth2CredentialProviderResponse#name #name} => String
|
|
2287
2471
|
# * {Types::GetOauth2CredentialProviderResponse#credential_provider_arn #credential_provider_arn} => String
|
|
2288
2472
|
# * {Types::GetOauth2CredentialProviderResponse#credential_provider_vendor #credential_provider_vendor} => String
|
|
2473
|
+
# * {Types::GetOauth2CredentialProviderResponse#callback_url #callback_url} => String
|
|
2289
2474
|
# * {Types::GetOauth2CredentialProviderResponse#oauth2_provider_config_output #oauth2_provider_config_output} => Types::Oauth2ProviderConfigOutput
|
|
2290
2475
|
# * {Types::GetOauth2CredentialProviderResponse#created_time #created_time} => Time
|
|
2291
2476
|
# * {Types::GetOauth2CredentialProviderResponse#last_updated_time #last_updated_time} => Time
|
|
@@ -2301,43 +2486,89 @@ module Aws::BedrockAgentCoreControl
|
|
|
2301
2486
|
# resp.client_secret_arn.secret_arn #=> String
|
|
2302
2487
|
# resp.name #=> String
|
|
2303
2488
|
# resp.credential_provider_arn #=> String
|
|
2304
|
-
# resp.credential_provider_vendor #=> String, one of "GoogleOauth2", "GithubOauth2", "SlackOauth2", "SalesforceOauth2", "MicrosoftOauth2", "CustomOauth2"
|
|
2489
|
+
# 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"
|
|
2490
|
+
# resp.callback_url #=> String
|
|
2305
2491
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
|
|
2306
2492
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
|
|
2307
2493
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
|
|
2308
2494
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint #=> String
|
|
2309
2495
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types #=> Array
|
|
2310
2496
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types[0] #=> String
|
|
2497
|
+
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods #=> Array
|
|
2498
|
+
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods[0] #=> String
|
|
2499
|
+
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.client_id #=> String
|
|
2311
2500
|
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
|
|
2312
2501
|
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
|
|
2313
2502
|
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
|
|
2314
2503
|
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint #=> String
|
|
2315
2504
|
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types #=> Array
|
|
2316
2505
|
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types[0] #=> String
|
|
2506
|
+
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods #=> Array
|
|
2507
|
+
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods[0] #=> String
|
|
2508
|
+
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.client_id #=> String
|
|
2317
2509
|
# resp.oauth2_provider_config_output.github_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
|
|
2318
2510
|
# resp.oauth2_provider_config_output.github_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
|
|
2319
2511
|
# resp.oauth2_provider_config_output.github_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
|
|
2320
2512
|
# resp.oauth2_provider_config_output.github_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint #=> String
|
|
2321
2513
|
# resp.oauth2_provider_config_output.github_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types #=> Array
|
|
2322
2514
|
# resp.oauth2_provider_config_output.github_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types[0] #=> String
|
|
2515
|
+
# resp.oauth2_provider_config_output.github_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods #=> Array
|
|
2516
|
+
# resp.oauth2_provider_config_output.github_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods[0] #=> String
|
|
2517
|
+
# resp.oauth2_provider_config_output.github_oauth_2_provider_config.client_id #=> String
|
|
2323
2518
|
# resp.oauth2_provider_config_output.slack_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
|
|
2324
2519
|
# resp.oauth2_provider_config_output.slack_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
|
|
2325
2520
|
# resp.oauth2_provider_config_output.slack_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
|
|
2326
2521
|
# resp.oauth2_provider_config_output.slack_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint #=> String
|
|
2327
2522
|
# resp.oauth2_provider_config_output.slack_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types #=> Array
|
|
2328
2523
|
# resp.oauth2_provider_config_output.slack_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types[0] #=> String
|
|
2524
|
+
# resp.oauth2_provider_config_output.slack_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods #=> Array
|
|
2525
|
+
# resp.oauth2_provider_config_output.slack_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods[0] #=> String
|
|
2526
|
+
# resp.oauth2_provider_config_output.slack_oauth_2_provider_config.client_id #=> String
|
|
2329
2527
|
# resp.oauth2_provider_config_output.salesforce_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
|
|
2330
2528
|
# resp.oauth2_provider_config_output.salesforce_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
|
|
2331
2529
|
# resp.oauth2_provider_config_output.salesforce_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
|
|
2332
2530
|
# resp.oauth2_provider_config_output.salesforce_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint #=> String
|
|
2333
2531
|
# resp.oauth2_provider_config_output.salesforce_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types #=> Array
|
|
2334
2532
|
# resp.oauth2_provider_config_output.salesforce_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types[0] #=> String
|
|
2533
|
+
# resp.oauth2_provider_config_output.salesforce_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods #=> Array
|
|
2534
|
+
# resp.oauth2_provider_config_output.salesforce_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods[0] #=> String
|
|
2535
|
+
# resp.oauth2_provider_config_output.salesforce_oauth_2_provider_config.client_id #=> String
|
|
2335
2536
|
# resp.oauth2_provider_config_output.microsoft_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
|
|
2336
2537
|
# resp.oauth2_provider_config_output.microsoft_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
|
|
2337
2538
|
# resp.oauth2_provider_config_output.microsoft_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
|
|
2338
2539
|
# resp.oauth2_provider_config_output.microsoft_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint #=> String
|
|
2339
2540
|
# resp.oauth2_provider_config_output.microsoft_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types #=> Array
|
|
2340
2541
|
# resp.oauth2_provider_config_output.microsoft_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types[0] #=> String
|
|
2542
|
+
# resp.oauth2_provider_config_output.microsoft_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods #=> Array
|
|
2543
|
+
# resp.oauth2_provider_config_output.microsoft_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods[0] #=> String
|
|
2544
|
+
# resp.oauth2_provider_config_output.microsoft_oauth_2_provider_config.client_id #=> String
|
|
2545
|
+
# resp.oauth2_provider_config_output.atlassian_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
|
|
2546
|
+
# resp.oauth2_provider_config_output.atlassian_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
|
|
2547
|
+
# resp.oauth2_provider_config_output.atlassian_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
|
|
2548
|
+
# resp.oauth2_provider_config_output.atlassian_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint #=> String
|
|
2549
|
+
# resp.oauth2_provider_config_output.atlassian_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types #=> Array
|
|
2550
|
+
# resp.oauth2_provider_config_output.atlassian_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types[0] #=> String
|
|
2551
|
+
# resp.oauth2_provider_config_output.atlassian_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods #=> Array
|
|
2552
|
+
# resp.oauth2_provider_config_output.atlassian_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods[0] #=> String
|
|
2553
|
+
# resp.oauth2_provider_config_output.atlassian_oauth_2_provider_config.client_id #=> String
|
|
2554
|
+
# resp.oauth2_provider_config_output.linkedin_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
|
|
2555
|
+
# resp.oauth2_provider_config_output.linkedin_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
|
|
2556
|
+
# resp.oauth2_provider_config_output.linkedin_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
|
|
2557
|
+
# resp.oauth2_provider_config_output.linkedin_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint #=> String
|
|
2558
|
+
# resp.oauth2_provider_config_output.linkedin_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types #=> Array
|
|
2559
|
+
# resp.oauth2_provider_config_output.linkedin_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types[0] #=> String
|
|
2560
|
+
# resp.oauth2_provider_config_output.linkedin_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods #=> Array
|
|
2561
|
+
# resp.oauth2_provider_config_output.linkedin_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods[0] #=> String
|
|
2562
|
+
# resp.oauth2_provider_config_output.linkedin_oauth_2_provider_config.client_id #=> String
|
|
2563
|
+
# resp.oauth2_provider_config_output.included_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
|
|
2564
|
+
# resp.oauth2_provider_config_output.included_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
|
|
2565
|
+
# resp.oauth2_provider_config_output.included_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
|
|
2566
|
+
# resp.oauth2_provider_config_output.included_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint #=> String
|
|
2567
|
+
# resp.oauth2_provider_config_output.included_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types #=> Array
|
|
2568
|
+
# resp.oauth2_provider_config_output.included_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types[0] #=> String
|
|
2569
|
+
# resp.oauth2_provider_config_output.included_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods #=> Array
|
|
2570
|
+
# resp.oauth2_provider_config_output.included_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods[0] #=> String
|
|
2571
|
+
# resp.oauth2_provider_config_output.included_oauth_2_provider_config.client_id #=> String
|
|
2341
2572
|
# resp.created_time #=> Time
|
|
2342
2573
|
# resp.last_updated_time #=> Time
|
|
2343
2574
|
#
|
|
@@ -2735,7 +2966,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2735
2966
|
# resp.items #=> Array
|
|
2736
2967
|
# resp.items[0].target_id #=> String
|
|
2737
2968
|
# resp.items[0].name #=> String
|
|
2738
|
-
# resp.items[0].status #=> String, one of "CREATING", "UPDATING", "UPDATE_UNSUCCESSFUL", "DELETING", "READY", "FAILED"
|
|
2969
|
+
# resp.items[0].status #=> String, one of "CREATING", "UPDATING", "UPDATE_UNSUCCESSFUL", "DELETING", "READY", "FAILED", "SYNCHRONIZING", "SYNCHRONIZE_UNSUCCESSFUL"
|
|
2739
2970
|
# resp.items[0].description #=> String
|
|
2740
2971
|
# resp.items[0].created_at #=> Time
|
|
2741
2972
|
# resp.items[0].updated_at #=> Time
|
|
@@ -2871,7 +3102,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2871
3102
|
#
|
|
2872
3103
|
# resp.credential_providers #=> Array
|
|
2873
3104
|
# resp.credential_providers[0].name #=> String
|
|
2874
|
-
# resp.credential_providers[0].credential_provider_vendor #=> String, one of "GoogleOauth2", "GithubOauth2", "SlackOauth2", "SalesforceOauth2", "MicrosoftOauth2", "CustomOauth2"
|
|
3105
|
+
# resp.credential_providers[0].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"
|
|
2875
3106
|
# resp.credential_providers[0].credential_provider_arn #=> String
|
|
2876
3107
|
# resp.credential_providers[0].created_time #=> Time
|
|
2877
3108
|
# resp.credential_providers[0].last_updated_time #=> Time
|
|
@@ -3000,6 +3231,86 @@ module Aws::BedrockAgentCoreControl
|
|
|
3000
3231
|
req.send_request(options)
|
|
3001
3232
|
end
|
|
3002
3233
|
|
|
3234
|
+
# The gateway targets.
|
|
3235
|
+
#
|
|
3236
|
+
# @option params [required, String] :gateway_identifier
|
|
3237
|
+
# The gateway Identifier.
|
|
3238
|
+
#
|
|
3239
|
+
# @option params [required, Array<String>] :target_id_list
|
|
3240
|
+
# The target ID list.
|
|
3241
|
+
#
|
|
3242
|
+
# @return [Types::SynchronizeGatewayTargetsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3243
|
+
#
|
|
3244
|
+
# * {Types::SynchronizeGatewayTargetsResponse#targets #targets} => Array<Types::GatewayTarget>
|
|
3245
|
+
#
|
|
3246
|
+
# @example Request syntax with placeholder values
|
|
3247
|
+
#
|
|
3248
|
+
# resp = client.synchronize_gateway_targets({
|
|
3249
|
+
# gateway_identifier: "GatewayIdentifier", # required
|
|
3250
|
+
# target_id_list: ["TargetId"], # required
|
|
3251
|
+
# })
|
|
3252
|
+
#
|
|
3253
|
+
# @example Response structure
|
|
3254
|
+
#
|
|
3255
|
+
# resp.targets #=> Array
|
|
3256
|
+
# resp.targets[0].gateway_arn #=> String
|
|
3257
|
+
# resp.targets[0].target_id #=> String
|
|
3258
|
+
# resp.targets[0].created_at #=> Time
|
|
3259
|
+
# resp.targets[0].updated_at #=> Time
|
|
3260
|
+
# resp.targets[0].status #=> String, one of "CREATING", "UPDATING", "UPDATE_UNSUCCESSFUL", "DELETING", "READY", "FAILED", "SYNCHRONIZING", "SYNCHRONIZE_UNSUCCESSFUL"
|
|
3261
|
+
# resp.targets[0].status_reasons #=> Array
|
|
3262
|
+
# resp.targets[0].status_reasons[0] #=> String
|
|
3263
|
+
# resp.targets[0].name #=> String
|
|
3264
|
+
# resp.targets[0].description #=> String
|
|
3265
|
+
# resp.targets[0].target_configuration.mcp.open_api_schema.s3.uri #=> String
|
|
3266
|
+
# resp.targets[0].target_configuration.mcp.open_api_schema.s3.bucket_owner_account_id #=> String
|
|
3267
|
+
# resp.targets[0].target_configuration.mcp.open_api_schema.inline_payload #=> String
|
|
3268
|
+
# resp.targets[0].target_configuration.mcp.smithy_model.s3.uri #=> String
|
|
3269
|
+
# resp.targets[0].target_configuration.mcp.smithy_model.s3.bucket_owner_account_id #=> String
|
|
3270
|
+
# resp.targets[0].target_configuration.mcp.smithy_model.inline_payload #=> String
|
|
3271
|
+
# resp.targets[0].target_configuration.mcp.lambda.lambda_arn #=> String
|
|
3272
|
+
# resp.targets[0].target_configuration.mcp.lambda.tool_schema.s3.uri #=> String
|
|
3273
|
+
# resp.targets[0].target_configuration.mcp.lambda.tool_schema.s3.bucket_owner_account_id #=> String
|
|
3274
|
+
# resp.targets[0].target_configuration.mcp.lambda.tool_schema.inline_payload #=> Array
|
|
3275
|
+
# resp.targets[0].target_configuration.mcp.lambda.tool_schema.inline_payload[0].name #=> String
|
|
3276
|
+
# resp.targets[0].target_configuration.mcp.lambda.tool_schema.inline_payload[0].description #=> String
|
|
3277
|
+
# resp.targets[0].target_configuration.mcp.lambda.tool_schema.inline_payload[0].input_schema.type #=> String, one of "string", "number", "object", "array", "boolean", "integer"
|
|
3278
|
+
# resp.targets[0].target_configuration.mcp.lambda.tool_schema.inline_payload[0].input_schema.properties #=> Hash
|
|
3279
|
+
# resp.targets[0].target_configuration.mcp.lambda.tool_schema.inline_payload[0].input_schema.properties["String"] #=> Types::SchemaDefinition
|
|
3280
|
+
# resp.targets[0].target_configuration.mcp.lambda.tool_schema.inline_payload[0].input_schema.required #=> Array
|
|
3281
|
+
# resp.targets[0].target_configuration.mcp.lambda.tool_schema.inline_payload[0].input_schema.required[0] #=> String
|
|
3282
|
+
# resp.targets[0].target_configuration.mcp.lambda.tool_schema.inline_payload[0].input_schema.items #=> Types::SchemaDefinition
|
|
3283
|
+
# resp.targets[0].target_configuration.mcp.lambda.tool_schema.inline_payload[0].input_schema.description #=> String
|
|
3284
|
+
# resp.targets[0].target_configuration.mcp.lambda.tool_schema.inline_payload[0].output_schema.type #=> String, one of "string", "number", "object", "array", "boolean", "integer"
|
|
3285
|
+
# resp.targets[0].target_configuration.mcp.lambda.tool_schema.inline_payload[0].output_schema.properties #=> Hash
|
|
3286
|
+
# resp.targets[0].target_configuration.mcp.lambda.tool_schema.inline_payload[0].output_schema.properties["String"] #=> Types::SchemaDefinition
|
|
3287
|
+
# resp.targets[0].target_configuration.mcp.lambda.tool_schema.inline_payload[0].output_schema.required #=> Array
|
|
3288
|
+
# resp.targets[0].target_configuration.mcp.lambda.tool_schema.inline_payload[0].output_schema.required[0] #=> String
|
|
3289
|
+
# resp.targets[0].target_configuration.mcp.lambda.tool_schema.inline_payload[0].output_schema.items #=> Types::SchemaDefinition
|
|
3290
|
+
# resp.targets[0].target_configuration.mcp.lambda.tool_schema.inline_payload[0].output_schema.description #=> String
|
|
3291
|
+
# resp.targets[0].target_configuration.mcp.mcp_server.endpoint #=> String
|
|
3292
|
+
# resp.targets[0].credential_provider_configurations #=> Array
|
|
3293
|
+
# resp.targets[0].credential_provider_configurations[0].credential_provider_type #=> String, one of "GATEWAY_IAM_ROLE", "OAUTH", "API_KEY"
|
|
3294
|
+
# resp.targets[0].credential_provider_configurations[0].credential_provider.oauth_credential_provider.provider_arn #=> String
|
|
3295
|
+
# resp.targets[0].credential_provider_configurations[0].credential_provider.oauth_credential_provider.scopes #=> Array
|
|
3296
|
+
# resp.targets[0].credential_provider_configurations[0].credential_provider.oauth_credential_provider.scopes[0] #=> String
|
|
3297
|
+
# resp.targets[0].credential_provider_configurations[0].credential_provider.oauth_credential_provider.custom_parameters #=> Hash
|
|
3298
|
+
# resp.targets[0].credential_provider_configurations[0].credential_provider.oauth_credential_provider.custom_parameters["OAuthCustomParametersKey"] #=> String
|
|
3299
|
+
# resp.targets[0].credential_provider_configurations[0].credential_provider.api_key_credential_provider.provider_arn #=> String
|
|
3300
|
+
# resp.targets[0].credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_parameter_name #=> String
|
|
3301
|
+
# resp.targets[0].credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_prefix #=> String
|
|
3302
|
+
# resp.targets[0].credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_location #=> String, one of "HEADER", "QUERY_PARAMETER"
|
|
3303
|
+
# resp.targets[0].last_synchronized_at #=> Time
|
|
3304
|
+
#
|
|
3305
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SynchronizeGatewayTargets AWS API Documentation
|
|
3306
|
+
#
|
|
3307
|
+
# @overload synchronize_gateway_targets(params = {})
|
|
3308
|
+
# @param [Hash] params ({})
|
|
3309
|
+
def synchronize_gateway_targets(params = {}, options = {})
|
|
3310
|
+
req = build_request(:synchronize_gateway_targets, params)
|
|
3311
|
+
req.send_request(options)
|
|
3312
|
+
end
|
|
3313
|
+
|
|
3003
3314
|
# Associates the specified tags to a resource with the specified
|
|
3004
3315
|
# resourceArn. If existing tags on a resource are not specified in the
|
|
3005
3316
|
# request parameters, they are not changed. When a resource is deleted,
|
|
@@ -3425,7 +3736,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3425
3736
|
# The configuration for a gateway target. This structure defines how the
|
|
3426
3737
|
# gateway connects to and interacts with the target endpoint.
|
|
3427
3738
|
#
|
|
3428
|
-
# @option params [
|
|
3739
|
+
# @option params [Array<Types::CredentialProviderConfiguration>] :credential_provider_configurations
|
|
3429
3740
|
# The updated credential provider configurations for the gateway target.
|
|
3430
3741
|
#
|
|
3431
3742
|
# @return [Types::UpdateGatewayTargetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
@@ -3440,6 +3751,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3440
3751
|
# * {Types::UpdateGatewayTargetResponse#description #description} => String
|
|
3441
3752
|
# * {Types::UpdateGatewayTargetResponse#target_configuration #target_configuration} => Types::TargetConfiguration
|
|
3442
3753
|
# * {Types::UpdateGatewayTargetResponse#credential_provider_configurations #credential_provider_configurations} => Array<Types::CredentialProviderConfiguration>
|
|
3754
|
+
# * {Types::UpdateGatewayTargetResponse#last_synchronized_at #last_synchronized_at} => Time
|
|
3443
3755
|
#
|
|
3444
3756
|
# @example Request syntax with placeholder values
|
|
3445
3757
|
#
|
|
@@ -3505,9 +3817,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
3505
3817
|
# ],
|
|
3506
3818
|
# },
|
|
3507
3819
|
# },
|
|
3820
|
+
# mcp_server: {
|
|
3821
|
+
# endpoint: "McpServerTargetConfigurationEndpointString", # required
|
|
3822
|
+
# },
|
|
3508
3823
|
# },
|
|
3509
3824
|
# },
|
|
3510
|
-
# credential_provider_configurations: [
|
|
3825
|
+
# credential_provider_configurations: [
|
|
3511
3826
|
# {
|
|
3512
3827
|
# credential_provider_type: "GATEWAY_IAM_ROLE", # required, accepts GATEWAY_IAM_ROLE, OAUTH, API_KEY
|
|
3513
3828
|
# credential_provider: {
|
|
@@ -3535,7 +3850,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3535
3850
|
# resp.target_id #=> String
|
|
3536
3851
|
# resp.created_at #=> Time
|
|
3537
3852
|
# resp.updated_at #=> Time
|
|
3538
|
-
# resp.status #=> String, one of "CREATING", "UPDATING", "UPDATE_UNSUCCESSFUL", "DELETING", "READY", "FAILED"
|
|
3853
|
+
# resp.status #=> String, one of "CREATING", "UPDATING", "UPDATE_UNSUCCESSFUL", "DELETING", "READY", "FAILED", "SYNCHRONIZING", "SYNCHRONIZE_UNSUCCESSFUL"
|
|
3539
3854
|
# resp.status_reasons #=> Array
|
|
3540
3855
|
# resp.status_reasons[0] #=> String
|
|
3541
3856
|
# resp.name #=> String
|
|
@@ -3566,6 +3881,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3566
3881
|
# resp.target_configuration.mcp.lambda.tool_schema.inline_payload[0].output_schema.required[0] #=> String
|
|
3567
3882
|
# resp.target_configuration.mcp.lambda.tool_schema.inline_payload[0].output_schema.items #=> Types::SchemaDefinition
|
|
3568
3883
|
# resp.target_configuration.mcp.lambda.tool_schema.inline_payload[0].output_schema.description #=> String
|
|
3884
|
+
# resp.target_configuration.mcp.mcp_server.endpoint #=> String
|
|
3569
3885
|
# resp.credential_provider_configurations #=> Array
|
|
3570
3886
|
# resp.credential_provider_configurations[0].credential_provider_type #=> String, one of "GATEWAY_IAM_ROLE", "OAUTH", "API_KEY"
|
|
3571
3887
|
# resp.credential_provider_configurations[0].credential_provider.oauth_credential_provider.provider_arn #=> String
|
|
@@ -3577,6 +3893,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3577
3893
|
# resp.credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_parameter_name #=> String
|
|
3578
3894
|
# resp.credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_prefix #=> String
|
|
3579
3895
|
# resp.credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_location #=> String, one of "HEADER", "QUERY_PARAMETER"
|
|
3896
|
+
# resp.last_synchronized_at #=> Time
|
|
3580
3897
|
#
|
|
3581
3898
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateGatewayTarget AWS API Documentation
|
|
3582
3899
|
#
|
|
@@ -3675,6 +3992,26 @@ module Aws::BedrockAgentCoreControl
|
|
|
3675
3992
|
# model_id: "String", # required
|
|
3676
3993
|
# },
|
|
3677
3994
|
# },
|
|
3995
|
+
# self_managed_configuration: {
|
|
3996
|
+
# trigger_conditions: [
|
|
3997
|
+
# {
|
|
3998
|
+
# message_based_trigger: {
|
|
3999
|
+
# message_count: 1,
|
|
4000
|
+
# },
|
|
4001
|
+
# token_based_trigger: {
|
|
4002
|
+
# token_count: 1,
|
|
4003
|
+
# },
|
|
4004
|
+
# time_based_trigger: {
|
|
4005
|
+
# idle_session_timeout: 1,
|
|
4006
|
+
# },
|
|
4007
|
+
# },
|
|
4008
|
+
# ],
|
|
4009
|
+
# invocation_configuration: { # required
|
|
4010
|
+
# topic_arn: "Arn", # required
|
|
4011
|
+
# payload_delivery_bucket_name: "InvocationConfigurationInputPayloadDeliveryBucketNameString", # required
|
|
4012
|
+
# },
|
|
4013
|
+
# historical_context_window_size: 1,
|
|
4014
|
+
# },
|
|
3678
4015
|
# },
|
|
3679
4016
|
# },
|
|
3680
4017
|
# },
|
|
@@ -3713,6 +4050,26 @@ module Aws::BedrockAgentCoreControl
|
|
|
3713
4050
|
# },
|
|
3714
4051
|
# },
|
|
3715
4052
|
# },
|
|
4053
|
+
# self_managed_configuration: {
|
|
4054
|
+
# trigger_conditions: [
|
|
4055
|
+
# {
|
|
4056
|
+
# message_based_trigger: {
|
|
4057
|
+
# message_count: 1,
|
|
4058
|
+
# },
|
|
4059
|
+
# token_based_trigger: {
|
|
4060
|
+
# token_count: 1,
|
|
4061
|
+
# },
|
|
4062
|
+
# time_based_trigger: {
|
|
4063
|
+
# idle_session_timeout: 1,
|
|
4064
|
+
# },
|
|
4065
|
+
# },
|
|
4066
|
+
# ],
|
|
4067
|
+
# invocation_configuration: {
|
|
4068
|
+
# topic_arn: "Arn",
|
|
4069
|
+
# payload_delivery_bucket_name: "ModifyInvocationConfigurationInputPayloadDeliveryBucketNameString",
|
|
4070
|
+
# },
|
|
4071
|
+
# historical_context_window_size: 1,
|
|
4072
|
+
# },
|
|
3716
4073
|
# },
|
|
3717
4074
|
# },
|
|
3718
4075
|
# ],
|
|
@@ -3741,7 +4098,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3741
4098
|
# resp.memory.strategies[0].strategy_id #=> String
|
|
3742
4099
|
# resp.memory.strategies[0].name #=> String
|
|
3743
4100
|
# resp.memory.strategies[0].description #=> String
|
|
3744
|
-
# resp.memory.strategies[0].configuration.type #=> String, one of "SEMANTIC_OVERRIDE", "SUMMARY_OVERRIDE", "USER_PREFERENCE_OVERRIDE"
|
|
4101
|
+
# resp.memory.strategies[0].configuration.type #=> String, one of "SEMANTIC_OVERRIDE", "SUMMARY_OVERRIDE", "USER_PREFERENCE_OVERRIDE", "SELF_MANAGED"
|
|
3745
4102
|
# resp.memory.strategies[0].configuration.extraction.custom_extraction_configuration.semantic_extraction_override.append_to_prompt #=> String
|
|
3746
4103
|
# resp.memory.strategies[0].configuration.extraction.custom_extraction_configuration.semantic_extraction_override.model_id #=> String
|
|
3747
4104
|
# resp.memory.strategies[0].configuration.extraction.custom_extraction_configuration.user_preference_extraction_override.append_to_prompt #=> String
|
|
@@ -3752,6 +4109,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
3752
4109
|
# resp.memory.strategies[0].configuration.consolidation.custom_consolidation_configuration.summary_consolidation_override.model_id #=> String
|
|
3753
4110
|
# resp.memory.strategies[0].configuration.consolidation.custom_consolidation_configuration.user_preference_consolidation_override.append_to_prompt #=> String
|
|
3754
4111
|
# resp.memory.strategies[0].configuration.consolidation.custom_consolidation_configuration.user_preference_consolidation_override.model_id #=> String
|
|
4112
|
+
# resp.memory.strategies[0].configuration.self_managed_configuration.trigger_conditions #=> Array
|
|
4113
|
+
# resp.memory.strategies[0].configuration.self_managed_configuration.trigger_conditions[0].message_based_trigger.message_count #=> Integer
|
|
4114
|
+
# resp.memory.strategies[0].configuration.self_managed_configuration.trigger_conditions[0].token_based_trigger.token_count #=> Integer
|
|
4115
|
+
# resp.memory.strategies[0].configuration.self_managed_configuration.trigger_conditions[0].time_based_trigger.idle_session_timeout #=> Integer
|
|
4116
|
+
# resp.memory.strategies[0].configuration.self_managed_configuration.invocation_configuration.topic_arn #=> String
|
|
4117
|
+
# resp.memory.strategies[0].configuration.self_managed_configuration.invocation_configuration.payload_delivery_bucket_name #=> String
|
|
4118
|
+
# resp.memory.strategies[0].configuration.self_managed_configuration.historical_context_window_size #=> Integer
|
|
3755
4119
|
# resp.memory.strategies[0].type #=> String, one of "SEMANTIC", "SUMMARIZATION", "USER_PREFERENCE", "CUSTOM"
|
|
3756
4120
|
# resp.memory.strategies[0].namespaces #=> Array
|
|
3757
4121
|
# resp.memory.strategies[0].namespaces[0] #=> String
|
|
@@ -3785,6 +4149,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3785
4149
|
# * {Types::UpdateOauth2CredentialProviderResponse#name #name} => String
|
|
3786
4150
|
# * {Types::UpdateOauth2CredentialProviderResponse#credential_provider_vendor #credential_provider_vendor} => String
|
|
3787
4151
|
# * {Types::UpdateOauth2CredentialProviderResponse#credential_provider_arn #credential_provider_arn} => String
|
|
4152
|
+
# * {Types::UpdateOauth2CredentialProviderResponse#callback_url #callback_url} => String
|
|
3788
4153
|
# * {Types::UpdateOauth2CredentialProviderResponse#oauth2_provider_config_output #oauth2_provider_config_output} => Types::Oauth2ProviderConfigOutput
|
|
3789
4154
|
# * {Types::UpdateOauth2CredentialProviderResponse#created_time #created_time} => Time
|
|
3790
4155
|
# * {Types::UpdateOauth2CredentialProviderResponse#last_updated_time #last_updated_time} => Time
|
|
@@ -3793,7 +4158,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3793
4158
|
#
|
|
3794
4159
|
# resp = client.update_oauth_2_credential_provider({
|
|
3795
4160
|
# name: "CredentialProviderName", # required
|
|
3796
|
-
# credential_provider_vendor: "GoogleOauth2", # required, accepts GoogleOauth2, GithubOauth2, SlackOauth2, SalesforceOauth2, MicrosoftOauth2, CustomOauth2
|
|
4161
|
+
# credential_provider_vendor: "GoogleOauth2", # required, accepts 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
|
|
3797
4162
|
# oauth2_provider_config_input: { # required
|
|
3798
4163
|
# custom_oauth_2_provider_config: {
|
|
3799
4164
|
# oauth_discovery: { # required
|
|
@@ -3803,6 +4168,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3803
4168
|
# authorization_endpoint: "AuthorizationEndpointType", # required
|
|
3804
4169
|
# token_endpoint: "TokenEndpointType", # required
|
|
3805
4170
|
# response_types: ["ResponseType"],
|
|
4171
|
+
# token_endpoint_auth_methods: ["TokenAuthMethod"],
|
|
3806
4172
|
# },
|
|
3807
4173
|
# },
|
|
3808
4174
|
# client_id: "ClientIdType", # required
|
|
@@ -3827,6 +4193,22 @@ module Aws::BedrockAgentCoreControl
|
|
|
3827
4193
|
# microsoft_oauth_2_provider_config: {
|
|
3828
4194
|
# client_id: "ClientIdType", # required
|
|
3829
4195
|
# client_secret: "ClientSecretType", # required
|
|
4196
|
+
# tenant_id: "TenantIdType",
|
|
4197
|
+
# },
|
|
4198
|
+
# atlassian_oauth_2_provider_config: {
|
|
4199
|
+
# client_id: "ClientIdType", # required
|
|
4200
|
+
# client_secret: "ClientSecretType", # required
|
|
4201
|
+
# },
|
|
4202
|
+
# linkedin_oauth_2_provider_config: {
|
|
4203
|
+
# client_id: "ClientIdType", # required
|
|
4204
|
+
# client_secret: "ClientSecretType", # required
|
|
4205
|
+
# },
|
|
4206
|
+
# included_oauth_2_provider_config: {
|
|
4207
|
+
# client_id: "ClientIdType", # required
|
|
4208
|
+
# client_secret: "ClientSecretType", # required
|
|
4209
|
+
# issuer: "IssuerUrlType",
|
|
4210
|
+
# authorization_endpoint: "AuthorizationEndpointType",
|
|
4211
|
+
# token_endpoint: "TokenEndpointType",
|
|
3830
4212
|
# },
|
|
3831
4213
|
# },
|
|
3832
4214
|
# })
|
|
@@ -3835,44 +4217,90 @@ module Aws::BedrockAgentCoreControl
|
|
|
3835
4217
|
#
|
|
3836
4218
|
# resp.client_secret_arn.secret_arn #=> String
|
|
3837
4219
|
# resp.name #=> String
|
|
3838
|
-
# resp.credential_provider_vendor #=> String, one of "GoogleOauth2", "GithubOauth2", "SlackOauth2", "SalesforceOauth2", "MicrosoftOauth2", "CustomOauth2"
|
|
4220
|
+
# 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"
|
|
3839
4221
|
# resp.credential_provider_arn #=> String
|
|
4222
|
+
# resp.callback_url #=> String
|
|
3840
4223
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
|
|
3841
4224
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
|
|
3842
4225
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
|
|
3843
4226
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint #=> String
|
|
3844
4227
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types #=> Array
|
|
3845
4228
|
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types[0] #=> String
|
|
4229
|
+
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods #=> Array
|
|
4230
|
+
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods[0] #=> String
|
|
4231
|
+
# resp.oauth2_provider_config_output.custom_oauth_2_provider_config.client_id #=> String
|
|
3846
4232
|
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
|
|
3847
4233
|
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
|
|
3848
4234
|
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
|
|
3849
4235
|
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint #=> String
|
|
3850
4236
|
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types #=> Array
|
|
3851
4237
|
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types[0] #=> String
|
|
4238
|
+
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods #=> Array
|
|
4239
|
+
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods[0] #=> String
|
|
4240
|
+
# resp.oauth2_provider_config_output.google_oauth_2_provider_config.client_id #=> String
|
|
3852
4241
|
# resp.oauth2_provider_config_output.github_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
|
|
3853
4242
|
# resp.oauth2_provider_config_output.github_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
|
|
3854
4243
|
# resp.oauth2_provider_config_output.github_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
|
|
3855
4244
|
# resp.oauth2_provider_config_output.github_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint #=> String
|
|
3856
4245
|
# resp.oauth2_provider_config_output.github_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types #=> Array
|
|
3857
4246
|
# resp.oauth2_provider_config_output.github_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types[0] #=> String
|
|
4247
|
+
# resp.oauth2_provider_config_output.github_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods #=> Array
|
|
4248
|
+
# resp.oauth2_provider_config_output.github_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods[0] #=> String
|
|
4249
|
+
# resp.oauth2_provider_config_output.github_oauth_2_provider_config.client_id #=> String
|
|
3858
4250
|
# resp.oauth2_provider_config_output.slack_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
|
|
3859
4251
|
# resp.oauth2_provider_config_output.slack_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
|
|
3860
4252
|
# resp.oauth2_provider_config_output.slack_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
|
|
3861
4253
|
# resp.oauth2_provider_config_output.slack_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint #=> String
|
|
3862
4254
|
# resp.oauth2_provider_config_output.slack_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types #=> Array
|
|
3863
4255
|
# resp.oauth2_provider_config_output.slack_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types[0] #=> String
|
|
4256
|
+
# resp.oauth2_provider_config_output.slack_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods #=> Array
|
|
4257
|
+
# resp.oauth2_provider_config_output.slack_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods[0] #=> String
|
|
4258
|
+
# resp.oauth2_provider_config_output.slack_oauth_2_provider_config.client_id #=> String
|
|
3864
4259
|
# resp.oauth2_provider_config_output.salesforce_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
|
|
3865
4260
|
# resp.oauth2_provider_config_output.salesforce_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
|
|
3866
4261
|
# resp.oauth2_provider_config_output.salesforce_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
|
|
3867
4262
|
# resp.oauth2_provider_config_output.salesforce_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint #=> String
|
|
3868
4263
|
# resp.oauth2_provider_config_output.salesforce_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types #=> Array
|
|
3869
4264
|
# resp.oauth2_provider_config_output.salesforce_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types[0] #=> String
|
|
4265
|
+
# resp.oauth2_provider_config_output.salesforce_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods #=> Array
|
|
4266
|
+
# resp.oauth2_provider_config_output.salesforce_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods[0] #=> String
|
|
4267
|
+
# resp.oauth2_provider_config_output.salesforce_oauth_2_provider_config.client_id #=> String
|
|
3870
4268
|
# resp.oauth2_provider_config_output.microsoft_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
|
|
3871
4269
|
# resp.oauth2_provider_config_output.microsoft_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
|
|
3872
4270
|
# resp.oauth2_provider_config_output.microsoft_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
|
|
3873
4271
|
# resp.oauth2_provider_config_output.microsoft_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint #=> String
|
|
3874
4272
|
# resp.oauth2_provider_config_output.microsoft_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types #=> Array
|
|
3875
4273
|
# resp.oauth2_provider_config_output.microsoft_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types[0] #=> String
|
|
4274
|
+
# resp.oauth2_provider_config_output.microsoft_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods #=> Array
|
|
4275
|
+
# resp.oauth2_provider_config_output.microsoft_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods[0] #=> String
|
|
4276
|
+
# resp.oauth2_provider_config_output.microsoft_oauth_2_provider_config.client_id #=> String
|
|
4277
|
+
# resp.oauth2_provider_config_output.atlassian_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
|
|
4278
|
+
# resp.oauth2_provider_config_output.atlassian_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
|
|
4279
|
+
# resp.oauth2_provider_config_output.atlassian_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
|
|
4280
|
+
# resp.oauth2_provider_config_output.atlassian_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint #=> String
|
|
4281
|
+
# resp.oauth2_provider_config_output.atlassian_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types #=> Array
|
|
4282
|
+
# resp.oauth2_provider_config_output.atlassian_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types[0] #=> String
|
|
4283
|
+
# resp.oauth2_provider_config_output.atlassian_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods #=> Array
|
|
4284
|
+
# resp.oauth2_provider_config_output.atlassian_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods[0] #=> String
|
|
4285
|
+
# resp.oauth2_provider_config_output.atlassian_oauth_2_provider_config.client_id #=> String
|
|
4286
|
+
# resp.oauth2_provider_config_output.linkedin_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
|
|
4287
|
+
# resp.oauth2_provider_config_output.linkedin_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
|
|
4288
|
+
# resp.oauth2_provider_config_output.linkedin_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
|
|
4289
|
+
# resp.oauth2_provider_config_output.linkedin_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint #=> String
|
|
4290
|
+
# resp.oauth2_provider_config_output.linkedin_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types #=> Array
|
|
4291
|
+
# resp.oauth2_provider_config_output.linkedin_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types[0] #=> String
|
|
4292
|
+
# resp.oauth2_provider_config_output.linkedin_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods #=> Array
|
|
4293
|
+
# resp.oauth2_provider_config_output.linkedin_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods[0] #=> String
|
|
4294
|
+
# resp.oauth2_provider_config_output.linkedin_oauth_2_provider_config.client_id #=> String
|
|
4295
|
+
# resp.oauth2_provider_config_output.included_oauth_2_provider_config.oauth_discovery.discovery_url #=> String
|
|
4296
|
+
# resp.oauth2_provider_config_output.included_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.issuer #=> String
|
|
4297
|
+
# resp.oauth2_provider_config_output.included_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.authorization_endpoint #=> String
|
|
4298
|
+
# resp.oauth2_provider_config_output.included_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint #=> String
|
|
4299
|
+
# resp.oauth2_provider_config_output.included_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types #=> Array
|
|
4300
|
+
# resp.oauth2_provider_config_output.included_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.response_types[0] #=> String
|
|
4301
|
+
# resp.oauth2_provider_config_output.included_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods #=> Array
|
|
4302
|
+
# resp.oauth2_provider_config_output.included_oauth_2_provider_config.oauth_discovery.authorization_server_metadata.token_endpoint_auth_methods[0] #=> String
|
|
4303
|
+
# resp.oauth2_provider_config_output.included_oauth_2_provider_config.client_id #=> String
|
|
3876
4304
|
# resp.created_time #=> Time
|
|
3877
4305
|
# resp.last_updated_time #=> Time
|
|
3878
4306
|
#
|
|
@@ -3945,7 +4373,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3945
4373
|
tracer: tracer
|
|
3946
4374
|
)
|
|
3947
4375
|
context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
|
|
3948
|
-
context[:gem_version] = '1.
|
|
4376
|
+
context[:gem_version] = '1.10.0'
|
|
3949
4377
|
Seahorse::Client::Request.new(handlers, context)
|
|
3950
4378
|
end
|
|
3951
4379
|
|