aws-sdk-bedrockagentcorecontrol 1.7.0 → 1.9.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 +213 -31
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +155 -4
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +451 -12
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +93 -13
- data/sig/types.rbs +157 -12
- metadata +1 -1
data/sig/client.rbs
CHANGED
@@ -228,7 +228,7 @@ module Aws
|
|
228
228
|
def role_arn: () -> ::String
|
229
229
|
def protocol_type: () -> ("MCP")
|
230
230
|
def protocol_configuration: () -> Types::GatewayProtocolConfiguration
|
231
|
-
def authorizer_type: () -> ("CUSTOM_JWT")
|
231
|
+
def authorizer_type: () -> ("CUSTOM_JWT" | "AWS_IAM")
|
232
232
|
def authorizer_configuration: () -> Types::AuthorizerConfiguration
|
233
233
|
def kms_key_arn: () -> ::String
|
234
234
|
def workload_identity_details: () -> Types::WorkloadIdentityDetails
|
@@ -248,8 +248,8 @@ module Aws
|
|
248
248
|
search_type: ("SEMANTIC")?
|
249
249
|
}?
|
250
250
|
},
|
251
|
-
authorizer_type: ("CUSTOM_JWT"),
|
252
|
-
authorizer_configuration: {
|
251
|
+
authorizer_type: ("CUSTOM_JWT" | "AWS_IAM"),
|
252
|
+
?authorizer_configuration: {
|
253
253
|
custom_jwt_authorizer: {
|
254
254
|
discovery_url: ::String,
|
255
255
|
allowed_audience: Array[::String]?,
|
@@ -268,12 +268,13 @@ module Aws
|
|
268
268
|
def target_id: () -> ::String
|
269
269
|
def created_at: () -> ::Time
|
270
270
|
def updated_at: () -> ::Time
|
271
|
-
def status: () -> ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED")
|
271
|
+
def status: () -> ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED" | "SYNCHRONIZING" | "SYNCHRONIZE_UNSUCCESSFUL")
|
272
272
|
def status_reasons: () -> ::Array[::String]
|
273
273
|
def name: () -> ::String
|
274
274
|
def description: () -> ::String
|
275
275
|
def target_configuration: () -> Types::TargetConfiguration
|
276
276
|
def credential_provider_configurations: () -> ::Array[Types::CredentialProviderConfiguration]
|
277
|
+
def last_synchronized_at: () -> ::Time
|
277
278
|
end
|
278
279
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_gateway_target-instance_method
|
279
280
|
def create_gateway_target: (
|
@@ -325,10 +326,13 @@ module Aws
|
|
325
326
|
},
|
326
327
|
]?
|
327
328
|
}
|
329
|
+
}?,
|
330
|
+
mcp_server: {
|
331
|
+
endpoint: ::String
|
328
332
|
}?
|
329
333
|
}?
|
330
334
|
},
|
331
|
-
credential_provider_configurations: Array[
|
335
|
+
?credential_provider_configurations: Array[
|
332
336
|
{
|
333
337
|
credential_provider_type: ("GATEWAY_IAM_ROLE" | "OAUTH" | "API_KEY"),
|
334
338
|
credential_provider: {
|
@@ -408,6 +412,26 @@ module Aws
|
|
408
412
|
append_to_prompt: ::String,
|
409
413
|
model_id: ::String
|
410
414
|
}?
|
415
|
+
}?,
|
416
|
+
self_managed_configuration: {
|
417
|
+
trigger_conditions: Array[
|
418
|
+
{
|
419
|
+
message_based_trigger: {
|
420
|
+
message_count: ::Integer?
|
421
|
+
}?,
|
422
|
+
token_based_trigger: {
|
423
|
+
token_count: ::Integer?
|
424
|
+
}?,
|
425
|
+
time_based_trigger: {
|
426
|
+
idle_session_timeout: ::Integer?
|
427
|
+
}?
|
428
|
+
},
|
429
|
+
]?,
|
430
|
+
invocation_configuration: {
|
431
|
+
topic_arn: ::String,
|
432
|
+
payload_delivery_bucket_name: ::String
|
433
|
+
},
|
434
|
+
historical_context_window_size: ::Integer?
|
411
435
|
}?
|
412
436
|
}?
|
413
437
|
}?
|
@@ -551,7 +575,7 @@ module Aws
|
|
551
575
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteGatewayTargetResponse]
|
552
576
|
def gateway_arn: () -> ::String
|
553
577
|
def target_id: () -> ::String
|
554
|
-
def status: () -> ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED")
|
578
|
+
def status: () -> ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED" | "SYNCHRONIZING" | "SYNCHRONIZE_UNSUCCESSFUL")
|
555
579
|
def status_reasons: () -> ::Array[::String]
|
556
580
|
end
|
557
581
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_gateway_target-instance_method
|
@@ -706,7 +730,7 @@ module Aws
|
|
706
730
|
def role_arn: () -> ::String
|
707
731
|
def protocol_type: () -> ("MCP")
|
708
732
|
def protocol_configuration: () -> Types::GatewayProtocolConfiguration
|
709
|
-
def authorizer_type: () -> ("CUSTOM_JWT")
|
733
|
+
def authorizer_type: () -> ("CUSTOM_JWT" | "AWS_IAM")
|
710
734
|
def authorizer_configuration: () -> Types::AuthorizerConfiguration
|
711
735
|
def kms_key_arn: () -> ::String
|
712
736
|
def workload_identity_details: () -> Types::WorkloadIdentityDetails
|
@@ -724,12 +748,13 @@ module Aws
|
|
724
748
|
def target_id: () -> ::String
|
725
749
|
def created_at: () -> ::Time
|
726
750
|
def updated_at: () -> ::Time
|
727
|
-
def status: () -> ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED")
|
751
|
+
def status: () -> ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED" | "SYNCHRONIZING" | "SYNCHRONIZE_UNSUCCESSFUL")
|
728
752
|
def status_reasons: () -> ::Array[::String]
|
729
753
|
def name: () -> ::String
|
730
754
|
def description: () -> ::String
|
731
755
|
def target_configuration: () -> Types::TargetConfiguration
|
732
756
|
def credential_provider_configurations: () -> ::Array[Types::CredentialProviderConfiguration]
|
757
|
+
def last_synchronized_at: () -> ::Time
|
733
758
|
end
|
734
759
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_gateway_target-instance_method
|
735
760
|
def get_gateway_target: (
|
@@ -953,6 +978,17 @@ module Aws
|
|
953
978
|
) -> _SetTokenVaultCMKResponseSuccess
|
954
979
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SetTokenVaultCMKResponseSuccess
|
955
980
|
|
981
|
+
interface _SynchronizeGatewayTargetsResponseSuccess
|
982
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SynchronizeGatewayTargetsResponse]
|
983
|
+
def targets: () -> ::Array[Types::GatewayTarget]
|
984
|
+
end
|
985
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#synchronize_gateway_targets-instance_method
|
986
|
+
def synchronize_gateway_targets: (
|
987
|
+
gateway_identifier: ::String,
|
988
|
+
target_id_list: Array[::String]
|
989
|
+
) -> _SynchronizeGatewayTargetsResponseSuccess
|
990
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SynchronizeGatewayTargetsResponseSuccess
|
991
|
+
|
956
992
|
interface _TagResourceResponseSuccess
|
957
993
|
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
958
994
|
end
|
@@ -1071,7 +1107,7 @@ module Aws
|
|
1071
1107
|
def role_arn: () -> ::String
|
1072
1108
|
def protocol_type: () -> ("MCP")
|
1073
1109
|
def protocol_configuration: () -> Types::GatewayProtocolConfiguration
|
1074
|
-
def authorizer_type: () -> ("CUSTOM_JWT")
|
1110
|
+
def authorizer_type: () -> ("CUSTOM_JWT" | "AWS_IAM")
|
1075
1111
|
def authorizer_configuration: () -> Types::AuthorizerConfiguration
|
1076
1112
|
def kms_key_arn: () -> ::String
|
1077
1113
|
def workload_identity_details: () -> Types::WorkloadIdentityDetails
|
@@ -1091,8 +1127,8 @@ module Aws
|
|
1091
1127
|
search_type: ("SEMANTIC")?
|
1092
1128
|
}?
|
1093
1129
|
},
|
1094
|
-
authorizer_type: ("CUSTOM_JWT"),
|
1095
|
-
authorizer_configuration: {
|
1130
|
+
authorizer_type: ("CUSTOM_JWT" | "AWS_IAM"),
|
1131
|
+
?authorizer_configuration: {
|
1096
1132
|
custom_jwt_authorizer: {
|
1097
1133
|
discovery_url: ::String,
|
1098
1134
|
allowed_audience: Array[::String]?,
|
@@ -1110,12 +1146,13 @@ module Aws
|
|
1110
1146
|
def target_id: () -> ::String
|
1111
1147
|
def created_at: () -> ::Time
|
1112
1148
|
def updated_at: () -> ::Time
|
1113
|
-
def status: () -> ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED")
|
1149
|
+
def status: () -> ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED" | "SYNCHRONIZING" | "SYNCHRONIZE_UNSUCCESSFUL")
|
1114
1150
|
def status_reasons: () -> ::Array[::String]
|
1115
1151
|
def name: () -> ::String
|
1116
1152
|
def description: () -> ::String
|
1117
1153
|
def target_configuration: () -> Types::TargetConfiguration
|
1118
1154
|
def credential_provider_configurations: () -> ::Array[Types::CredentialProviderConfiguration]
|
1155
|
+
def last_synchronized_at: () -> ::Time
|
1119
1156
|
end
|
1120
1157
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_gateway_target-instance_method
|
1121
1158
|
def update_gateway_target: (
|
@@ -1167,10 +1204,13 @@ module Aws
|
|
1167
1204
|
},
|
1168
1205
|
]?
|
1169
1206
|
}
|
1207
|
+
}?,
|
1208
|
+
mcp_server: {
|
1209
|
+
endpoint: ::String
|
1170
1210
|
}?
|
1171
1211
|
}?
|
1172
1212
|
},
|
1173
|
-
credential_provider_configurations: Array[
|
1213
|
+
?credential_provider_configurations: Array[
|
1174
1214
|
{
|
1175
1215
|
credential_provider_type: ("GATEWAY_IAM_ROLE" | "OAUTH" | "API_KEY"),
|
1176
1216
|
credential_provider: {
|
@@ -1250,6 +1290,26 @@ module Aws
|
|
1250
1290
|
append_to_prompt: ::String,
|
1251
1291
|
model_id: ::String
|
1252
1292
|
}?
|
1293
|
+
}?,
|
1294
|
+
self_managed_configuration: {
|
1295
|
+
trigger_conditions: Array[
|
1296
|
+
{
|
1297
|
+
message_based_trigger: {
|
1298
|
+
message_count: ::Integer?
|
1299
|
+
}?,
|
1300
|
+
token_based_trigger: {
|
1301
|
+
token_count: ::Integer?
|
1302
|
+
}?,
|
1303
|
+
time_based_trigger: {
|
1304
|
+
idle_session_timeout: ::Integer?
|
1305
|
+
}?
|
1306
|
+
},
|
1307
|
+
]?,
|
1308
|
+
invocation_configuration: {
|
1309
|
+
topic_arn: ::String,
|
1310
|
+
payload_delivery_bucket_name: ::String
|
1311
|
+
},
|
1312
|
+
historical_context_window_size: ::Integer?
|
1253
1313
|
}?
|
1254
1314
|
}?
|
1255
1315
|
}?
|
@@ -1288,6 +1348,26 @@ module Aws
|
|
1288
1348
|
model_id: ::String
|
1289
1349
|
}?
|
1290
1350
|
}?
|
1351
|
+
}?,
|
1352
|
+
self_managed_configuration: {
|
1353
|
+
trigger_conditions: Array[
|
1354
|
+
{
|
1355
|
+
message_based_trigger: {
|
1356
|
+
message_count: ::Integer?
|
1357
|
+
}?,
|
1358
|
+
token_based_trigger: {
|
1359
|
+
token_count: ::Integer?
|
1360
|
+
}?,
|
1361
|
+
time_based_trigger: {
|
1362
|
+
idle_session_timeout: ::Integer?
|
1363
|
+
}?
|
1364
|
+
},
|
1365
|
+
]?,
|
1366
|
+
invocation_configuration: {
|
1367
|
+
topic_arn: ::String?,
|
1368
|
+
payload_delivery_bucket_name: ::String?
|
1369
|
+
}?,
|
1370
|
+
historical_context_window_size: ::Integer?
|
1291
1371
|
}?
|
1292
1372
|
}?
|
1293
1373
|
},
|
data/sig/types.rbs
CHANGED
@@ -252,7 +252,7 @@ module Aws::BedrockAgentCoreControl
|
|
252
252
|
attr_accessor role_arn: ::String
|
253
253
|
attr_accessor protocol_type: ("MCP")
|
254
254
|
attr_accessor protocol_configuration: Types::GatewayProtocolConfiguration
|
255
|
-
attr_accessor authorizer_type: ("CUSTOM_JWT")
|
255
|
+
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM")
|
256
256
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
257
257
|
attr_accessor kms_key_arn: ::String
|
258
258
|
attr_accessor exception_level: ("DEBUG")
|
@@ -273,7 +273,7 @@ module Aws::BedrockAgentCoreControl
|
|
273
273
|
attr_accessor role_arn: ::String
|
274
274
|
attr_accessor protocol_type: ("MCP")
|
275
275
|
attr_accessor protocol_configuration: Types::GatewayProtocolConfiguration
|
276
|
-
attr_accessor authorizer_type: ("CUSTOM_JWT")
|
276
|
+
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM")
|
277
277
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
278
278
|
attr_accessor kms_key_arn: ::String
|
279
279
|
attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
|
@@ -296,12 +296,13 @@ module Aws::BedrockAgentCoreControl
|
|
296
296
|
attr_accessor target_id: ::String
|
297
297
|
attr_accessor created_at: ::Time
|
298
298
|
attr_accessor updated_at: ::Time
|
299
|
-
attr_accessor status: ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED")
|
299
|
+
attr_accessor status: ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED" | "SYNCHRONIZING" | "SYNCHRONIZE_UNSUCCESSFUL")
|
300
300
|
attr_accessor status_reasons: ::Array[::String]
|
301
301
|
attr_accessor name: ::String
|
302
302
|
attr_accessor description: ::String
|
303
303
|
attr_accessor target_configuration: Types::TargetConfiguration
|
304
304
|
attr_accessor credential_provider_configurations: ::Array[Types::CredentialProviderConfiguration]
|
305
|
+
attr_accessor last_synchronized_at: ::Time
|
305
306
|
SENSITIVE: [:name, :description]
|
306
307
|
end
|
307
308
|
|
@@ -373,6 +374,7 @@ module Aws::BedrockAgentCoreControl
|
|
373
374
|
attr_accessor semantic_override: Types::SemanticOverrideConfigurationInput
|
374
375
|
attr_accessor summary_override: Types::SummaryOverrideConfigurationInput
|
375
376
|
attr_accessor user_preference_override: Types::UserPreferenceOverrideConfigurationInput
|
377
|
+
attr_accessor self_managed_configuration: Types::SelfManagedConfigurationInput
|
376
378
|
attr_accessor unknown: untyped
|
377
379
|
SENSITIVE: []
|
378
380
|
|
@@ -382,6 +384,8 @@ module Aws::BedrockAgentCoreControl
|
|
382
384
|
end
|
383
385
|
class UserPreferenceOverride < CustomConfigurationInput
|
384
386
|
end
|
387
|
+
class SelfManagedConfiguration < CustomConfigurationInput
|
388
|
+
end
|
385
389
|
class Unknown < CustomConfigurationInput
|
386
390
|
end
|
387
391
|
end
|
@@ -557,7 +561,7 @@ module Aws::BedrockAgentCoreControl
|
|
557
561
|
class DeleteGatewayTargetResponse
|
558
562
|
attr_accessor gateway_arn: ::String
|
559
563
|
attr_accessor target_id: ::String
|
560
|
-
attr_accessor status: ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED")
|
564
|
+
attr_accessor status: ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED" | "SYNCHRONIZING" | "SYNCHRONIZE_UNSUCCESSFUL")
|
561
565
|
attr_accessor status_reasons: ::Array[::String]
|
562
566
|
SENSITIVE: []
|
563
567
|
end
|
@@ -629,11 +633,26 @@ module Aws::BedrockAgentCoreControl
|
|
629
633
|
attr_accessor description: ::String
|
630
634
|
attr_accessor created_at: ::Time
|
631
635
|
attr_accessor updated_at: ::Time
|
632
|
-
attr_accessor authorizer_type: ("CUSTOM_JWT")
|
636
|
+
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM")
|
633
637
|
attr_accessor protocol_type: ("MCP")
|
634
638
|
SENSITIVE: [:name, :description]
|
635
639
|
end
|
636
640
|
|
641
|
+
class GatewayTarget
|
642
|
+
attr_accessor gateway_arn: ::String
|
643
|
+
attr_accessor target_id: ::String
|
644
|
+
attr_accessor created_at: ::Time
|
645
|
+
attr_accessor updated_at: ::Time
|
646
|
+
attr_accessor status: ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED" | "SYNCHRONIZING" | "SYNCHRONIZE_UNSUCCESSFUL")
|
647
|
+
attr_accessor status_reasons: ::Array[::String]
|
648
|
+
attr_accessor name: ::String
|
649
|
+
attr_accessor description: ::String
|
650
|
+
attr_accessor target_configuration: Types::TargetConfiguration
|
651
|
+
attr_accessor credential_provider_configurations: ::Array[Types::CredentialProviderConfiguration]
|
652
|
+
attr_accessor last_synchronized_at: ::Time
|
653
|
+
SENSITIVE: [:name, :description]
|
654
|
+
end
|
655
|
+
|
637
656
|
class GetAgentRuntimeEndpointRequest
|
638
657
|
attr_accessor agent_runtime_id: ::String
|
639
658
|
attr_accessor endpoint_name: ::String
|
@@ -753,7 +772,7 @@ module Aws::BedrockAgentCoreControl
|
|
753
772
|
attr_accessor role_arn: ::String
|
754
773
|
attr_accessor protocol_type: ("MCP")
|
755
774
|
attr_accessor protocol_configuration: Types::GatewayProtocolConfiguration
|
756
|
-
attr_accessor authorizer_type: ("CUSTOM_JWT")
|
775
|
+
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM")
|
757
776
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
758
777
|
attr_accessor kms_key_arn: ::String
|
759
778
|
attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
|
@@ -772,12 +791,13 @@ module Aws::BedrockAgentCoreControl
|
|
772
791
|
attr_accessor target_id: ::String
|
773
792
|
attr_accessor created_at: ::Time
|
774
793
|
attr_accessor updated_at: ::Time
|
775
|
-
attr_accessor status: ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED")
|
794
|
+
attr_accessor status: ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED" | "SYNCHRONIZING" | "SYNCHRONIZE_UNSUCCESSFUL")
|
776
795
|
attr_accessor status_reasons: ::Array[::String]
|
777
796
|
attr_accessor name: ::String
|
778
797
|
attr_accessor description: ::String
|
779
798
|
attr_accessor target_configuration: Types::TargetConfiguration
|
780
799
|
attr_accessor credential_provider_configurations: ::Array[Types::CredentialProviderConfiguration]
|
800
|
+
attr_accessor last_synchronized_at: ::Time
|
781
801
|
SENSITIVE: [:name, :description]
|
782
802
|
end
|
783
803
|
|
@@ -860,6 +880,18 @@ module Aws::BedrockAgentCoreControl
|
|
860
880
|
SENSITIVE: []
|
861
881
|
end
|
862
882
|
|
883
|
+
class InvocationConfiguration
|
884
|
+
attr_accessor topic_arn: ::String
|
885
|
+
attr_accessor payload_delivery_bucket_name: ::String
|
886
|
+
SENSITIVE: []
|
887
|
+
end
|
888
|
+
|
889
|
+
class InvocationConfigurationInput
|
890
|
+
attr_accessor topic_arn: ::String
|
891
|
+
attr_accessor payload_delivery_bucket_name: ::String
|
892
|
+
SENSITIVE: []
|
893
|
+
end
|
894
|
+
|
863
895
|
class KmsConfiguration
|
864
896
|
attr_accessor key_type: ("CustomerManagedKey" | "ServiceManagedKey")
|
865
897
|
attr_accessor kms_key_arn: ::String
|
@@ -1032,10 +1064,16 @@ module Aws::BedrockAgentCoreControl
|
|
1032
1064
|
SENSITIVE: []
|
1033
1065
|
end
|
1034
1066
|
|
1067
|
+
class McpServerTargetConfiguration
|
1068
|
+
attr_accessor endpoint: ::String
|
1069
|
+
SENSITIVE: []
|
1070
|
+
end
|
1071
|
+
|
1035
1072
|
class McpTargetConfiguration
|
1036
1073
|
attr_accessor open_api_schema: Types::ApiSchemaConfiguration
|
1037
1074
|
attr_accessor smithy_model: Types::ApiSchemaConfiguration
|
1038
1075
|
attr_accessor lambda: Types::McpLambdaTargetConfiguration
|
1076
|
+
attr_accessor mcp_server: Types::McpServerTargetConfiguration
|
1039
1077
|
attr_accessor unknown: untyped
|
1040
1078
|
SENSITIVE: []
|
1041
1079
|
|
@@ -1045,6 +1083,8 @@ module Aws::BedrockAgentCoreControl
|
|
1045
1083
|
end
|
1046
1084
|
class Lambda < McpTargetConfiguration
|
1047
1085
|
end
|
1086
|
+
class McpServer < McpTargetConfiguration
|
1087
|
+
end
|
1048
1088
|
class Unknown < McpTargetConfiguration
|
1049
1089
|
end
|
1050
1090
|
end
|
@@ -1107,6 +1147,16 @@ module Aws::BedrockAgentCoreControl
|
|
1107
1147
|
SENSITIVE: []
|
1108
1148
|
end
|
1109
1149
|
|
1150
|
+
class MessageBasedTrigger
|
1151
|
+
attr_accessor message_count: ::Integer
|
1152
|
+
SENSITIVE: []
|
1153
|
+
end
|
1154
|
+
|
1155
|
+
class MessageBasedTriggerInput
|
1156
|
+
attr_accessor message_count: ::Integer
|
1157
|
+
SENSITIVE: []
|
1158
|
+
end
|
1159
|
+
|
1110
1160
|
class MicrosoftOauth2ProviderConfigInput
|
1111
1161
|
attr_accessor client_id: ::String
|
1112
1162
|
attr_accessor client_secret: ::String
|
@@ -1140,6 +1190,12 @@ module Aws::BedrockAgentCoreControl
|
|
1140
1190
|
end
|
1141
1191
|
end
|
1142
1192
|
|
1193
|
+
class ModifyInvocationConfigurationInput
|
1194
|
+
attr_accessor topic_arn: ::String
|
1195
|
+
attr_accessor payload_delivery_bucket_name: ::String
|
1196
|
+
SENSITIVE: []
|
1197
|
+
end
|
1198
|
+
|
1143
1199
|
class ModifyMemoryStrategies
|
1144
1200
|
attr_accessor add_memory_strategies: ::Array[Types::MemoryStrategyInput]
|
1145
1201
|
attr_accessor modify_memory_strategies: ::Array[Types::ModifyMemoryStrategyInput]
|
@@ -1155,9 +1211,17 @@ module Aws::BedrockAgentCoreControl
|
|
1155
1211
|
SENSITIVE: [:description]
|
1156
1212
|
end
|
1157
1213
|
|
1214
|
+
class ModifySelfManagedConfiguration
|
1215
|
+
attr_accessor trigger_conditions: ::Array[Types::TriggerConditionInput]
|
1216
|
+
attr_accessor invocation_configuration: Types::ModifyInvocationConfigurationInput
|
1217
|
+
attr_accessor historical_context_window_size: ::Integer
|
1218
|
+
SENSITIVE: []
|
1219
|
+
end
|
1220
|
+
|
1158
1221
|
class ModifyStrategyConfiguration
|
1159
1222
|
attr_accessor extraction: Types::ModifyExtractionConfiguration
|
1160
1223
|
attr_accessor consolidation: Types::ModifyConsolidationConfiguration
|
1224
|
+
attr_accessor self_managed_configuration: Types::ModifySelfManagedConfiguration
|
1161
1225
|
SENSITIVE: []
|
1162
1226
|
end
|
1163
1227
|
|
@@ -1326,6 +1390,20 @@ module Aws::BedrockAgentCoreControl
|
|
1326
1390
|
SENSITIVE: []
|
1327
1391
|
end
|
1328
1392
|
|
1393
|
+
class SelfManagedConfiguration
|
1394
|
+
attr_accessor trigger_conditions: ::Array[Types::TriggerCondition]
|
1395
|
+
attr_accessor invocation_configuration: Types::InvocationConfiguration
|
1396
|
+
attr_accessor historical_context_window_size: ::Integer
|
1397
|
+
SENSITIVE: []
|
1398
|
+
end
|
1399
|
+
|
1400
|
+
class SelfManagedConfigurationInput
|
1401
|
+
attr_accessor trigger_conditions: ::Array[Types::TriggerConditionInput]
|
1402
|
+
attr_accessor invocation_configuration: Types::InvocationConfigurationInput
|
1403
|
+
attr_accessor historical_context_window_size: ::Integer
|
1404
|
+
SENSITIVE: []
|
1405
|
+
end
|
1406
|
+
|
1329
1407
|
class SemanticConsolidationOverride
|
1330
1408
|
attr_accessor append_to_prompt: ::String
|
1331
1409
|
attr_accessor model_id: ::String
|
@@ -1398,9 +1476,10 @@ module Aws::BedrockAgentCoreControl
|
|
1398
1476
|
end
|
1399
1477
|
|
1400
1478
|
class StrategyConfiguration
|
1401
|
-
attr_accessor type: ("SEMANTIC_OVERRIDE" | "SUMMARY_OVERRIDE" | "USER_PREFERENCE_OVERRIDE")
|
1479
|
+
attr_accessor type: ("SEMANTIC_OVERRIDE" | "SUMMARY_OVERRIDE" | "USER_PREFERENCE_OVERRIDE" | "SELF_MANAGED")
|
1402
1480
|
attr_accessor extraction: Types::ExtractionConfiguration
|
1403
1481
|
attr_accessor consolidation: Types::ConsolidationConfiguration
|
1482
|
+
attr_accessor self_managed_configuration: Types::SelfManagedConfiguration
|
1404
1483
|
SENSITIVE: []
|
1405
1484
|
end
|
1406
1485
|
|
@@ -1428,6 +1507,17 @@ module Aws::BedrockAgentCoreControl
|
|
1428
1507
|
SENSITIVE: [:append_to_prompt]
|
1429
1508
|
end
|
1430
1509
|
|
1510
|
+
class SynchronizeGatewayTargetsRequest
|
1511
|
+
attr_accessor gateway_identifier: ::String
|
1512
|
+
attr_accessor target_id_list: ::Array[::String]
|
1513
|
+
SENSITIVE: []
|
1514
|
+
end
|
1515
|
+
|
1516
|
+
class SynchronizeGatewayTargetsResponse
|
1517
|
+
attr_accessor targets: ::Array[Types::GatewayTarget]
|
1518
|
+
SENSITIVE: []
|
1519
|
+
end
|
1520
|
+
|
1431
1521
|
class TagResourceRequest
|
1432
1522
|
attr_accessor resource_arn: ::String
|
1433
1523
|
attr_accessor tags: ::Hash[::String, ::String]
|
@@ -1451,7 +1541,7 @@ module Aws::BedrockAgentCoreControl
|
|
1451
1541
|
class TargetSummary
|
1452
1542
|
attr_accessor target_id: ::String
|
1453
1543
|
attr_accessor name: ::String
|
1454
|
-
attr_accessor status: ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED")
|
1544
|
+
attr_accessor status: ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED" | "SYNCHRONIZING" | "SYNCHRONIZE_UNSUCCESSFUL")
|
1455
1545
|
attr_accessor description: ::String
|
1456
1546
|
attr_accessor created_at: ::Time
|
1457
1547
|
attr_accessor updated_at: ::Time
|
@@ -1468,6 +1558,26 @@ module Aws::BedrockAgentCoreControl
|
|
1468
1558
|
SENSITIVE: []
|
1469
1559
|
end
|
1470
1560
|
|
1561
|
+
class TimeBasedTrigger
|
1562
|
+
attr_accessor idle_session_timeout: ::Integer
|
1563
|
+
SENSITIVE: []
|
1564
|
+
end
|
1565
|
+
|
1566
|
+
class TimeBasedTriggerInput
|
1567
|
+
attr_accessor idle_session_timeout: ::Integer
|
1568
|
+
SENSITIVE: []
|
1569
|
+
end
|
1570
|
+
|
1571
|
+
class TokenBasedTrigger
|
1572
|
+
attr_accessor token_count: ::Integer
|
1573
|
+
SENSITIVE: []
|
1574
|
+
end
|
1575
|
+
|
1576
|
+
class TokenBasedTriggerInput
|
1577
|
+
attr_accessor token_count: ::Integer
|
1578
|
+
SENSITIVE: []
|
1579
|
+
end
|
1580
|
+
|
1471
1581
|
class ToolDefinition
|
1472
1582
|
attr_accessor name: ::String
|
1473
1583
|
attr_accessor description: ::String
|
@@ -1490,6 +1600,40 @@ module Aws::BedrockAgentCoreControl
|
|
1490
1600
|
end
|
1491
1601
|
end
|
1492
1602
|
|
1603
|
+
class TriggerCondition
|
1604
|
+
attr_accessor message_based_trigger: Types::MessageBasedTrigger
|
1605
|
+
attr_accessor token_based_trigger: Types::TokenBasedTrigger
|
1606
|
+
attr_accessor time_based_trigger: Types::TimeBasedTrigger
|
1607
|
+
attr_accessor unknown: untyped
|
1608
|
+
SENSITIVE: []
|
1609
|
+
|
1610
|
+
class MessageBasedTrigger < TriggerCondition
|
1611
|
+
end
|
1612
|
+
class TokenBasedTrigger < TriggerCondition
|
1613
|
+
end
|
1614
|
+
class TimeBasedTrigger < TriggerCondition
|
1615
|
+
end
|
1616
|
+
class Unknown < TriggerCondition
|
1617
|
+
end
|
1618
|
+
end
|
1619
|
+
|
1620
|
+
class TriggerConditionInput
|
1621
|
+
attr_accessor message_based_trigger: Types::MessageBasedTriggerInput
|
1622
|
+
attr_accessor token_based_trigger: Types::TokenBasedTriggerInput
|
1623
|
+
attr_accessor time_based_trigger: Types::TimeBasedTriggerInput
|
1624
|
+
attr_accessor unknown: untyped
|
1625
|
+
SENSITIVE: []
|
1626
|
+
|
1627
|
+
class MessageBasedTrigger < TriggerConditionInput
|
1628
|
+
end
|
1629
|
+
class TokenBasedTrigger < TriggerConditionInput
|
1630
|
+
end
|
1631
|
+
class TimeBasedTrigger < TriggerConditionInput
|
1632
|
+
end
|
1633
|
+
class Unknown < TriggerConditionInput
|
1634
|
+
end
|
1635
|
+
end
|
1636
|
+
|
1493
1637
|
class UnauthorizedException
|
1494
1638
|
attr_accessor message: ::String
|
1495
1639
|
SENSITIVE: []
|
@@ -1572,7 +1716,7 @@ module Aws::BedrockAgentCoreControl
|
|
1572
1716
|
attr_accessor role_arn: ::String
|
1573
1717
|
attr_accessor protocol_type: ("MCP")
|
1574
1718
|
attr_accessor protocol_configuration: Types::GatewayProtocolConfiguration
|
1575
|
-
attr_accessor authorizer_type: ("CUSTOM_JWT")
|
1719
|
+
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM")
|
1576
1720
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
1577
1721
|
attr_accessor kms_key_arn: ::String
|
1578
1722
|
attr_accessor exception_level: ("DEBUG")
|
@@ -1592,7 +1736,7 @@ module Aws::BedrockAgentCoreControl
|
|
1592
1736
|
attr_accessor role_arn: ::String
|
1593
1737
|
attr_accessor protocol_type: ("MCP")
|
1594
1738
|
attr_accessor protocol_configuration: Types::GatewayProtocolConfiguration
|
1595
|
-
attr_accessor authorizer_type: ("CUSTOM_JWT")
|
1739
|
+
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM")
|
1596
1740
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
1597
1741
|
attr_accessor kms_key_arn: ::String
|
1598
1742
|
attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
|
@@ -1615,12 +1759,13 @@ module Aws::BedrockAgentCoreControl
|
|
1615
1759
|
attr_accessor target_id: ::String
|
1616
1760
|
attr_accessor created_at: ::Time
|
1617
1761
|
attr_accessor updated_at: ::Time
|
1618
|
-
attr_accessor status: ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED")
|
1762
|
+
attr_accessor status: ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED" | "SYNCHRONIZING" | "SYNCHRONIZE_UNSUCCESSFUL")
|
1619
1763
|
attr_accessor status_reasons: ::Array[::String]
|
1620
1764
|
attr_accessor name: ::String
|
1621
1765
|
attr_accessor description: ::String
|
1622
1766
|
attr_accessor target_configuration: Types::TargetConfiguration
|
1623
1767
|
attr_accessor credential_provider_configurations: ::Array[Types::CredentialProviderConfiguration]
|
1768
|
+
attr_accessor last_synchronized_at: ::Time
|
1624
1769
|
SENSITIVE: [:name, :description]
|
1625
1770
|
end
|
1626
1771
|
|