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/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
|
|
|
@@ -296,12 +311,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
296
311
|
attr_accessor target_id: ::String
|
|
297
312
|
attr_accessor created_at: ::Time
|
|
298
313
|
attr_accessor updated_at: ::Time
|
|
299
|
-
attr_accessor status: ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED")
|
|
314
|
+
attr_accessor status: ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED" | "SYNCHRONIZING" | "SYNCHRONIZE_UNSUCCESSFUL")
|
|
300
315
|
attr_accessor status_reasons: ::Array[::String]
|
|
301
316
|
attr_accessor name: ::String
|
|
302
317
|
attr_accessor description: ::String
|
|
303
318
|
attr_accessor target_configuration: Types::TargetConfiguration
|
|
304
319
|
attr_accessor credential_provider_configurations: ::Array[Types::CredentialProviderConfiguration]
|
|
320
|
+
attr_accessor last_synchronized_at: ::Time
|
|
305
321
|
SENSITIVE: [:name, :description]
|
|
306
322
|
end
|
|
307
323
|
|
|
@@ -324,8 +340,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
324
340
|
|
|
325
341
|
class CreateOauth2CredentialProviderRequest
|
|
326
342
|
attr_accessor name: ::String
|
|
327
|
-
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")
|
|
328
344
|
attr_accessor oauth2_provider_config_input: Types::Oauth2ProviderConfigInput
|
|
345
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
329
346
|
SENSITIVE: []
|
|
330
347
|
end
|
|
331
348
|
|
|
@@ -333,12 +350,15 @@ module Aws::BedrockAgentCoreControl
|
|
|
333
350
|
attr_accessor client_secret_arn: Types::Secret
|
|
334
351
|
attr_accessor name: ::String
|
|
335
352
|
attr_accessor credential_provider_arn: ::String
|
|
353
|
+
attr_accessor callback_url: ::String
|
|
354
|
+
attr_accessor oauth2_provider_config_output: Types::Oauth2ProviderConfigOutput
|
|
336
355
|
SENSITIVE: []
|
|
337
356
|
end
|
|
338
357
|
|
|
339
358
|
class CreateWorkloadIdentityRequest
|
|
340
359
|
attr_accessor name: ::String
|
|
341
360
|
attr_accessor allowed_resource_oauth_2_return_urls: ::Array[::String]
|
|
361
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
342
362
|
SENSITIVE: []
|
|
343
363
|
end
|
|
344
364
|
|
|
@@ -373,6 +393,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
373
393
|
attr_accessor semantic_override: Types::SemanticOverrideConfigurationInput
|
|
374
394
|
attr_accessor summary_override: Types::SummaryOverrideConfigurationInput
|
|
375
395
|
attr_accessor user_preference_override: Types::UserPreferenceOverrideConfigurationInput
|
|
396
|
+
attr_accessor self_managed_configuration: Types::SelfManagedConfigurationInput
|
|
376
397
|
attr_accessor unknown: untyped
|
|
377
398
|
SENSITIVE: []
|
|
378
399
|
|
|
@@ -382,6 +403,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
382
403
|
end
|
|
383
404
|
class UserPreferenceOverride < CustomConfigurationInput
|
|
384
405
|
end
|
|
406
|
+
class SelfManagedConfiguration < CustomConfigurationInput
|
|
407
|
+
end
|
|
385
408
|
class Unknown < CustomConfigurationInput
|
|
386
409
|
end
|
|
387
410
|
end
|
|
@@ -472,6 +495,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
472
495
|
|
|
473
496
|
class CustomOauth2ProviderConfigOutput
|
|
474
497
|
attr_accessor oauth_discovery: Types::Oauth2Discovery
|
|
498
|
+
attr_accessor client_id: ::String
|
|
475
499
|
SENSITIVE: []
|
|
476
500
|
end
|
|
477
501
|
|
|
@@ -489,7 +513,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
489
513
|
|
|
490
514
|
class DeleteAgentRuntimeEndpointResponse
|
|
491
515
|
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
|
492
|
-
|
|
516
|
+
attr_accessor agent_runtime_id: ::String
|
|
517
|
+
attr_accessor endpoint_name: ::String
|
|
518
|
+
SENSITIVE: [:endpoint_name]
|
|
493
519
|
end
|
|
494
520
|
|
|
495
521
|
class DeleteAgentRuntimeRequest
|
|
@@ -499,6 +525,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
499
525
|
|
|
500
526
|
class DeleteAgentRuntimeResponse
|
|
501
527
|
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
|
528
|
+
attr_accessor agent_runtime_id: ::String
|
|
502
529
|
SENSITIVE: []
|
|
503
530
|
end
|
|
504
531
|
|
|
@@ -557,7 +584,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
557
584
|
class DeleteGatewayTargetResponse
|
|
558
585
|
attr_accessor gateway_arn: ::String
|
|
559
586
|
attr_accessor target_id: ::String
|
|
560
|
-
attr_accessor status: ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED")
|
|
587
|
+
attr_accessor status: ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED" | "SYNCHRONIZING" | "SYNCHRONIZE_UNSUCCESSFUL")
|
|
561
588
|
attr_accessor status_reasons: ::Array[::String]
|
|
562
589
|
SENSITIVE: []
|
|
563
590
|
end
|
|
@@ -634,6 +661,21 @@ module Aws::BedrockAgentCoreControl
|
|
|
634
661
|
SENSITIVE: [:name, :description]
|
|
635
662
|
end
|
|
636
663
|
|
|
664
|
+
class GatewayTarget
|
|
665
|
+
attr_accessor gateway_arn: ::String
|
|
666
|
+
attr_accessor target_id: ::String
|
|
667
|
+
attr_accessor created_at: ::Time
|
|
668
|
+
attr_accessor updated_at: ::Time
|
|
669
|
+
attr_accessor status: ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED" | "SYNCHRONIZING" | "SYNCHRONIZE_UNSUCCESSFUL")
|
|
670
|
+
attr_accessor status_reasons: ::Array[::String]
|
|
671
|
+
attr_accessor name: ::String
|
|
672
|
+
attr_accessor description: ::String
|
|
673
|
+
attr_accessor target_configuration: Types::TargetConfiguration
|
|
674
|
+
attr_accessor credential_provider_configurations: ::Array[Types::CredentialProviderConfiguration]
|
|
675
|
+
attr_accessor last_synchronized_at: ::Time
|
|
676
|
+
SENSITIVE: [:name, :description]
|
|
677
|
+
end
|
|
678
|
+
|
|
637
679
|
class GetAgentRuntimeEndpointRequest
|
|
638
680
|
attr_accessor agent_runtime_id: ::String
|
|
639
681
|
attr_accessor endpoint_name: ::String
|
|
@@ -772,12 +814,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
772
814
|
attr_accessor target_id: ::String
|
|
773
815
|
attr_accessor created_at: ::Time
|
|
774
816
|
attr_accessor updated_at: ::Time
|
|
775
|
-
attr_accessor status: ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED")
|
|
817
|
+
attr_accessor status: ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED" | "SYNCHRONIZING" | "SYNCHRONIZE_UNSUCCESSFUL")
|
|
776
818
|
attr_accessor status_reasons: ::Array[::String]
|
|
777
819
|
attr_accessor name: ::String
|
|
778
820
|
attr_accessor description: ::String
|
|
779
821
|
attr_accessor target_configuration: Types::TargetConfiguration
|
|
780
822
|
attr_accessor credential_provider_configurations: ::Array[Types::CredentialProviderConfiguration]
|
|
823
|
+
attr_accessor last_synchronized_at: ::Time
|
|
781
824
|
SENSITIVE: [:name, :description]
|
|
782
825
|
end
|
|
783
826
|
|
|
@@ -800,7 +843,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
800
843
|
attr_accessor client_secret_arn: Types::Secret
|
|
801
844
|
attr_accessor name: ::String
|
|
802
845
|
attr_accessor credential_provider_arn: ::String
|
|
803
|
-
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
|
|
804
848
|
attr_accessor oauth2_provider_config_output: Types::Oauth2ProviderConfigOutput
|
|
805
849
|
attr_accessor created_time: ::Time
|
|
806
850
|
attr_accessor last_updated_time: ::Time
|
|
@@ -841,6 +885,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
841
885
|
|
|
842
886
|
class GithubOauth2ProviderConfigOutput
|
|
843
887
|
attr_accessor oauth_discovery: Types::Oauth2Discovery
|
|
888
|
+
attr_accessor client_id: ::String
|
|
844
889
|
SENSITIVE: []
|
|
845
890
|
end
|
|
846
891
|
|
|
@@ -852,6 +897,22 @@ module Aws::BedrockAgentCoreControl
|
|
|
852
897
|
|
|
853
898
|
class GoogleOauth2ProviderConfigOutput
|
|
854
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
|
|
855
916
|
SENSITIVE: []
|
|
856
917
|
end
|
|
857
918
|
|
|
@@ -860,6 +921,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
860
921
|
SENSITIVE: []
|
|
861
922
|
end
|
|
862
923
|
|
|
924
|
+
class InvocationConfiguration
|
|
925
|
+
attr_accessor topic_arn: ::String
|
|
926
|
+
attr_accessor payload_delivery_bucket_name: ::String
|
|
927
|
+
SENSITIVE: []
|
|
928
|
+
end
|
|
929
|
+
|
|
930
|
+
class InvocationConfigurationInput
|
|
931
|
+
attr_accessor topic_arn: ::String
|
|
932
|
+
attr_accessor payload_delivery_bucket_name: ::String
|
|
933
|
+
SENSITIVE: []
|
|
934
|
+
end
|
|
935
|
+
|
|
863
936
|
class KmsConfiguration
|
|
864
937
|
attr_accessor key_type: ("CustomerManagedKey" | "ServiceManagedKey")
|
|
865
938
|
attr_accessor kms_key_arn: ::String
|
|
@@ -872,6 +945,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
872
945
|
SENSITIVE: []
|
|
873
946
|
end
|
|
874
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
|
+
|
|
875
960
|
class ListAgentRuntimeEndpointsRequest
|
|
876
961
|
attr_accessor agent_runtime_id: ::String
|
|
877
962
|
attr_accessor max_results: ::Integer
|
|
@@ -1032,10 +1117,16 @@ module Aws::BedrockAgentCoreControl
|
|
|
1032
1117
|
SENSITIVE: []
|
|
1033
1118
|
end
|
|
1034
1119
|
|
|
1120
|
+
class McpServerTargetConfiguration
|
|
1121
|
+
attr_accessor endpoint: ::String
|
|
1122
|
+
SENSITIVE: []
|
|
1123
|
+
end
|
|
1124
|
+
|
|
1035
1125
|
class McpTargetConfiguration
|
|
1036
1126
|
attr_accessor open_api_schema: Types::ApiSchemaConfiguration
|
|
1037
1127
|
attr_accessor smithy_model: Types::ApiSchemaConfiguration
|
|
1038
1128
|
attr_accessor lambda: Types::McpLambdaTargetConfiguration
|
|
1129
|
+
attr_accessor mcp_server: Types::McpServerTargetConfiguration
|
|
1039
1130
|
attr_accessor unknown: untyped
|
|
1040
1131
|
SENSITIVE: []
|
|
1041
1132
|
|
|
@@ -1045,6 +1136,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
1045
1136
|
end
|
|
1046
1137
|
class Lambda < McpTargetConfiguration
|
|
1047
1138
|
end
|
|
1139
|
+
class McpServer < McpTargetConfiguration
|
|
1140
|
+
end
|
|
1048
1141
|
class Unknown < McpTargetConfiguration
|
|
1049
1142
|
end
|
|
1050
1143
|
end
|
|
@@ -1107,14 +1200,26 @@ module Aws::BedrockAgentCoreControl
|
|
|
1107
1200
|
SENSITIVE: []
|
|
1108
1201
|
end
|
|
1109
1202
|
|
|
1203
|
+
class MessageBasedTrigger
|
|
1204
|
+
attr_accessor message_count: ::Integer
|
|
1205
|
+
SENSITIVE: []
|
|
1206
|
+
end
|
|
1207
|
+
|
|
1208
|
+
class MessageBasedTriggerInput
|
|
1209
|
+
attr_accessor message_count: ::Integer
|
|
1210
|
+
SENSITIVE: []
|
|
1211
|
+
end
|
|
1212
|
+
|
|
1110
1213
|
class MicrosoftOauth2ProviderConfigInput
|
|
1111
1214
|
attr_accessor client_id: ::String
|
|
1112
1215
|
attr_accessor client_secret: ::String
|
|
1216
|
+
attr_accessor tenant_id: ::String
|
|
1113
1217
|
SENSITIVE: [:client_secret]
|
|
1114
1218
|
end
|
|
1115
1219
|
|
|
1116
1220
|
class MicrosoftOauth2ProviderConfigOutput
|
|
1117
1221
|
attr_accessor oauth_discovery: Types::Oauth2Discovery
|
|
1222
|
+
attr_accessor client_id: ::String
|
|
1118
1223
|
SENSITIVE: []
|
|
1119
1224
|
end
|
|
1120
1225
|
|
|
@@ -1140,6 +1245,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
1140
1245
|
end
|
|
1141
1246
|
end
|
|
1142
1247
|
|
|
1248
|
+
class ModifyInvocationConfigurationInput
|
|
1249
|
+
attr_accessor topic_arn: ::String
|
|
1250
|
+
attr_accessor payload_delivery_bucket_name: ::String
|
|
1251
|
+
SENSITIVE: []
|
|
1252
|
+
end
|
|
1253
|
+
|
|
1143
1254
|
class ModifyMemoryStrategies
|
|
1144
1255
|
attr_accessor add_memory_strategies: ::Array[Types::MemoryStrategyInput]
|
|
1145
1256
|
attr_accessor modify_memory_strategies: ::Array[Types::ModifyMemoryStrategyInput]
|
|
@@ -1155,9 +1266,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
1155
1266
|
SENSITIVE: [:description]
|
|
1156
1267
|
end
|
|
1157
1268
|
|
|
1269
|
+
class ModifySelfManagedConfiguration
|
|
1270
|
+
attr_accessor trigger_conditions: ::Array[Types::TriggerConditionInput]
|
|
1271
|
+
attr_accessor invocation_configuration: Types::ModifyInvocationConfigurationInput
|
|
1272
|
+
attr_accessor historical_context_window_size: ::Integer
|
|
1273
|
+
SENSITIVE: []
|
|
1274
|
+
end
|
|
1275
|
+
|
|
1158
1276
|
class ModifyStrategyConfiguration
|
|
1159
1277
|
attr_accessor extraction: Types::ModifyExtractionConfiguration
|
|
1160
1278
|
attr_accessor consolidation: Types::ModifyConsolidationConfiguration
|
|
1279
|
+
attr_accessor self_managed_configuration: Types::ModifySelfManagedConfiguration
|
|
1161
1280
|
SENSITIVE: []
|
|
1162
1281
|
end
|
|
1163
1282
|
|
|
@@ -1179,12 +1298,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
1179
1298
|
attr_accessor authorization_endpoint: ::String
|
|
1180
1299
|
attr_accessor token_endpoint: ::String
|
|
1181
1300
|
attr_accessor response_types: ::Array[::String]
|
|
1301
|
+
attr_accessor token_endpoint_auth_methods: ::Array[::String]
|
|
1182
1302
|
SENSITIVE: []
|
|
1183
1303
|
end
|
|
1184
1304
|
|
|
1185
1305
|
class Oauth2CredentialProviderItem
|
|
1186
1306
|
attr_accessor name: ::String
|
|
1187
|
-
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")
|
|
1188
1308
|
attr_accessor credential_provider_arn: ::String
|
|
1189
1309
|
attr_accessor created_time: ::Time
|
|
1190
1310
|
attr_accessor last_updated_time: ::Time
|
|
@@ -1212,6 +1332,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
1212
1332
|
attr_accessor slack_oauth_2_provider_config: Types::SlackOauth2ProviderConfigInput
|
|
1213
1333
|
attr_accessor salesforce_oauth_2_provider_config: Types::SalesforceOauth2ProviderConfigInput
|
|
1214
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
|
|
1215
1338
|
attr_accessor unknown: untyped
|
|
1216
1339
|
SENSITIVE: []
|
|
1217
1340
|
|
|
@@ -1227,6 +1350,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
1227
1350
|
end
|
|
1228
1351
|
class MicrosoftOauth2ProviderConfig < Oauth2ProviderConfigInput
|
|
1229
1352
|
end
|
|
1353
|
+
class AtlassianOauth2ProviderConfig < Oauth2ProviderConfigInput
|
|
1354
|
+
end
|
|
1355
|
+
class LinkedinOauth2ProviderConfig < Oauth2ProviderConfigInput
|
|
1356
|
+
end
|
|
1357
|
+
class IncludedOauth2ProviderConfig < Oauth2ProviderConfigInput
|
|
1358
|
+
end
|
|
1230
1359
|
class Unknown < Oauth2ProviderConfigInput
|
|
1231
1360
|
end
|
|
1232
1361
|
end
|
|
@@ -1238,6 +1367,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
1238
1367
|
attr_accessor slack_oauth_2_provider_config: Types::SlackOauth2ProviderConfigOutput
|
|
1239
1368
|
attr_accessor salesforce_oauth_2_provider_config: Types::SalesforceOauth2ProviderConfigOutput
|
|
1240
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
|
|
1241
1373
|
attr_accessor unknown: untyped
|
|
1242
1374
|
SENSITIVE: []
|
|
1243
1375
|
|
|
@@ -1253,6 +1385,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
1253
1385
|
end
|
|
1254
1386
|
class MicrosoftOauth2ProviderConfig < Oauth2ProviderConfigOutput
|
|
1255
1387
|
end
|
|
1388
|
+
class AtlassianOauth2ProviderConfig < Oauth2ProviderConfigOutput
|
|
1389
|
+
end
|
|
1390
|
+
class LinkedinOauth2ProviderConfig < Oauth2ProviderConfigOutput
|
|
1391
|
+
end
|
|
1392
|
+
class IncludedOauth2ProviderConfig < Oauth2ProviderConfigOutput
|
|
1393
|
+
end
|
|
1256
1394
|
class Unknown < Oauth2ProviderConfigOutput
|
|
1257
1395
|
end
|
|
1258
1396
|
end
|
|
@@ -1309,6 +1447,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1309
1447
|
|
|
1310
1448
|
class SalesforceOauth2ProviderConfigOutput
|
|
1311
1449
|
attr_accessor oauth_discovery: Types::Oauth2Discovery
|
|
1450
|
+
attr_accessor client_id: ::String
|
|
1312
1451
|
SENSITIVE: []
|
|
1313
1452
|
end
|
|
1314
1453
|
|
|
@@ -1326,6 +1465,20 @@ module Aws::BedrockAgentCoreControl
|
|
|
1326
1465
|
SENSITIVE: []
|
|
1327
1466
|
end
|
|
1328
1467
|
|
|
1468
|
+
class SelfManagedConfiguration
|
|
1469
|
+
attr_accessor trigger_conditions: ::Array[Types::TriggerCondition]
|
|
1470
|
+
attr_accessor invocation_configuration: Types::InvocationConfiguration
|
|
1471
|
+
attr_accessor historical_context_window_size: ::Integer
|
|
1472
|
+
SENSITIVE: []
|
|
1473
|
+
end
|
|
1474
|
+
|
|
1475
|
+
class SelfManagedConfigurationInput
|
|
1476
|
+
attr_accessor trigger_conditions: ::Array[Types::TriggerConditionInput]
|
|
1477
|
+
attr_accessor invocation_configuration: Types::InvocationConfigurationInput
|
|
1478
|
+
attr_accessor historical_context_window_size: ::Integer
|
|
1479
|
+
SENSITIVE: []
|
|
1480
|
+
end
|
|
1481
|
+
|
|
1329
1482
|
class SemanticConsolidationOverride
|
|
1330
1483
|
attr_accessor append_to_prompt: ::String
|
|
1331
1484
|
attr_accessor model_id: ::String
|
|
@@ -1394,13 +1547,15 @@ module Aws::BedrockAgentCoreControl
|
|
|
1394
1547
|
|
|
1395
1548
|
class SlackOauth2ProviderConfigOutput
|
|
1396
1549
|
attr_accessor oauth_discovery: Types::Oauth2Discovery
|
|
1550
|
+
attr_accessor client_id: ::String
|
|
1397
1551
|
SENSITIVE: []
|
|
1398
1552
|
end
|
|
1399
1553
|
|
|
1400
1554
|
class StrategyConfiguration
|
|
1401
|
-
attr_accessor type: ("SEMANTIC_OVERRIDE" | "SUMMARY_OVERRIDE" | "USER_PREFERENCE_OVERRIDE")
|
|
1555
|
+
attr_accessor type: ("SEMANTIC_OVERRIDE" | "SUMMARY_OVERRIDE" | "USER_PREFERENCE_OVERRIDE" | "SELF_MANAGED")
|
|
1402
1556
|
attr_accessor extraction: Types::ExtractionConfiguration
|
|
1403
1557
|
attr_accessor consolidation: Types::ConsolidationConfiguration
|
|
1558
|
+
attr_accessor self_managed_configuration: Types::SelfManagedConfiguration
|
|
1404
1559
|
SENSITIVE: []
|
|
1405
1560
|
end
|
|
1406
1561
|
|
|
@@ -1428,6 +1583,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
1428
1583
|
SENSITIVE: [:append_to_prompt]
|
|
1429
1584
|
end
|
|
1430
1585
|
|
|
1586
|
+
class SynchronizeGatewayTargetsRequest
|
|
1587
|
+
attr_accessor gateway_identifier: ::String
|
|
1588
|
+
attr_accessor target_id_list: ::Array[::String]
|
|
1589
|
+
SENSITIVE: []
|
|
1590
|
+
end
|
|
1591
|
+
|
|
1592
|
+
class SynchronizeGatewayTargetsResponse
|
|
1593
|
+
attr_accessor targets: ::Array[Types::GatewayTarget]
|
|
1594
|
+
SENSITIVE: []
|
|
1595
|
+
end
|
|
1596
|
+
|
|
1431
1597
|
class TagResourceRequest
|
|
1432
1598
|
attr_accessor resource_arn: ::String
|
|
1433
1599
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
@@ -1451,7 +1617,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1451
1617
|
class TargetSummary
|
|
1452
1618
|
attr_accessor target_id: ::String
|
|
1453
1619
|
attr_accessor name: ::String
|
|
1454
|
-
attr_accessor status: ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED")
|
|
1620
|
+
attr_accessor status: ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED" | "SYNCHRONIZING" | "SYNCHRONIZE_UNSUCCESSFUL")
|
|
1455
1621
|
attr_accessor description: ::String
|
|
1456
1622
|
attr_accessor created_at: ::Time
|
|
1457
1623
|
attr_accessor updated_at: ::Time
|
|
@@ -1468,6 +1634,26 @@ module Aws::BedrockAgentCoreControl
|
|
|
1468
1634
|
SENSITIVE: []
|
|
1469
1635
|
end
|
|
1470
1636
|
|
|
1637
|
+
class TimeBasedTrigger
|
|
1638
|
+
attr_accessor idle_session_timeout: ::Integer
|
|
1639
|
+
SENSITIVE: []
|
|
1640
|
+
end
|
|
1641
|
+
|
|
1642
|
+
class TimeBasedTriggerInput
|
|
1643
|
+
attr_accessor idle_session_timeout: ::Integer
|
|
1644
|
+
SENSITIVE: []
|
|
1645
|
+
end
|
|
1646
|
+
|
|
1647
|
+
class TokenBasedTrigger
|
|
1648
|
+
attr_accessor token_count: ::Integer
|
|
1649
|
+
SENSITIVE: []
|
|
1650
|
+
end
|
|
1651
|
+
|
|
1652
|
+
class TokenBasedTriggerInput
|
|
1653
|
+
attr_accessor token_count: ::Integer
|
|
1654
|
+
SENSITIVE: []
|
|
1655
|
+
end
|
|
1656
|
+
|
|
1471
1657
|
class ToolDefinition
|
|
1472
1658
|
attr_accessor name: ::String
|
|
1473
1659
|
attr_accessor description: ::String
|
|
@@ -1490,6 +1676,40 @@ module Aws::BedrockAgentCoreControl
|
|
|
1490
1676
|
end
|
|
1491
1677
|
end
|
|
1492
1678
|
|
|
1679
|
+
class TriggerCondition
|
|
1680
|
+
attr_accessor message_based_trigger: Types::MessageBasedTrigger
|
|
1681
|
+
attr_accessor token_based_trigger: Types::TokenBasedTrigger
|
|
1682
|
+
attr_accessor time_based_trigger: Types::TimeBasedTrigger
|
|
1683
|
+
attr_accessor unknown: untyped
|
|
1684
|
+
SENSITIVE: []
|
|
1685
|
+
|
|
1686
|
+
class MessageBasedTrigger < TriggerCondition
|
|
1687
|
+
end
|
|
1688
|
+
class TokenBasedTrigger < TriggerCondition
|
|
1689
|
+
end
|
|
1690
|
+
class TimeBasedTrigger < TriggerCondition
|
|
1691
|
+
end
|
|
1692
|
+
class Unknown < TriggerCondition
|
|
1693
|
+
end
|
|
1694
|
+
end
|
|
1695
|
+
|
|
1696
|
+
class TriggerConditionInput
|
|
1697
|
+
attr_accessor message_based_trigger: Types::MessageBasedTriggerInput
|
|
1698
|
+
attr_accessor token_based_trigger: Types::TokenBasedTriggerInput
|
|
1699
|
+
attr_accessor time_based_trigger: Types::TimeBasedTriggerInput
|
|
1700
|
+
attr_accessor unknown: untyped
|
|
1701
|
+
SENSITIVE: []
|
|
1702
|
+
|
|
1703
|
+
class MessageBasedTrigger < TriggerConditionInput
|
|
1704
|
+
end
|
|
1705
|
+
class TokenBasedTrigger < TriggerConditionInput
|
|
1706
|
+
end
|
|
1707
|
+
class TimeBasedTrigger < TriggerConditionInput
|
|
1708
|
+
end
|
|
1709
|
+
class Unknown < TriggerConditionInput
|
|
1710
|
+
end
|
|
1711
|
+
end
|
|
1712
|
+
|
|
1493
1713
|
class UnauthorizedException
|
|
1494
1714
|
attr_accessor message: ::String
|
|
1495
1715
|
SENSITIVE: []
|
|
@@ -1615,12 +1835,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
1615
1835
|
attr_accessor target_id: ::String
|
|
1616
1836
|
attr_accessor created_at: ::Time
|
|
1617
1837
|
attr_accessor updated_at: ::Time
|
|
1618
|
-
attr_accessor status: ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED")
|
|
1838
|
+
attr_accessor status: ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED" | "SYNCHRONIZING" | "SYNCHRONIZE_UNSUCCESSFUL")
|
|
1619
1839
|
attr_accessor status_reasons: ::Array[::String]
|
|
1620
1840
|
attr_accessor name: ::String
|
|
1621
1841
|
attr_accessor description: ::String
|
|
1622
1842
|
attr_accessor target_configuration: Types::TargetConfiguration
|
|
1623
1843
|
attr_accessor credential_provider_configurations: ::Array[Types::CredentialProviderConfiguration]
|
|
1844
|
+
attr_accessor last_synchronized_at: ::Time
|
|
1624
1845
|
SENSITIVE: [:name, :description]
|
|
1625
1846
|
end
|
|
1626
1847
|
|
|
@@ -1641,7 +1862,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1641
1862
|
|
|
1642
1863
|
class UpdateOauth2CredentialProviderRequest
|
|
1643
1864
|
attr_accessor name: ::String
|
|
1644
|
-
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")
|
|
1645
1866
|
attr_accessor oauth2_provider_config_input: Types::Oauth2ProviderConfigInput
|
|
1646
1867
|
SENSITIVE: []
|
|
1647
1868
|
end
|
|
@@ -1649,8 +1870,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
1649
1870
|
class UpdateOauth2CredentialProviderResponse
|
|
1650
1871
|
attr_accessor client_secret_arn: Types::Secret
|
|
1651
1872
|
attr_accessor name: ::String
|
|
1652
|
-
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")
|
|
1653
1874
|
attr_accessor credential_provider_arn: ::String
|
|
1875
|
+
attr_accessor callback_url: ::String
|
|
1654
1876
|
attr_accessor oauth2_provider_config_output: Types::Oauth2ProviderConfigOutput
|
|
1655
1877
|
attr_accessor created_time: ::Time
|
|
1656
1878
|
attr_accessor last_updated_time: ::Time
|