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
data/sig/client.rbs
CHANGED
|
@@ -132,6 +132,8 @@ module Aws
|
|
|
132
132
|
def target_version: () -> ::String
|
|
133
133
|
def agent_runtime_endpoint_arn: () -> ::String
|
|
134
134
|
def agent_runtime_arn: () -> ::String
|
|
135
|
+
def agent_runtime_id: () -> ::String
|
|
136
|
+
def endpoint_name: () -> ::String
|
|
135
137
|
def status: () -> ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
|
136
138
|
def created_at: () -> ::Time
|
|
137
139
|
end
|
|
@@ -155,7 +157,8 @@ module Aws
|
|
|
155
157
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_api_key_credential_provider-instance_method
|
|
156
158
|
def create_api_key_credential_provider: (
|
|
157
159
|
name: ::String,
|
|
158
|
-
api_key: ::String
|
|
160
|
+
api_key: ::String,
|
|
161
|
+
?tags: Hash[::String, ::String]
|
|
159
162
|
) -> _CreateApiKeyCredentialProviderResponseSuccess
|
|
160
163
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApiKeyCredentialProviderResponseSuccess
|
|
161
164
|
|
|
@@ -268,12 +271,13 @@ module Aws
|
|
|
268
271
|
def target_id: () -> ::String
|
|
269
272
|
def created_at: () -> ::Time
|
|
270
273
|
def updated_at: () -> ::Time
|
|
271
|
-
def status: () -> ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED")
|
|
274
|
+
def status: () -> ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED" | "SYNCHRONIZING" | "SYNCHRONIZE_UNSUCCESSFUL")
|
|
272
275
|
def status_reasons: () -> ::Array[::String]
|
|
273
276
|
def name: () -> ::String
|
|
274
277
|
def description: () -> ::String
|
|
275
278
|
def target_configuration: () -> Types::TargetConfiguration
|
|
276
279
|
def credential_provider_configurations: () -> ::Array[Types::CredentialProviderConfiguration]
|
|
280
|
+
def last_synchronized_at: () -> ::Time
|
|
277
281
|
end
|
|
278
282
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_gateway_target-instance_method
|
|
279
283
|
def create_gateway_target: (
|
|
@@ -325,10 +329,13 @@ module Aws
|
|
|
325
329
|
},
|
|
326
330
|
]?
|
|
327
331
|
}
|
|
332
|
+
}?,
|
|
333
|
+
mcp_server: {
|
|
334
|
+
endpoint: ::String
|
|
328
335
|
}?
|
|
329
336
|
}?
|
|
330
337
|
},
|
|
331
|
-
credential_provider_configurations: Array[
|
|
338
|
+
?credential_provider_configurations: Array[
|
|
332
339
|
{
|
|
333
340
|
credential_provider_type: ("GATEWAY_IAM_ROLE" | "OAUTH" | "API_KEY"),
|
|
334
341
|
credential_provider: {
|
|
@@ -408,6 +415,26 @@ module Aws
|
|
|
408
415
|
append_to_prompt: ::String,
|
|
409
416
|
model_id: ::String
|
|
410
417
|
}?
|
|
418
|
+
}?,
|
|
419
|
+
self_managed_configuration: {
|
|
420
|
+
trigger_conditions: Array[
|
|
421
|
+
{
|
|
422
|
+
message_based_trigger: {
|
|
423
|
+
message_count: ::Integer?
|
|
424
|
+
}?,
|
|
425
|
+
token_based_trigger: {
|
|
426
|
+
token_count: ::Integer?
|
|
427
|
+
}?,
|
|
428
|
+
time_based_trigger: {
|
|
429
|
+
idle_session_timeout: ::Integer?
|
|
430
|
+
}?
|
|
431
|
+
},
|
|
432
|
+
]?,
|
|
433
|
+
invocation_configuration: {
|
|
434
|
+
topic_arn: ::String,
|
|
435
|
+
payload_delivery_bucket_name: ::String
|
|
436
|
+
},
|
|
437
|
+
historical_context_window_size: ::Integer?
|
|
411
438
|
}?
|
|
412
439
|
}?
|
|
413
440
|
}?
|
|
@@ -422,11 +449,13 @@ module Aws
|
|
|
422
449
|
def client_secret_arn: () -> Types::Secret
|
|
423
450
|
def name: () -> ::String
|
|
424
451
|
def credential_provider_arn: () -> ::String
|
|
452
|
+
def callback_url: () -> ::String
|
|
453
|
+
def oauth2_provider_config_output: () -> Types::Oauth2ProviderConfigOutput
|
|
425
454
|
end
|
|
426
455
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_oauth_2_credential_provider-instance_method
|
|
427
456
|
def create_oauth_2_credential_provider: (
|
|
428
457
|
name: ::String,
|
|
429
|
-
credential_provider_vendor: ("GoogleOauth2" | "GithubOauth2" | "SlackOauth2" | "SalesforceOauth2" | "MicrosoftOauth2" | "CustomOauth2"),
|
|
458
|
+
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"),
|
|
430
459
|
oauth2_provider_config_input: {
|
|
431
460
|
custom_oauth_2_provider_config: {
|
|
432
461
|
oauth_discovery: {
|
|
@@ -435,7 +464,8 @@ module Aws
|
|
|
435
464
|
issuer: ::String,
|
|
436
465
|
authorization_endpoint: ::String,
|
|
437
466
|
token_endpoint: ::String,
|
|
438
|
-
response_types: Array[::String]
|
|
467
|
+
response_types: Array[::String]?,
|
|
468
|
+
token_endpoint_auth_methods: Array[::String]?
|
|
439
469
|
}?
|
|
440
470
|
},
|
|
441
471
|
client_id: ::String,
|
|
@@ -458,10 +488,27 @@ module Aws
|
|
|
458
488
|
client_secret: ::String
|
|
459
489
|
}?,
|
|
460
490
|
microsoft_oauth_2_provider_config: {
|
|
491
|
+
client_id: ::String,
|
|
492
|
+
client_secret: ::String,
|
|
493
|
+
tenant_id: ::String?
|
|
494
|
+
}?,
|
|
495
|
+
atlassian_oauth_2_provider_config: {
|
|
461
496
|
client_id: ::String,
|
|
462
497
|
client_secret: ::String
|
|
498
|
+
}?,
|
|
499
|
+
linkedin_oauth_2_provider_config: {
|
|
500
|
+
client_id: ::String,
|
|
501
|
+
client_secret: ::String
|
|
502
|
+
}?,
|
|
503
|
+
included_oauth_2_provider_config: {
|
|
504
|
+
client_id: ::String,
|
|
505
|
+
client_secret: ::String,
|
|
506
|
+
issuer: ::String?,
|
|
507
|
+
authorization_endpoint: ::String?,
|
|
508
|
+
token_endpoint: ::String?
|
|
463
509
|
}?
|
|
464
|
-
}
|
|
510
|
+
},
|
|
511
|
+
?tags: Hash[::String, ::String]
|
|
465
512
|
) -> _CreateOauth2CredentialProviderResponseSuccess
|
|
466
513
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateOauth2CredentialProviderResponseSuccess
|
|
467
514
|
|
|
@@ -474,13 +521,15 @@ module Aws
|
|
|
474
521
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_workload_identity-instance_method
|
|
475
522
|
def create_workload_identity: (
|
|
476
523
|
name: ::String,
|
|
477
|
-
?allowed_resource_oauth_2_return_urls: Array[::String]
|
|
524
|
+
?allowed_resource_oauth_2_return_urls: Array[::String],
|
|
525
|
+
?tags: Hash[::String, ::String]
|
|
478
526
|
) -> _CreateWorkloadIdentityResponseSuccess
|
|
479
527
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWorkloadIdentityResponseSuccess
|
|
480
528
|
|
|
481
529
|
interface _DeleteAgentRuntimeResponseSuccess
|
|
482
530
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAgentRuntimeResponse]
|
|
483
531
|
def status: () -> ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
|
532
|
+
def agent_runtime_id: () -> ::String
|
|
484
533
|
end
|
|
485
534
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_agent_runtime-instance_method
|
|
486
535
|
def delete_agent_runtime: (
|
|
@@ -491,6 +540,8 @@ module Aws
|
|
|
491
540
|
interface _DeleteAgentRuntimeEndpointResponseSuccess
|
|
492
541
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAgentRuntimeEndpointResponse]
|
|
493
542
|
def status: () -> ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
|
543
|
+
def agent_runtime_id: () -> ::String
|
|
544
|
+
def endpoint_name: () -> ::String
|
|
494
545
|
end
|
|
495
546
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_agent_runtime_endpoint-instance_method
|
|
496
547
|
def delete_agent_runtime_endpoint: (
|
|
@@ -551,7 +602,7 @@ module Aws
|
|
|
551
602
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteGatewayTargetResponse]
|
|
552
603
|
def gateway_arn: () -> ::String
|
|
553
604
|
def target_id: () -> ::String
|
|
554
|
-
def status: () -> ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED")
|
|
605
|
+
def status: () -> ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED" | "SYNCHRONIZING" | "SYNCHRONIZE_UNSUCCESSFUL")
|
|
555
606
|
def status_reasons: () -> ::Array[::String]
|
|
556
607
|
end
|
|
557
608
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_gateway_target-instance_method
|
|
@@ -724,12 +775,13 @@ module Aws
|
|
|
724
775
|
def target_id: () -> ::String
|
|
725
776
|
def created_at: () -> ::Time
|
|
726
777
|
def updated_at: () -> ::Time
|
|
727
|
-
def status: () -> ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED")
|
|
778
|
+
def status: () -> ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED" | "SYNCHRONIZING" | "SYNCHRONIZE_UNSUCCESSFUL")
|
|
728
779
|
def status_reasons: () -> ::Array[::String]
|
|
729
780
|
def name: () -> ::String
|
|
730
781
|
def description: () -> ::String
|
|
731
782
|
def target_configuration: () -> Types::TargetConfiguration
|
|
732
783
|
def credential_provider_configurations: () -> ::Array[Types::CredentialProviderConfiguration]
|
|
784
|
+
def last_synchronized_at: () -> ::Time
|
|
733
785
|
end
|
|
734
786
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_gateway_target-instance_method
|
|
735
787
|
def get_gateway_target: (
|
|
@@ -753,7 +805,8 @@ module Aws
|
|
|
753
805
|
def client_secret_arn: () -> Types::Secret
|
|
754
806
|
def name: () -> ::String
|
|
755
807
|
def credential_provider_arn: () -> ::String
|
|
756
|
-
def credential_provider_vendor: () -> ("GoogleOauth2" | "GithubOauth2" | "SlackOauth2" | "SalesforceOauth2" | "MicrosoftOauth2" | "CustomOauth2")
|
|
808
|
+
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")
|
|
809
|
+
def callback_url: () -> ::String
|
|
757
810
|
def oauth2_provider_config_output: () -> Types::Oauth2ProviderConfigOutput
|
|
758
811
|
def created_time: () -> ::Time
|
|
759
812
|
def last_updated_time: () -> ::Time
|
|
@@ -953,6 +1006,17 @@ module Aws
|
|
|
953
1006
|
) -> _SetTokenVaultCMKResponseSuccess
|
|
954
1007
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SetTokenVaultCMKResponseSuccess
|
|
955
1008
|
|
|
1009
|
+
interface _SynchronizeGatewayTargetsResponseSuccess
|
|
1010
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SynchronizeGatewayTargetsResponse]
|
|
1011
|
+
def targets: () -> ::Array[Types::GatewayTarget]
|
|
1012
|
+
end
|
|
1013
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#synchronize_gateway_targets-instance_method
|
|
1014
|
+
def synchronize_gateway_targets: (
|
|
1015
|
+
gateway_identifier: ::String,
|
|
1016
|
+
target_id_list: Array[::String]
|
|
1017
|
+
) -> _SynchronizeGatewayTargetsResponseSuccess
|
|
1018
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SynchronizeGatewayTargetsResponseSuccess
|
|
1019
|
+
|
|
956
1020
|
interface _TagResourceResponseSuccess
|
|
957
1021
|
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
|
958
1022
|
end
|
|
@@ -1110,12 +1174,13 @@ module Aws
|
|
|
1110
1174
|
def target_id: () -> ::String
|
|
1111
1175
|
def created_at: () -> ::Time
|
|
1112
1176
|
def updated_at: () -> ::Time
|
|
1113
|
-
def status: () -> ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED")
|
|
1177
|
+
def status: () -> ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED" | "SYNCHRONIZING" | "SYNCHRONIZE_UNSUCCESSFUL")
|
|
1114
1178
|
def status_reasons: () -> ::Array[::String]
|
|
1115
1179
|
def name: () -> ::String
|
|
1116
1180
|
def description: () -> ::String
|
|
1117
1181
|
def target_configuration: () -> Types::TargetConfiguration
|
|
1118
1182
|
def credential_provider_configurations: () -> ::Array[Types::CredentialProviderConfiguration]
|
|
1183
|
+
def last_synchronized_at: () -> ::Time
|
|
1119
1184
|
end
|
|
1120
1185
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_gateway_target-instance_method
|
|
1121
1186
|
def update_gateway_target: (
|
|
@@ -1167,10 +1232,13 @@ module Aws
|
|
|
1167
1232
|
},
|
|
1168
1233
|
]?
|
|
1169
1234
|
}
|
|
1235
|
+
}?,
|
|
1236
|
+
mcp_server: {
|
|
1237
|
+
endpoint: ::String
|
|
1170
1238
|
}?
|
|
1171
1239
|
}?
|
|
1172
1240
|
},
|
|
1173
|
-
credential_provider_configurations: Array[
|
|
1241
|
+
?credential_provider_configurations: Array[
|
|
1174
1242
|
{
|
|
1175
1243
|
credential_provider_type: ("GATEWAY_IAM_ROLE" | "OAUTH" | "API_KEY"),
|
|
1176
1244
|
credential_provider: {
|
|
@@ -1250,6 +1318,26 @@ module Aws
|
|
|
1250
1318
|
append_to_prompt: ::String,
|
|
1251
1319
|
model_id: ::String
|
|
1252
1320
|
}?
|
|
1321
|
+
}?,
|
|
1322
|
+
self_managed_configuration: {
|
|
1323
|
+
trigger_conditions: Array[
|
|
1324
|
+
{
|
|
1325
|
+
message_based_trigger: {
|
|
1326
|
+
message_count: ::Integer?
|
|
1327
|
+
}?,
|
|
1328
|
+
token_based_trigger: {
|
|
1329
|
+
token_count: ::Integer?
|
|
1330
|
+
}?,
|
|
1331
|
+
time_based_trigger: {
|
|
1332
|
+
idle_session_timeout: ::Integer?
|
|
1333
|
+
}?
|
|
1334
|
+
},
|
|
1335
|
+
]?,
|
|
1336
|
+
invocation_configuration: {
|
|
1337
|
+
topic_arn: ::String,
|
|
1338
|
+
payload_delivery_bucket_name: ::String
|
|
1339
|
+
},
|
|
1340
|
+
historical_context_window_size: ::Integer?
|
|
1253
1341
|
}?
|
|
1254
1342
|
}?
|
|
1255
1343
|
}?
|
|
@@ -1288,6 +1376,26 @@ module Aws
|
|
|
1288
1376
|
model_id: ::String
|
|
1289
1377
|
}?
|
|
1290
1378
|
}?
|
|
1379
|
+
}?,
|
|
1380
|
+
self_managed_configuration: {
|
|
1381
|
+
trigger_conditions: Array[
|
|
1382
|
+
{
|
|
1383
|
+
message_based_trigger: {
|
|
1384
|
+
message_count: ::Integer?
|
|
1385
|
+
}?,
|
|
1386
|
+
token_based_trigger: {
|
|
1387
|
+
token_count: ::Integer?
|
|
1388
|
+
}?,
|
|
1389
|
+
time_based_trigger: {
|
|
1390
|
+
idle_session_timeout: ::Integer?
|
|
1391
|
+
}?
|
|
1392
|
+
},
|
|
1393
|
+
]?,
|
|
1394
|
+
invocation_configuration: {
|
|
1395
|
+
topic_arn: ::String?,
|
|
1396
|
+
payload_delivery_bucket_name: ::String?
|
|
1397
|
+
}?,
|
|
1398
|
+
historical_context_window_size: ::Integer?
|
|
1291
1399
|
}?
|
|
1292
1400
|
}?
|
|
1293
1401
|
},
|
|
@@ -1305,8 +1413,9 @@ module Aws
|
|
|
1305
1413
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateOauth2CredentialProviderResponse]
|
|
1306
1414
|
def client_secret_arn: () -> Types::Secret
|
|
1307
1415
|
def name: () -> ::String
|
|
1308
|
-
def credential_provider_vendor: () -> ("GoogleOauth2" | "GithubOauth2" | "SlackOauth2" | "SalesforceOauth2" | "MicrosoftOauth2" | "CustomOauth2")
|
|
1416
|
+
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")
|
|
1309
1417
|
def credential_provider_arn: () -> ::String
|
|
1418
|
+
def callback_url: () -> ::String
|
|
1310
1419
|
def oauth2_provider_config_output: () -> Types::Oauth2ProviderConfigOutput
|
|
1311
1420
|
def created_time: () -> ::Time
|
|
1312
1421
|
def last_updated_time: () -> ::Time
|
|
@@ -1314,7 +1423,7 @@ module Aws
|
|
|
1314
1423
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_oauth_2_credential_provider-instance_method
|
|
1315
1424
|
def update_oauth_2_credential_provider: (
|
|
1316
1425
|
name: ::String,
|
|
1317
|
-
credential_provider_vendor: ("GoogleOauth2" | "GithubOauth2" | "SlackOauth2" | "SalesforceOauth2" | "MicrosoftOauth2" | "CustomOauth2"),
|
|
1426
|
+
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"),
|
|
1318
1427
|
oauth2_provider_config_input: {
|
|
1319
1428
|
custom_oauth_2_provider_config: {
|
|
1320
1429
|
oauth_discovery: {
|
|
@@ -1323,7 +1432,8 @@ module Aws
|
|
|
1323
1432
|
issuer: ::String,
|
|
1324
1433
|
authorization_endpoint: ::String,
|
|
1325
1434
|
token_endpoint: ::String,
|
|
1326
|
-
response_types: Array[::String]
|
|
1435
|
+
response_types: Array[::String]?,
|
|
1436
|
+
token_endpoint_auth_methods: Array[::String]?
|
|
1327
1437
|
}?
|
|
1328
1438
|
},
|
|
1329
1439
|
client_id: ::String,
|
|
@@ -1346,8 +1456,24 @@ module Aws
|
|
|
1346
1456
|
client_secret: ::String
|
|
1347
1457
|
}?,
|
|
1348
1458
|
microsoft_oauth_2_provider_config: {
|
|
1459
|
+
client_id: ::String,
|
|
1460
|
+
client_secret: ::String,
|
|
1461
|
+
tenant_id: ::String?
|
|
1462
|
+
}?,
|
|
1463
|
+
atlassian_oauth_2_provider_config: {
|
|
1349
1464
|
client_id: ::String,
|
|
1350
1465
|
client_secret: ::String
|
|
1466
|
+
}?,
|
|
1467
|
+
linkedin_oauth_2_provider_config: {
|
|
1468
|
+
client_id: ::String,
|
|
1469
|
+
client_secret: ::String
|
|
1470
|
+
}?,
|
|
1471
|
+
included_oauth_2_provider_config: {
|
|
1472
|
+
client_id: ::String,
|
|
1473
|
+
client_secret: ::String,
|
|
1474
|
+
issuer: ::String?,
|
|
1475
|
+
authorization_endpoint: ::String?,
|
|
1476
|
+
token_endpoint: ::String?
|
|
1351
1477
|
}?
|
|
1352
1478
|
}
|
|
1353
1479
|
) -> _UpdateOauth2CredentialProviderResponseSuccess
|