aws-sdk-bedrockagentcorecontrol 1.9.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client.rb +252 -6
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +70 -0
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +324 -16
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +55 -9
- data/sig/types.rbs +84 -7
- 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
|
|
@@ -446,11 +449,13 @@ module Aws
|
|
446
449
|
def client_secret_arn: () -> Types::Secret
|
447
450
|
def name: () -> ::String
|
448
451
|
def credential_provider_arn: () -> ::String
|
452
|
+
def callback_url: () -> ::String
|
453
|
+
def oauth2_provider_config_output: () -> Types::Oauth2ProviderConfigOutput
|
449
454
|
end
|
450
455
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_oauth_2_credential_provider-instance_method
|
451
456
|
def create_oauth_2_credential_provider: (
|
452
457
|
name: ::String,
|
453
|
-
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"),
|
454
459
|
oauth2_provider_config_input: {
|
455
460
|
custom_oauth_2_provider_config: {
|
456
461
|
oauth_discovery: {
|
@@ -459,7 +464,8 @@ module Aws
|
|
459
464
|
issuer: ::String,
|
460
465
|
authorization_endpoint: ::String,
|
461
466
|
token_endpoint: ::String,
|
462
|
-
response_types: Array[::String]
|
467
|
+
response_types: Array[::String]?,
|
468
|
+
token_endpoint_auth_methods: Array[::String]?
|
463
469
|
}?
|
464
470
|
},
|
465
471
|
client_id: ::String,
|
@@ -482,10 +488,27 @@ module Aws
|
|
482
488
|
client_secret: ::String
|
483
489
|
}?,
|
484
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: {
|
485
496
|
client_id: ::String,
|
486
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?
|
487
509
|
}?
|
488
|
-
}
|
510
|
+
},
|
511
|
+
?tags: Hash[::String, ::String]
|
489
512
|
) -> _CreateOauth2CredentialProviderResponseSuccess
|
490
513
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateOauth2CredentialProviderResponseSuccess
|
491
514
|
|
@@ -498,13 +521,15 @@ module Aws
|
|
498
521
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_workload_identity-instance_method
|
499
522
|
def create_workload_identity: (
|
500
523
|
name: ::String,
|
501
|
-
?allowed_resource_oauth_2_return_urls: Array[::String]
|
524
|
+
?allowed_resource_oauth_2_return_urls: Array[::String],
|
525
|
+
?tags: Hash[::String, ::String]
|
502
526
|
) -> _CreateWorkloadIdentityResponseSuccess
|
503
527
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWorkloadIdentityResponseSuccess
|
504
528
|
|
505
529
|
interface _DeleteAgentRuntimeResponseSuccess
|
506
530
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAgentRuntimeResponse]
|
507
531
|
def status: () -> ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
532
|
+
def agent_runtime_id: () -> ::String
|
508
533
|
end
|
509
534
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_agent_runtime-instance_method
|
510
535
|
def delete_agent_runtime: (
|
@@ -515,6 +540,8 @@ module Aws
|
|
515
540
|
interface _DeleteAgentRuntimeEndpointResponseSuccess
|
516
541
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAgentRuntimeEndpointResponse]
|
517
542
|
def status: () -> ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
543
|
+
def agent_runtime_id: () -> ::String
|
544
|
+
def endpoint_name: () -> ::String
|
518
545
|
end
|
519
546
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_agent_runtime_endpoint-instance_method
|
520
547
|
def delete_agent_runtime_endpoint: (
|
@@ -778,7 +805,8 @@ module Aws
|
|
778
805
|
def client_secret_arn: () -> Types::Secret
|
779
806
|
def name: () -> ::String
|
780
807
|
def credential_provider_arn: () -> ::String
|
781
|
-
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
|
782
810
|
def oauth2_provider_config_output: () -> Types::Oauth2ProviderConfigOutput
|
783
811
|
def created_time: () -> ::Time
|
784
812
|
def last_updated_time: () -> ::Time
|
@@ -1385,8 +1413,9 @@ module Aws
|
|
1385
1413
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateOauth2CredentialProviderResponse]
|
1386
1414
|
def client_secret_arn: () -> Types::Secret
|
1387
1415
|
def name: () -> ::String
|
1388
|
-
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")
|
1389
1417
|
def credential_provider_arn: () -> ::String
|
1418
|
+
def callback_url: () -> ::String
|
1390
1419
|
def oauth2_provider_config_output: () -> Types::Oauth2ProviderConfigOutput
|
1391
1420
|
def created_time: () -> ::Time
|
1392
1421
|
def last_updated_time: () -> ::Time
|
@@ -1394,7 +1423,7 @@ module Aws
|
|
1394
1423
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_oauth_2_credential_provider-instance_method
|
1395
1424
|
def update_oauth_2_credential_provider: (
|
1396
1425
|
name: ::String,
|
1397
|
-
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"),
|
1398
1427
|
oauth2_provider_config_input: {
|
1399
1428
|
custom_oauth_2_provider_config: {
|
1400
1429
|
oauth_discovery: {
|
@@ -1403,7 +1432,8 @@ module Aws
|
|
1403
1432
|
issuer: ::String,
|
1404
1433
|
authorization_endpoint: ::String,
|
1405
1434
|
token_endpoint: ::String,
|
1406
|
-
response_types: Array[::String]
|
1435
|
+
response_types: Array[::String]?,
|
1436
|
+
token_endpoint_auth_methods: Array[::String]?
|
1407
1437
|
}?
|
1408
1438
|
},
|
1409
1439
|
client_id: ::String,
|
@@ -1426,8 +1456,24 @@ module Aws
|
|
1426
1456
|
client_secret: ::String
|
1427
1457
|
}?,
|
1428
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: {
|
1429
1464
|
client_id: ::String,
|
1430
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?
|
1431
1477
|
}?
|
1432
1478
|
}
|
1433
1479
|
) -> _UpdateOauth2CredentialProviderResponseSuccess
|
data/sig/types.rbs
CHANGED
@@ -79,6 +79,18 @@ module Aws::BedrockAgentCoreControl
|
|
79
79
|
end
|
80
80
|
end
|
81
81
|
|
82
|
+
class AtlassianOauth2ProviderConfigInput
|
83
|
+
attr_accessor client_id: ::String
|
84
|
+
attr_accessor client_secret: ::String
|
85
|
+
SENSITIVE: [:client_secret]
|
86
|
+
end
|
87
|
+
|
88
|
+
class AtlassianOauth2ProviderConfigOutput
|
89
|
+
attr_accessor oauth_discovery: Types::Oauth2Discovery
|
90
|
+
attr_accessor client_id: ::String
|
91
|
+
SENSITIVE: []
|
92
|
+
end
|
93
|
+
|
82
94
|
class AuthorizerConfiguration
|
83
95
|
attr_accessor custom_jwt_authorizer: Types::CustomJWTAuthorizerConfiguration
|
84
96
|
attr_accessor unknown: untyped
|
@@ -164,9 +176,11 @@ module Aws::BedrockAgentCoreControl
|
|
164
176
|
attr_accessor target_version: ::String
|
165
177
|
attr_accessor agent_runtime_endpoint_arn: ::String
|
166
178
|
attr_accessor agent_runtime_arn: ::String
|
179
|
+
attr_accessor agent_runtime_id: ::String
|
180
|
+
attr_accessor endpoint_name: ::String
|
167
181
|
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
168
182
|
attr_accessor created_at: ::Time
|
169
|
-
SENSITIVE: []
|
183
|
+
SENSITIVE: [:endpoint_name]
|
170
184
|
end
|
171
185
|
|
172
186
|
class CreateAgentRuntimeRequest
|
@@ -198,6 +212,7 @@ module Aws::BedrockAgentCoreControl
|
|
198
212
|
class CreateApiKeyCredentialProviderRequest
|
199
213
|
attr_accessor name: ::String
|
200
214
|
attr_accessor api_key: ::String
|
215
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
201
216
|
SENSITIVE: [:api_key]
|
202
217
|
end
|
203
218
|
|
@@ -325,8 +340,9 @@ module Aws::BedrockAgentCoreControl
|
|
325
340
|
|
326
341
|
class CreateOauth2CredentialProviderRequest
|
327
342
|
attr_accessor name: ::String
|
328
|
-
attr_accessor credential_provider_vendor: ("GoogleOauth2" | "GithubOauth2" | "SlackOauth2" | "SalesforceOauth2" | "MicrosoftOauth2" | "CustomOauth2")
|
343
|
+
attr_accessor credential_provider_vendor: ("GoogleOauth2" | "GithubOauth2" | "SlackOauth2" | "SalesforceOauth2" | "MicrosoftOauth2" | "CustomOauth2" | "AtlassianOauth2" | "LinkedinOauth2" | "XOauth2" | "OktaOauth2" | "OneLoginOauth2" | "PingOneOauth2" | "FacebookOauth2" | "YandexOauth2" | "RedditOauth2" | "ZoomOauth2" | "TwitchOauth2" | "SpotifyOauth2" | "DropboxOauth2" | "NotionOauth2" | "HubspotOauth2" | "CyberArkOauth2" | "FusionAuthOauth2" | "Auth0Oauth2" | "CognitoOauth2")
|
329
344
|
attr_accessor oauth2_provider_config_input: Types::Oauth2ProviderConfigInput
|
345
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
330
346
|
SENSITIVE: []
|
331
347
|
end
|
332
348
|
|
@@ -334,12 +350,15 @@ module Aws::BedrockAgentCoreControl
|
|
334
350
|
attr_accessor client_secret_arn: Types::Secret
|
335
351
|
attr_accessor name: ::String
|
336
352
|
attr_accessor credential_provider_arn: ::String
|
353
|
+
attr_accessor callback_url: ::String
|
354
|
+
attr_accessor oauth2_provider_config_output: Types::Oauth2ProviderConfigOutput
|
337
355
|
SENSITIVE: []
|
338
356
|
end
|
339
357
|
|
340
358
|
class CreateWorkloadIdentityRequest
|
341
359
|
attr_accessor name: ::String
|
342
360
|
attr_accessor allowed_resource_oauth_2_return_urls: ::Array[::String]
|
361
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
343
362
|
SENSITIVE: []
|
344
363
|
end
|
345
364
|
|
@@ -476,6 +495,7 @@ module Aws::BedrockAgentCoreControl
|
|
476
495
|
|
477
496
|
class CustomOauth2ProviderConfigOutput
|
478
497
|
attr_accessor oauth_discovery: Types::Oauth2Discovery
|
498
|
+
attr_accessor client_id: ::String
|
479
499
|
SENSITIVE: []
|
480
500
|
end
|
481
501
|
|
@@ -493,7 +513,9 @@ module Aws::BedrockAgentCoreControl
|
|
493
513
|
|
494
514
|
class DeleteAgentRuntimeEndpointResponse
|
495
515
|
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
496
|
-
|
516
|
+
attr_accessor agent_runtime_id: ::String
|
517
|
+
attr_accessor endpoint_name: ::String
|
518
|
+
SENSITIVE: [:endpoint_name]
|
497
519
|
end
|
498
520
|
|
499
521
|
class DeleteAgentRuntimeRequest
|
@@ -503,6 +525,7 @@ module Aws::BedrockAgentCoreControl
|
|
503
525
|
|
504
526
|
class DeleteAgentRuntimeResponse
|
505
527
|
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
528
|
+
attr_accessor agent_runtime_id: ::String
|
506
529
|
SENSITIVE: []
|
507
530
|
end
|
508
531
|
|
@@ -820,7 +843,8 @@ module Aws::BedrockAgentCoreControl
|
|
820
843
|
attr_accessor client_secret_arn: Types::Secret
|
821
844
|
attr_accessor name: ::String
|
822
845
|
attr_accessor credential_provider_arn: ::String
|
823
|
-
attr_accessor credential_provider_vendor: ("GoogleOauth2" | "GithubOauth2" | "SlackOauth2" | "SalesforceOauth2" | "MicrosoftOauth2" | "CustomOauth2")
|
846
|
+
attr_accessor credential_provider_vendor: ("GoogleOauth2" | "GithubOauth2" | "SlackOauth2" | "SalesforceOauth2" | "MicrosoftOauth2" | "CustomOauth2" | "AtlassianOauth2" | "LinkedinOauth2" | "XOauth2" | "OktaOauth2" | "OneLoginOauth2" | "PingOneOauth2" | "FacebookOauth2" | "YandexOauth2" | "RedditOauth2" | "ZoomOauth2" | "TwitchOauth2" | "SpotifyOauth2" | "DropboxOauth2" | "NotionOauth2" | "HubspotOauth2" | "CyberArkOauth2" | "FusionAuthOauth2" | "Auth0Oauth2" | "CognitoOauth2")
|
847
|
+
attr_accessor callback_url: ::String
|
824
848
|
attr_accessor oauth2_provider_config_output: Types::Oauth2ProviderConfigOutput
|
825
849
|
attr_accessor created_time: ::Time
|
826
850
|
attr_accessor last_updated_time: ::Time
|
@@ -861,6 +885,7 @@ module Aws::BedrockAgentCoreControl
|
|
861
885
|
|
862
886
|
class GithubOauth2ProviderConfigOutput
|
863
887
|
attr_accessor oauth_discovery: Types::Oauth2Discovery
|
888
|
+
attr_accessor client_id: ::String
|
864
889
|
SENSITIVE: []
|
865
890
|
end
|
866
891
|
|
@@ -872,6 +897,22 @@ module Aws::BedrockAgentCoreControl
|
|
872
897
|
|
873
898
|
class GoogleOauth2ProviderConfigOutput
|
874
899
|
attr_accessor oauth_discovery: Types::Oauth2Discovery
|
900
|
+
attr_accessor client_id: ::String
|
901
|
+
SENSITIVE: []
|
902
|
+
end
|
903
|
+
|
904
|
+
class IncludedOauth2ProviderConfigInput
|
905
|
+
attr_accessor client_id: ::String
|
906
|
+
attr_accessor client_secret: ::String
|
907
|
+
attr_accessor issuer: ::String
|
908
|
+
attr_accessor authorization_endpoint: ::String
|
909
|
+
attr_accessor token_endpoint: ::String
|
910
|
+
SENSITIVE: [:client_secret]
|
911
|
+
end
|
912
|
+
|
913
|
+
class IncludedOauth2ProviderConfigOutput
|
914
|
+
attr_accessor oauth_discovery: Types::Oauth2Discovery
|
915
|
+
attr_accessor client_id: ::String
|
875
916
|
SENSITIVE: []
|
876
917
|
end
|
877
918
|
|
@@ -904,6 +945,18 @@ module Aws::BedrockAgentCoreControl
|
|
904
945
|
SENSITIVE: []
|
905
946
|
end
|
906
947
|
|
948
|
+
class LinkedinOauth2ProviderConfigInput
|
949
|
+
attr_accessor client_id: ::String
|
950
|
+
attr_accessor client_secret: ::String
|
951
|
+
SENSITIVE: [:client_secret]
|
952
|
+
end
|
953
|
+
|
954
|
+
class LinkedinOauth2ProviderConfigOutput
|
955
|
+
attr_accessor oauth_discovery: Types::Oauth2Discovery
|
956
|
+
attr_accessor client_id: ::String
|
957
|
+
SENSITIVE: []
|
958
|
+
end
|
959
|
+
|
907
960
|
class ListAgentRuntimeEndpointsRequest
|
908
961
|
attr_accessor agent_runtime_id: ::String
|
909
962
|
attr_accessor max_results: ::Integer
|
@@ -1160,11 +1213,13 @@ module Aws::BedrockAgentCoreControl
|
|
1160
1213
|
class MicrosoftOauth2ProviderConfigInput
|
1161
1214
|
attr_accessor client_id: ::String
|
1162
1215
|
attr_accessor client_secret: ::String
|
1216
|
+
attr_accessor tenant_id: ::String
|
1163
1217
|
SENSITIVE: [:client_secret]
|
1164
1218
|
end
|
1165
1219
|
|
1166
1220
|
class MicrosoftOauth2ProviderConfigOutput
|
1167
1221
|
attr_accessor oauth_discovery: Types::Oauth2Discovery
|
1222
|
+
attr_accessor client_id: ::String
|
1168
1223
|
SENSITIVE: []
|
1169
1224
|
end
|
1170
1225
|
|
@@ -1243,12 +1298,13 @@ module Aws::BedrockAgentCoreControl
|
|
1243
1298
|
attr_accessor authorization_endpoint: ::String
|
1244
1299
|
attr_accessor token_endpoint: ::String
|
1245
1300
|
attr_accessor response_types: ::Array[::String]
|
1301
|
+
attr_accessor token_endpoint_auth_methods: ::Array[::String]
|
1246
1302
|
SENSITIVE: []
|
1247
1303
|
end
|
1248
1304
|
|
1249
1305
|
class Oauth2CredentialProviderItem
|
1250
1306
|
attr_accessor name: ::String
|
1251
|
-
attr_accessor credential_provider_vendor: ("GoogleOauth2" | "GithubOauth2" | "SlackOauth2" | "SalesforceOauth2" | "MicrosoftOauth2" | "CustomOauth2")
|
1307
|
+
attr_accessor credential_provider_vendor: ("GoogleOauth2" | "GithubOauth2" | "SlackOauth2" | "SalesforceOauth2" | "MicrosoftOauth2" | "CustomOauth2" | "AtlassianOauth2" | "LinkedinOauth2" | "XOauth2" | "OktaOauth2" | "OneLoginOauth2" | "PingOneOauth2" | "FacebookOauth2" | "YandexOauth2" | "RedditOauth2" | "ZoomOauth2" | "TwitchOauth2" | "SpotifyOauth2" | "DropboxOauth2" | "NotionOauth2" | "HubspotOauth2" | "CyberArkOauth2" | "FusionAuthOauth2" | "Auth0Oauth2" | "CognitoOauth2")
|
1252
1308
|
attr_accessor credential_provider_arn: ::String
|
1253
1309
|
attr_accessor created_time: ::Time
|
1254
1310
|
attr_accessor last_updated_time: ::Time
|
@@ -1276,6 +1332,9 @@ module Aws::BedrockAgentCoreControl
|
|
1276
1332
|
attr_accessor slack_oauth_2_provider_config: Types::SlackOauth2ProviderConfigInput
|
1277
1333
|
attr_accessor salesforce_oauth_2_provider_config: Types::SalesforceOauth2ProviderConfigInput
|
1278
1334
|
attr_accessor microsoft_oauth_2_provider_config: Types::MicrosoftOauth2ProviderConfigInput
|
1335
|
+
attr_accessor atlassian_oauth_2_provider_config: Types::AtlassianOauth2ProviderConfigInput
|
1336
|
+
attr_accessor linkedin_oauth_2_provider_config: Types::LinkedinOauth2ProviderConfigInput
|
1337
|
+
attr_accessor included_oauth_2_provider_config: Types::IncludedOauth2ProviderConfigInput
|
1279
1338
|
attr_accessor unknown: untyped
|
1280
1339
|
SENSITIVE: []
|
1281
1340
|
|
@@ -1291,6 +1350,12 @@ module Aws::BedrockAgentCoreControl
|
|
1291
1350
|
end
|
1292
1351
|
class MicrosoftOauth2ProviderConfig < Oauth2ProviderConfigInput
|
1293
1352
|
end
|
1353
|
+
class AtlassianOauth2ProviderConfig < Oauth2ProviderConfigInput
|
1354
|
+
end
|
1355
|
+
class LinkedinOauth2ProviderConfig < Oauth2ProviderConfigInput
|
1356
|
+
end
|
1357
|
+
class IncludedOauth2ProviderConfig < Oauth2ProviderConfigInput
|
1358
|
+
end
|
1294
1359
|
class Unknown < Oauth2ProviderConfigInput
|
1295
1360
|
end
|
1296
1361
|
end
|
@@ -1302,6 +1367,9 @@ module Aws::BedrockAgentCoreControl
|
|
1302
1367
|
attr_accessor slack_oauth_2_provider_config: Types::SlackOauth2ProviderConfigOutput
|
1303
1368
|
attr_accessor salesforce_oauth_2_provider_config: Types::SalesforceOauth2ProviderConfigOutput
|
1304
1369
|
attr_accessor microsoft_oauth_2_provider_config: Types::MicrosoftOauth2ProviderConfigOutput
|
1370
|
+
attr_accessor atlassian_oauth_2_provider_config: Types::AtlassianOauth2ProviderConfigOutput
|
1371
|
+
attr_accessor linkedin_oauth_2_provider_config: Types::LinkedinOauth2ProviderConfigOutput
|
1372
|
+
attr_accessor included_oauth_2_provider_config: Types::IncludedOauth2ProviderConfigOutput
|
1305
1373
|
attr_accessor unknown: untyped
|
1306
1374
|
SENSITIVE: []
|
1307
1375
|
|
@@ -1317,6 +1385,12 @@ module Aws::BedrockAgentCoreControl
|
|
1317
1385
|
end
|
1318
1386
|
class MicrosoftOauth2ProviderConfig < Oauth2ProviderConfigOutput
|
1319
1387
|
end
|
1388
|
+
class AtlassianOauth2ProviderConfig < Oauth2ProviderConfigOutput
|
1389
|
+
end
|
1390
|
+
class LinkedinOauth2ProviderConfig < Oauth2ProviderConfigOutput
|
1391
|
+
end
|
1392
|
+
class IncludedOauth2ProviderConfig < Oauth2ProviderConfigOutput
|
1393
|
+
end
|
1320
1394
|
class Unknown < Oauth2ProviderConfigOutput
|
1321
1395
|
end
|
1322
1396
|
end
|
@@ -1373,6 +1447,7 @@ module Aws::BedrockAgentCoreControl
|
|
1373
1447
|
|
1374
1448
|
class SalesforceOauth2ProviderConfigOutput
|
1375
1449
|
attr_accessor oauth_discovery: Types::Oauth2Discovery
|
1450
|
+
attr_accessor client_id: ::String
|
1376
1451
|
SENSITIVE: []
|
1377
1452
|
end
|
1378
1453
|
|
@@ -1472,6 +1547,7 @@ module Aws::BedrockAgentCoreControl
|
|
1472
1547
|
|
1473
1548
|
class SlackOauth2ProviderConfigOutput
|
1474
1549
|
attr_accessor oauth_discovery: Types::Oauth2Discovery
|
1550
|
+
attr_accessor client_id: ::String
|
1475
1551
|
SENSITIVE: []
|
1476
1552
|
end
|
1477
1553
|
|
@@ -1786,7 +1862,7 @@ module Aws::BedrockAgentCoreControl
|
|
1786
1862
|
|
1787
1863
|
class UpdateOauth2CredentialProviderRequest
|
1788
1864
|
attr_accessor name: ::String
|
1789
|
-
attr_accessor credential_provider_vendor: ("GoogleOauth2" | "GithubOauth2" | "SlackOauth2" | "SalesforceOauth2" | "MicrosoftOauth2" | "CustomOauth2")
|
1865
|
+
attr_accessor credential_provider_vendor: ("GoogleOauth2" | "GithubOauth2" | "SlackOauth2" | "SalesforceOauth2" | "MicrosoftOauth2" | "CustomOauth2" | "AtlassianOauth2" | "LinkedinOauth2" | "XOauth2" | "OktaOauth2" | "OneLoginOauth2" | "PingOneOauth2" | "FacebookOauth2" | "YandexOauth2" | "RedditOauth2" | "ZoomOauth2" | "TwitchOauth2" | "SpotifyOauth2" | "DropboxOauth2" | "NotionOauth2" | "HubspotOauth2" | "CyberArkOauth2" | "FusionAuthOauth2" | "Auth0Oauth2" | "CognitoOauth2")
|
1790
1866
|
attr_accessor oauth2_provider_config_input: Types::Oauth2ProviderConfigInput
|
1791
1867
|
SENSITIVE: []
|
1792
1868
|
end
|
@@ -1794,8 +1870,9 @@ module Aws::BedrockAgentCoreControl
|
|
1794
1870
|
class UpdateOauth2CredentialProviderResponse
|
1795
1871
|
attr_accessor client_secret_arn: Types::Secret
|
1796
1872
|
attr_accessor name: ::String
|
1797
|
-
attr_accessor credential_provider_vendor: ("GoogleOauth2" | "GithubOauth2" | "SlackOauth2" | "SalesforceOauth2" | "MicrosoftOauth2" | "CustomOauth2")
|
1873
|
+
attr_accessor credential_provider_vendor: ("GoogleOauth2" | "GithubOauth2" | "SlackOauth2" | "SalesforceOauth2" | "MicrosoftOauth2" | "CustomOauth2" | "AtlassianOauth2" | "LinkedinOauth2" | "XOauth2" | "OktaOauth2" | "OneLoginOauth2" | "PingOneOauth2" | "FacebookOauth2" | "YandexOauth2" | "RedditOauth2" | "ZoomOauth2" | "TwitchOauth2" | "SpotifyOauth2" | "DropboxOauth2" | "NotionOauth2" | "HubspotOauth2" | "CyberArkOauth2" | "FusionAuthOauth2" | "Auth0Oauth2" | "CognitoOauth2")
|
1798
1874
|
attr_accessor credential_provider_arn: ::String
|
1875
|
+
attr_accessor callback_url: ::String
|
1799
1876
|
attr_accessor oauth2_provider_config_output: Types::Oauth2ProviderConfigOutput
|
1800
1877
|
attr_accessor created_time: ::Time
|
1801
1878
|
attr_accessor last_updated_time: ::Time
|