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
@@ -249,6 +249,50 @@ module Aws::BedrockAgentCoreControl
|
|
249
249
|
class Unknown < ApiSchemaConfiguration; end
|
250
250
|
end
|
251
251
|
|
252
|
+
# Configuration settings for connecting to Atlassian services using
|
253
|
+
# OAuth2 authentication. This includes the client credentials required
|
254
|
+
# to authenticate with Atlassian's OAuth2 authorization server.
|
255
|
+
#
|
256
|
+
# @!attribute [rw] client_id
|
257
|
+
# The client ID for the Atlassian OAuth2 provider. This identifier is
|
258
|
+
# assigned by Atlassian when you register your application.
|
259
|
+
# @return [String]
|
260
|
+
#
|
261
|
+
# @!attribute [rw] client_secret
|
262
|
+
# The client secret for the Atlassian OAuth2 provider. This secret is
|
263
|
+
# assigned by Atlassian and used along with the client ID to
|
264
|
+
# authenticate your application.
|
265
|
+
# @return [String]
|
266
|
+
#
|
267
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/AtlassianOauth2ProviderConfigInput AWS API Documentation
|
268
|
+
#
|
269
|
+
class AtlassianOauth2ProviderConfigInput < Struct.new(
|
270
|
+
:client_id,
|
271
|
+
:client_secret)
|
272
|
+
SENSITIVE = [:client_secret]
|
273
|
+
include Aws::Structure
|
274
|
+
end
|
275
|
+
|
276
|
+
# The configuration details returned for an Atlassian OAuth2 provider,
|
277
|
+
# including the client ID and OAuth2 discovery information.
|
278
|
+
#
|
279
|
+
# @!attribute [rw] oauth_discovery
|
280
|
+
# Contains the discovery information for an OAuth2 provider.
|
281
|
+
# @return [Types::Oauth2Discovery]
|
282
|
+
#
|
283
|
+
# @!attribute [rw] client_id
|
284
|
+
# The client ID for the Atlassian OAuth2 provider.
|
285
|
+
# @return [String]
|
286
|
+
#
|
287
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/AtlassianOauth2ProviderConfigOutput AWS API Documentation
|
288
|
+
#
|
289
|
+
class AtlassianOauth2ProviderConfigOutput < Struct.new(
|
290
|
+
:oauth_discovery,
|
291
|
+
:client_id)
|
292
|
+
SENSITIVE = []
|
293
|
+
include Aws::Structure
|
294
|
+
end
|
295
|
+
|
252
296
|
# Represents inbound authorization configuration options used to
|
253
297
|
# authenticate incoming requests.
|
254
298
|
#
|
@@ -526,6 +570,14 @@ module Aws::BedrockAgentCoreControl
|
|
526
570
|
# The Amazon Resource Name (ARN) of the AgentCore Runtime.
|
527
571
|
# @return [String]
|
528
572
|
#
|
573
|
+
# @!attribute [rw] agent_runtime_id
|
574
|
+
# The unique identifier of the AgentCore Runtime.
|
575
|
+
# @return [String]
|
576
|
+
#
|
577
|
+
# @!attribute [rw] endpoint_name
|
578
|
+
# The name of the AgentCore Runtime endpoint.
|
579
|
+
# @return [String]
|
580
|
+
#
|
529
581
|
# @!attribute [rw] status
|
530
582
|
# The current status of the AgentCore Runtime endpoint.
|
531
583
|
# @return [String]
|
@@ -540,9 +592,11 @@ module Aws::BedrockAgentCoreControl
|
|
540
592
|
:target_version,
|
541
593
|
:agent_runtime_endpoint_arn,
|
542
594
|
:agent_runtime_arn,
|
595
|
+
:agent_runtime_id,
|
596
|
+
:endpoint_name,
|
543
597
|
:status,
|
544
598
|
:created_at)
|
545
|
-
SENSITIVE = []
|
599
|
+
SENSITIVE = [:endpoint_name]
|
546
600
|
include Aws::Structure
|
547
601
|
end
|
548
602
|
|
@@ -669,11 +723,18 @@ module Aws::BedrockAgentCoreControl
|
|
669
723
|
# stored securely.
|
670
724
|
# @return [String]
|
671
725
|
#
|
726
|
+
# @!attribute [rw] tags
|
727
|
+
# A map of tag keys and values to assign to the API key credential
|
728
|
+
# provider. Tags enable you to categorize your resources in different
|
729
|
+
# ways, for example, by purpose, owner, or environment.
|
730
|
+
# @return [Hash<String,String>]
|
731
|
+
#
|
672
732
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateApiKeyCredentialProviderRequest AWS API Documentation
|
673
733
|
#
|
674
734
|
class CreateApiKeyCredentialProviderRequest < Struct.new(
|
675
735
|
:name,
|
676
|
-
:api_key
|
736
|
+
:api_key,
|
737
|
+
:tags)
|
677
738
|
SENSITIVE = [:api_key]
|
678
739
|
include Aws::Structure
|
679
740
|
end
|
@@ -1254,12 +1315,19 @@ module Aws::BedrockAgentCoreControl
|
|
1254
1315
|
# ID, client secret, and other vendor-specific settings.
|
1255
1316
|
# @return [Types::Oauth2ProviderConfigInput]
|
1256
1317
|
#
|
1318
|
+
# @!attribute [rw] tags
|
1319
|
+
# A map of tag keys and values to assign to the OAuth2 credential
|
1320
|
+
# provider. Tags enable you to categorize your resources in different
|
1321
|
+
# ways, for example, by purpose, owner, or environment.
|
1322
|
+
# @return [Hash<String,String>]
|
1323
|
+
#
|
1257
1324
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateOauth2CredentialProviderRequest AWS API Documentation
|
1258
1325
|
#
|
1259
1326
|
class CreateOauth2CredentialProviderRequest < Struct.new(
|
1260
1327
|
:name,
|
1261
1328
|
:credential_provider_vendor,
|
1262
|
-
:oauth2_provider_config_input
|
1329
|
+
:oauth2_provider_config_input,
|
1330
|
+
:tags)
|
1263
1331
|
SENSITIVE = []
|
1264
1332
|
include Aws::Structure
|
1265
1333
|
end
|
@@ -1277,12 +1345,24 @@ module Aws::BedrockAgentCoreControl
|
|
1277
1345
|
# The Amazon Resource Name (ARN) of the OAuth2 credential provider.
|
1278
1346
|
# @return [String]
|
1279
1347
|
#
|
1348
|
+
# @!attribute [rw] callback_url
|
1349
|
+
# Callback URL to register on the OAuth2 credential provider as an
|
1350
|
+
# allowed callback URL. This URL is where the OAuth2 authorization
|
1351
|
+
# server redirects users after they complete the authorization flow.
|
1352
|
+
# @return [String]
|
1353
|
+
#
|
1354
|
+
# @!attribute [rw] oauth2_provider_config_output
|
1355
|
+
# Contains the output configuration for an OAuth2 provider.
|
1356
|
+
# @return [Types::Oauth2ProviderConfigOutput]
|
1357
|
+
#
|
1280
1358
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateOauth2CredentialProviderResponse AWS API Documentation
|
1281
1359
|
#
|
1282
1360
|
class CreateOauth2CredentialProviderResponse < Struct.new(
|
1283
1361
|
:client_secret_arn,
|
1284
1362
|
:name,
|
1285
|
-
:credential_provider_arn
|
1363
|
+
:credential_provider_arn,
|
1364
|
+
:callback_url,
|
1365
|
+
:oauth2_provider_config_output)
|
1286
1366
|
SENSITIVE = []
|
1287
1367
|
include Aws::Structure
|
1288
1368
|
end
|
@@ -1297,11 +1377,18 @@ module Aws::BedrockAgentCoreControl
|
|
1297
1377
|
# this workload identity.
|
1298
1378
|
# @return [Array<String>]
|
1299
1379
|
#
|
1380
|
+
# @!attribute [rw] tags
|
1381
|
+
# A map of tag keys and values to assign to the workload identity.
|
1382
|
+
# Tags enable you to categorize your resources in different ways, for
|
1383
|
+
# example, by purpose, owner, or environment.
|
1384
|
+
# @return [Hash<String,String>]
|
1385
|
+
#
|
1300
1386
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateWorkloadIdentityRequest AWS API Documentation
|
1301
1387
|
#
|
1302
1388
|
class CreateWorkloadIdentityRequest < Struct.new(
|
1303
1389
|
:name,
|
1304
|
-
:allowed_resource_oauth_2_return_urls
|
1390
|
+
:allowed_resource_oauth_2_return_urls,
|
1391
|
+
:tags)
|
1305
1392
|
SENSITIVE = []
|
1306
1393
|
include Aws::Structure
|
1307
1394
|
end
|
@@ -1631,10 +1718,15 @@ module Aws::BedrockAgentCoreControl
|
|
1631
1718
|
# The OAuth2 discovery information for the custom provider.
|
1632
1719
|
# @return [Types::Oauth2Discovery]
|
1633
1720
|
#
|
1721
|
+
# @!attribute [rw] client_id
|
1722
|
+
# The client ID for the custom OAuth2 provider.
|
1723
|
+
# @return [String]
|
1724
|
+
#
|
1634
1725
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CustomOauth2ProviderConfigOutput AWS API Documentation
|
1635
1726
|
#
|
1636
1727
|
class CustomOauth2ProviderConfigOutput < Struct.new(
|
1637
|
-
:oauth_discovery
|
1728
|
+
:oauth_discovery,
|
1729
|
+
:client_id)
|
1638
1730
|
SENSITIVE = []
|
1639
1731
|
include Aws::Structure
|
1640
1732
|
end
|
@@ -1683,11 +1775,21 @@ module Aws::BedrockAgentCoreControl
|
|
1683
1775
|
# The current status of the AgentCore Runtime endpoint deletion.
|
1684
1776
|
# @return [String]
|
1685
1777
|
#
|
1778
|
+
# @!attribute [rw] agent_runtime_id
|
1779
|
+
# The unique identifier of the AgentCore Runtime.
|
1780
|
+
# @return [String]
|
1781
|
+
#
|
1782
|
+
# @!attribute [rw] endpoint_name
|
1783
|
+
# The name of the AgentCore Runtime endpoint.
|
1784
|
+
# @return [String]
|
1785
|
+
#
|
1686
1786
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteAgentRuntimeEndpointResponse AWS API Documentation
|
1687
1787
|
#
|
1688
1788
|
class DeleteAgentRuntimeEndpointResponse < Struct.new(
|
1689
|
-
:status
|
1690
|
-
|
1789
|
+
:status,
|
1790
|
+
:agent_runtime_id,
|
1791
|
+
:endpoint_name)
|
1792
|
+
SENSITIVE = [:endpoint_name]
|
1691
1793
|
include Aws::Structure
|
1692
1794
|
end
|
1693
1795
|
|
@@ -1707,10 +1809,15 @@ module Aws::BedrockAgentCoreControl
|
|
1707
1809
|
# The current status of the AgentCore Runtime deletion.
|
1708
1810
|
# @return [String]
|
1709
1811
|
#
|
1812
|
+
# @!attribute [rw] agent_runtime_id
|
1813
|
+
# The unique identifier of the AgentCore Runtime.
|
1814
|
+
# @return [String]
|
1815
|
+
#
|
1710
1816
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteAgentRuntimeResponse AWS API Documentation
|
1711
1817
|
#
|
1712
1818
|
class DeleteAgentRuntimeResponse < Struct.new(
|
1713
|
-
:status
|
1819
|
+
:status,
|
1820
|
+
:agent_runtime_id)
|
1714
1821
|
SENSITIVE = []
|
1715
1822
|
include Aws::Structure
|
1716
1823
|
end
|
@@ -2785,6 +2892,12 @@ module Aws::BedrockAgentCoreControl
|
|
2785
2892
|
# The vendor of the OAuth2 credential provider.
|
2786
2893
|
# @return [String]
|
2787
2894
|
#
|
2895
|
+
# @!attribute [rw] callback_url
|
2896
|
+
# Callback URL to register on the OAuth2 credential provider as an
|
2897
|
+
# allowed callback URL. This URL is where the OAuth2 authorization
|
2898
|
+
# server redirects users after they complete the authorization flow.
|
2899
|
+
# @return [String]
|
2900
|
+
#
|
2788
2901
|
# @!attribute [rw] oauth2_provider_config_output
|
2789
2902
|
# The configuration output for the OAuth2 provider.
|
2790
2903
|
# @return [Types::Oauth2ProviderConfigOutput]
|
@@ -2804,6 +2917,7 @@ module Aws::BedrockAgentCoreControl
|
|
2804
2917
|
:name,
|
2805
2918
|
:credential_provider_arn,
|
2806
2919
|
:credential_provider_vendor,
|
2920
|
+
:callback_url,
|
2807
2921
|
:oauth2_provider_config_output,
|
2808
2922
|
:created_time,
|
2809
2923
|
:last_updated_time)
|
@@ -2915,10 +3029,15 @@ module Aws::BedrockAgentCoreControl
|
|
2915
3029
|
# The OAuth2 discovery information for the GitHub provider.
|
2916
3030
|
# @return [Types::Oauth2Discovery]
|
2917
3031
|
#
|
3032
|
+
# @!attribute [rw] client_id
|
3033
|
+
# The client ID for the GitHub OAuth2 provider.
|
3034
|
+
# @return [String]
|
3035
|
+
#
|
2918
3036
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GithubOauth2ProviderConfigOutput AWS API Documentation
|
2919
3037
|
#
|
2920
3038
|
class GithubOauth2ProviderConfigOutput < Struct.new(
|
2921
|
-
:oauth_discovery
|
3039
|
+
:oauth_discovery,
|
3040
|
+
:client_id)
|
2922
3041
|
SENSITIVE = []
|
2923
3042
|
include Aws::Structure
|
2924
3043
|
end
|
@@ -2948,10 +3067,79 @@ module Aws::BedrockAgentCoreControl
|
|
2948
3067
|
# The OAuth2 discovery information for the Google provider.
|
2949
3068
|
# @return [Types::Oauth2Discovery]
|
2950
3069
|
#
|
3070
|
+
# @!attribute [rw] client_id
|
3071
|
+
# The client ID for the Google OAuth2 provider.
|
3072
|
+
# @return [String]
|
3073
|
+
#
|
2951
3074
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GoogleOauth2ProviderConfigOutput AWS API Documentation
|
2952
3075
|
#
|
2953
3076
|
class GoogleOauth2ProviderConfigOutput < Struct.new(
|
2954
|
-
:oauth_discovery
|
3077
|
+
:oauth_discovery,
|
3078
|
+
:client_id)
|
3079
|
+
SENSITIVE = []
|
3080
|
+
include Aws::Structure
|
3081
|
+
end
|
3082
|
+
|
3083
|
+
# Configuration settings for connecting to a supported OAuth2 provider.
|
3084
|
+
# This includes client credentials and OAuth2 discovery information for
|
3085
|
+
# providers that have built-in support.
|
3086
|
+
#
|
3087
|
+
# @!attribute [rw] client_id
|
3088
|
+
# The client ID for the supported OAuth2 provider. This identifier is
|
3089
|
+
# assigned by the OAuth2 provider when you register your application.
|
3090
|
+
# @return [String]
|
3091
|
+
#
|
3092
|
+
# @!attribute [rw] client_secret
|
3093
|
+
# The client secret for the supported OAuth2 provider. This secret is
|
3094
|
+
# assigned by the OAuth2 provider and used along with the client ID to
|
3095
|
+
# authenticate your application.
|
3096
|
+
# @return [String]
|
3097
|
+
#
|
3098
|
+
# @!attribute [rw] issuer
|
3099
|
+
# Token issuer of your isolated OAuth2 application tenant. This URL
|
3100
|
+
# identifies the authorization server that issues tokens for this
|
3101
|
+
# provider.
|
3102
|
+
# @return [String]
|
3103
|
+
#
|
3104
|
+
# @!attribute [rw] authorization_endpoint
|
3105
|
+
# OAuth2 authorization endpoint for your isolated OAuth2 application
|
3106
|
+
# tenant. This is where users are redirected to authenticate and
|
3107
|
+
# authorize access to their resources.
|
3108
|
+
# @return [String]
|
3109
|
+
#
|
3110
|
+
# @!attribute [rw] token_endpoint
|
3111
|
+
# OAuth2 token endpoint for your isolated OAuth2 application tenant.
|
3112
|
+
# This is where authorization codes are exchanged for access tokens.
|
3113
|
+
# @return [String]
|
3114
|
+
#
|
3115
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/IncludedOauth2ProviderConfigInput AWS API Documentation
|
3116
|
+
#
|
3117
|
+
class IncludedOauth2ProviderConfigInput < Struct.new(
|
3118
|
+
:client_id,
|
3119
|
+
:client_secret,
|
3120
|
+
:issuer,
|
3121
|
+
:authorization_endpoint,
|
3122
|
+
:token_endpoint)
|
3123
|
+
SENSITIVE = [:client_secret]
|
3124
|
+
include Aws::Structure
|
3125
|
+
end
|
3126
|
+
|
3127
|
+
# The configuration details returned for a supported OAuth2 provider,
|
3128
|
+
# including client credentials and OAuth2 discovery information.
|
3129
|
+
#
|
3130
|
+
# @!attribute [rw] oauth_discovery
|
3131
|
+
# Contains the discovery information for an OAuth2 provider.
|
3132
|
+
# @return [Types::Oauth2Discovery]
|
3133
|
+
#
|
3134
|
+
# @!attribute [rw] client_id
|
3135
|
+
# The client ID for the supported OAuth2 provider.
|
3136
|
+
# @return [String]
|
3137
|
+
#
|
3138
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/IncludedOauth2ProviderConfigOutput AWS API Documentation
|
3139
|
+
#
|
3140
|
+
class IncludedOauth2ProviderConfigOutput < Struct.new(
|
3141
|
+
:oauth_discovery,
|
3142
|
+
:client_id)
|
2955
3143
|
SENSITIVE = []
|
2956
3144
|
include Aws::Structure
|
2957
3145
|
end
|
@@ -3056,6 +3244,50 @@ module Aws::BedrockAgentCoreControl
|
|
3056
3244
|
include Aws::Structure
|
3057
3245
|
end
|
3058
3246
|
|
3247
|
+
# Configuration settings for connecting to LinkedIn services using
|
3248
|
+
# OAuth2 authentication. This includes the client credentials required
|
3249
|
+
# to authenticate with LinkedIn's OAuth2 authorization server.
|
3250
|
+
#
|
3251
|
+
# @!attribute [rw] client_id
|
3252
|
+
# The client ID for the LinkedIn OAuth2 provider. This identifier is
|
3253
|
+
# assigned by LinkedIn when you register your application.
|
3254
|
+
# @return [String]
|
3255
|
+
#
|
3256
|
+
# @!attribute [rw] client_secret
|
3257
|
+
# The client secret for the LinkedIn OAuth2 provider. This secret is
|
3258
|
+
# assigned by LinkedIn and used along with the client ID to
|
3259
|
+
# authenticate your application.
|
3260
|
+
# @return [String]
|
3261
|
+
#
|
3262
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/LinkedinOauth2ProviderConfigInput AWS API Documentation
|
3263
|
+
#
|
3264
|
+
class LinkedinOauth2ProviderConfigInput < Struct.new(
|
3265
|
+
:client_id,
|
3266
|
+
:client_secret)
|
3267
|
+
SENSITIVE = [:client_secret]
|
3268
|
+
include Aws::Structure
|
3269
|
+
end
|
3270
|
+
|
3271
|
+
# The configuration details returned for a LinkedIn OAuth2 provider,
|
3272
|
+
# including the client ID and OAuth2 discovery information.
|
3273
|
+
#
|
3274
|
+
# @!attribute [rw] oauth_discovery
|
3275
|
+
# Contains the discovery information for an OAuth2 provider.
|
3276
|
+
# @return [Types::Oauth2Discovery]
|
3277
|
+
#
|
3278
|
+
# @!attribute [rw] client_id
|
3279
|
+
# The client ID for the LinkedIn OAuth2 provider.
|
3280
|
+
# @return [String]
|
3281
|
+
#
|
3282
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/LinkedinOauth2ProviderConfigOutput AWS API Documentation
|
3283
|
+
#
|
3284
|
+
class LinkedinOauth2ProviderConfigOutput < Struct.new(
|
3285
|
+
:oauth_discovery,
|
3286
|
+
:client_id)
|
3287
|
+
SENSITIVE = []
|
3288
|
+
include Aws::Structure
|
3289
|
+
end
|
3290
|
+
|
3059
3291
|
# @!attribute [rw] agent_runtime_id
|
3060
3292
|
# The unique identifier of the AgentCore Runtime to list endpoints
|
3061
3293
|
# for.
|
@@ -3853,11 +4085,18 @@ module Aws::BedrockAgentCoreControl
|
|
3853
4085
|
# The client secret for the Microsoft OAuth2 provider.
|
3854
4086
|
# @return [String]
|
3855
4087
|
#
|
4088
|
+
# @!attribute [rw] tenant_id
|
4089
|
+
# The Microsoft Entra ID (formerly Azure AD) tenant ID for your
|
4090
|
+
# organization. This identifies the specific tenant within
|
4091
|
+
# Microsoft's identity platform where your application is registered.
|
4092
|
+
# @return [String]
|
4093
|
+
#
|
3856
4094
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/MicrosoftOauth2ProviderConfigInput AWS API Documentation
|
3857
4095
|
#
|
3858
4096
|
class MicrosoftOauth2ProviderConfigInput < Struct.new(
|
3859
4097
|
:client_id,
|
3860
|
-
:client_secret
|
4098
|
+
:client_secret,
|
4099
|
+
:tenant_id)
|
3861
4100
|
SENSITIVE = [:client_secret]
|
3862
4101
|
include Aws::Structure
|
3863
4102
|
end
|
@@ -3868,10 +4107,15 @@ module Aws::BedrockAgentCoreControl
|
|
3868
4107
|
# The OAuth2 discovery information for the Microsoft provider.
|
3869
4108
|
# @return [Types::Oauth2Discovery]
|
3870
4109
|
#
|
4110
|
+
# @!attribute [rw] client_id
|
4111
|
+
# The client ID for the Microsoft OAuth2 provider.
|
4112
|
+
# @return [String]
|
4113
|
+
#
|
3871
4114
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/MicrosoftOauth2ProviderConfigOutput AWS API Documentation
|
3872
4115
|
#
|
3873
4116
|
class MicrosoftOauth2ProviderConfigOutput < Struct.new(
|
3874
|
-
:oauth_discovery
|
4117
|
+
:oauth_discovery,
|
4118
|
+
:client_id)
|
3875
4119
|
SENSITIVE = []
|
3876
4120
|
include Aws::Structure
|
3877
4121
|
end
|
@@ -4107,13 +4351,20 @@ module Aws::BedrockAgentCoreControl
|
|
4107
4351
|
# The supported response types for the OAuth2 authorization server.
|
4108
4352
|
# @return [Array<String>]
|
4109
4353
|
#
|
4354
|
+
# @!attribute [rw] token_endpoint_auth_methods
|
4355
|
+
# The authentication methods supported by the token endpoint. This
|
4356
|
+
# specifies how clients can authenticate when requesting tokens from
|
4357
|
+
# the authorization server.
|
4358
|
+
# @return [Array<String>]
|
4359
|
+
#
|
4110
4360
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/Oauth2AuthorizationServerMetadata AWS API Documentation
|
4111
4361
|
#
|
4112
4362
|
class Oauth2AuthorizationServerMetadata < Struct.new(
|
4113
4363
|
:issuer,
|
4114
4364
|
:authorization_endpoint,
|
4115
4365
|
:token_endpoint,
|
4116
|
-
:response_types
|
4366
|
+
:response_types,
|
4367
|
+
:token_endpoint_auth_methods)
|
4117
4368
|
SENSITIVE = []
|
4118
4369
|
include Aws::Structure
|
4119
4370
|
end
|
@@ -4209,6 +4460,20 @@ module Aws::BedrockAgentCoreControl
|
|
4209
4460
|
# The configuration for a Microsoft OAuth2 provider.
|
4210
4461
|
# @return [Types::MicrosoftOauth2ProviderConfigInput]
|
4211
4462
|
#
|
4463
|
+
# @!attribute [rw] atlassian_oauth_2_provider_config
|
4464
|
+
# Configuration settings for Atlassian OAuth2 provider integration.
|
4465
|
+
# @return [Types::AtlassianOauth2ProviderConfigInput]
|
4466
|
+
#
|
4467
|
+
# @!attribute [rw] linkedin_oauth_2_provider_config
|
4468
|
+
# Configuration settings for LinkedIn OAuth2 provider integration.
|
4469
|
+
# @return [Types::LinkedinOauth2ProviderConfigInput]
|
4470
|
+
#
|
4471
|
+
# @!attribute [rw] included_oauth_2_provider_config
|
4472
|
+
# The configuration for a non-custom OAuth2 provider. This includes
|
4473
|
+
# settings for supported OAuth2 providers that have built-in
|
4474
|
+
# integration support.
|
4475
|
+
# @return [Types::IncludedOauth2ProviderConfigInput]
|
4476
|
+
#
|
4212
4477
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/Oauth2ProviderConfigInput AWS API Documentation
|
4213
4478
|
#
|
4214
4479
|
class Oauth2ProviderConfigInput < Struct.new(
|
@@ -4218,6 +4483,9 @@ module Aws::BedrockAgentCoreControl
|
|
4218
4483
|
:slack_oauth_2_provider_config,
|
4219
4484
|
:salesforce_oauth_2_provider_config,
|
4220
4485
|
:microsoft_oauth_2_provider_config,
|
4486
|
+
:atlassian_oauth_2_provider_config,
|
4487
|
+
:linkedin_oauth_2_provider_config,
|
4488
|
+
:included_oauth_2_provider_config,
|
4221
4489
|
:unknown)
|
4222
4490
|
SENSITIVE = []
|
4223
4491
|
include Aws::Structure
|
@@ -4229,6 +4497,9 @@ module Aws::BedrockAgentCoreControl
|
|
4229
4497
|
class SlackOauth2ProviderConfig < Oauth2ProviderConfigInput; end
|
4230
4498
|
class SalesforceOauth2ProviderConfig < Oauth2ProviderConfigInput; end
|
4231
4499
|
class MicrosoftOauth2ProviderConfig < Oauth2ProviderConfigInput; end
|
4500
|
+
class AtlassianOauth2ProviderConfig < Oauth2ProviderConfigInput; end
|
4501
|
+
class LinkedinOauth2ProviderConfig < Oauth2ProviderConfigInput; end
|
4502
|
+
class IncludedOauth2ProviderConfig < Oauth2ProviderConfigInput; end
|
4232
4503
|
class Unknown < Oauth2ProviderConfigInput; end
|
4233
4504
|
end
|
4234
4505
|
|
@@ -4260,6 +4531,20 @@ module Aws::BedrockAgentCoreControl
|
|
4260
4531
|
# The output configuration for a Microsoft OAuth2 provider.
|
4261
4532
|
# @return [Types::MicrosoftOauth2ProviderConfigOutput]
|
4262
4533
|
#
|
4534
|
+
# @!attribute [rw] atlassian_oauth_2_provider_config
|
4535
|
+
# The configuration details for the Atlassian OAuth2 provider.
|
4536
|
+
# @return [Types::AtlassianOauth2ProviderConfigOutput]
|
4537
|
+
#
|
4538
|
+
# @!attribute [rw] linkedin_oauth_2_provider_config
|
4539
|
+
# The configuration details for the LinkedIn OAuth2 provider.
|
4540
|
+
# @return [Types::LinkedinOauth2ProviderConfigOutput]
|
4541
|
+
#
|
4542
|
+
# @!attribute [rw] included_oauth_2_provider_config
|
4543
|
+
# The configuration for a non-custom OAuth2 provider. This includes
|
4544
|
+
# the configuration details for supported OAuth2 providers that have
|
4545
|
+
# built-in integration support.
|
4546
|
+
# @return [Types::IncludedOauth2ProviderConfigOutput]
|
4547
|
+
#
|
4263
4548
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/Oauth2ProviderConfigOutput AWS API Documentation
|
4264
4549
|
#
|
4265
4550
|
class Oauth2ProviderConfigOutput < Struct.new(
|
@@ -4269,6 +4554,9 @@ module Aws::BedrockAgentCoreControl
|
|
4269
4554
|
:slack_oauth_2_provider_config,
|
4270
4555
|
:salesforce_oauth_2_provider_config,
|
4271
4556
|
:microsoft_oauth_2_provider_config,
|
4557
|
+
:atlassian_oauth_2_provider_config,
|
4558
|
+
:linkedin_oauth_2_provider_config,
|
4559
|
+
:included_oauth_2_provider_config,
|
4272
4560
|
:unknown)
|
4273
4561
|
SENSITIVE = []
|
4274
4562
|
include Aws::Structure
|
@@ -4280,6 +4568,9 @@ module Aws::BedrockAgentCoreControl
|
|
4280
4568
|
class SlackOauth2ProviderConfig < Oauth2ProviderConfigOutput; end
|
4281
4569
|
class SalesforceOauth2ProviderConfig < Oauth2ProviderConfigOutput; end
|
4282
4570
|
class MicrosoftOauth2ProviderConfig < Oauth2ProviderConfigOutput; end
|
4571
|
+
class AtlassianOauth2ProviderConfig < Oauth2ProviderConfigOutput; end
|
4572
|
+
class LinkedinOauth2ProviderConfig < Oauth2ProviderConfigOutput; end
|
4573
|
+
class IncludedOauth2ProviderConfig < Oauth2ProviderConfigOutput; end
|
4283
4574
|
class Unknown < Oauth2ProviderConfigOutput; end
|
4284
4575
|
end
|
4285
4576
|
|
@@ -4442,10 +4733,15 @@ module Aws::BedrockAgentCoreControl
|
|
4442
4733
|
# The OAuth2 discovery information for the Salesforce provider.
|
4443
4734
|
# @return [Types::Oauth2Discovery]
|
4444
4735
|
#
|
4736
|
+
# @!attribute [rw] client_id
|
4737
|
+
# The client ID for the Salesforce OAuth2 provider.
|
4738
|
+
# @return [String]
|
4739
|
+
#
|
4445
4740
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SalesforceOauth2ProviderConfigOutput AWS API Documentation
|
4446
4741
|
#
|
4447
4742
|
class SalesforceOauth2ProviderConfigOutput < Struct.new(
|
4448
|
-
:oauth_discovery
|
4743
|
+
:oauth_discovery,
|
4744
|
+
:client_id)
|
4449
4745
|
SENSITIVE = []
|
4450
4746
|
include Aws::Structure
|
4451
4747
|
end
|
@@ -4766,10 +5062,15 @@ module Aws::BedrockAgentCoreControl
|
|
4766
5062
|
# The OAuth2 discovery information for the Slack provider.
|
4767
5063
|
# @return [Types::Oauth2Discovery]
|
4768
5064
|
#
|
5065
|
+
# @!attribute [rw] client_id
|
5066
|
+
# The client ID for the Slack OAuth2 provider.
|
5067
|
+
# @return [String]
|
5068
|
+
#
|
4769
5069
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SlackOauth2ProviderConfigOutput AWS API Documentation
|
4770
5070
|
#
|
4771
5071
|
class SlackOauth2ProviderConfigOutput < Struct.new(
|
4772
|
-
:oauth_discovery
|
5072
|
+
:oauth_discovery,
|
5073
|
+
:client_id)
|
4773
5074
|
SENSITIVE = []
|
4774
5075
|
include Aws::Structure
|
4775
5076
|
end
|
@@ -5853,6 +6154,12 @@ module Aws::BedrockAgentCoreControl
|
|
5853
6154
|
# The Amazon Resource Name (ARN) of the OAuth2 credential provider.
|
5854
6155
|
# @return [String]
|
5855
6156
|
#
|
6157
|
+
# @!attribute [rw] callback_url
|
6158
|
+
# Callback URL to register on the OAuth2 credential provider as an
|
6159
|
+
# allowed callback URL. This URL is where the OAuth2 authorization
|
6160
|
+
# server redirects users after they complete the authorization flow.
|
6161
|
+
# @return [String]
|
6162
|
+
#
|
5856
6163
|
# @!attribute [rw] oauth2_provider_config_output
|
5857
6164
|
# The configuration output for the OAuth2 provider.
|
5858
6165
|
# @return [Types::Oauth2ProviderConfigOutput]
|
@@ -5872,6 +6179,7 @@ module Aws::BedrockAgentCoreControl
|
|
5872
6179
|
:name,
|
5873
6180
|
:credential_provider_vendor,
|
5874
6181
|
:credential_provider_arn,
|
6182
|
+
:callback_url,
|
5875
6183
|
:oauth2_provider_config_output,
|
5876
6184
|
:created_time,
|
5877
6185
|
:last_updated_time)
|