aws-sdk-bedrockagentcorecontrol 1.41.0 → 1.43.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 +662 -17
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +122 -2
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +401 -17
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +523 -24
- data/sig/types.rbs +113 -1
- metadata +1 -1
data/sig/types.rbs
CHANGED
|
@@ -724,6 +724,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
724
724
|
attr_accessor memory_execution_role_arn: ::String
|
|
725
725
|
attr_accessor event_expiry_duration: ::Integer
|
|
726
726
|
attr_accessor memory_strategies: ::Array[Types::MemoryStrategyInput]
|
|
727
|
+
attr_accessor indexed_keys: ::Array[Types::IndexedKey]
|
|
727
728
|
attr_accessor stream_delivery_resources: Types::StreamDeliveryResources
|
|
728
729
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
729
730
|
SENSITIVE: [:description]
|
|
@@ -1019,6 +1020,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1019
1020
|
attr_accessor namespaces: ::Array[::String]
|
|
1020
1021
|
attr_accessor namespace_templates: ::Array[::String]
|
|
1021
1022
|
attr_accessor configuration: Types::CustomConfigurationInput
|
|
1023
|
+
attr_accessor memory_record_schema: Types::MemoryRecordSchema
|
|
1022
1024
|
SENSITIVE: [:description]
|
|
1023
1025
|
end
|
|
1024
1026
|
|
|
@@ -1028,6 +1030,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
1028
1030
|
attr_accessor client_secret: ::String
|
|
1029
1031
|
attr_accessor private_endpoint: Types::PrivateEndpoint
|
|
1030
1032
|
attr_accessor private_endpoint_overrides: ::Array[Types::PrivateEndpointOverride]
|
|
1033
|
+
attr_accessor on_behalf_of_token_exchange_config: Types::OnBehalfOfTokenExchangeConfigType
|
|
1034
|
+
attr_accessor client_authentication_method: ("CLIENT_SECRET_BASIC" | "CLIENT_SECRET_POST" | "AWS_IAM_ID_TOKEN_JWT")
|
|
1031
1035
|
SENSITIVE: [:client_secret]
|
|
1032
1036
|
end
|
|
1033
1037
|
|
|
@@ -1036,6 +1040,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
1036
1040
|
attr_accessor client_id: ::String
|
|
1037
1041
|
attr_accessor private_endpoint: Types::PrivateEndpoint
|
|
1038
1042
|
attr_accessor private_endpoint_overrides: ::Array[Types::PrivateEndpointOverride]
|
|
1043
|
+
attr_accessor on_behalf_of_token_exchange_config: Types::OnBehalfOfTokenExchangeConfigType
|
|
1044
|
+
attr_accessor client_authentication_method: ("CLIENT_SECRET_BASIC" | "CLIENT_SECRET_POST" | "AWS_IAM_ID_TOKEN_JWT")
|
|
1039
1045
|
SENSITIVE: []
|
|
1040
1046
|
end
|
|
1041
1047
|
|
|
@@ -1365,6 +1371,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1365
1371
|
attr_accessor namespaces: ::Array[::String]
|
|
1366
1372
|
attr_accessor namespace_templates: ::Array[::String]
|
|
1367
1373
|
attr_accessor reflection_configuration: Types::EpisodicReflectionConfigurationInput
|
|
1374
|
+
attr_accessor memory_record_schema: Types::MemoryRecordSchema
|
|
1368
1375
|
SENSITIVE: [:description]
|
|
1369
1376
|
end
|
|
1370
1377
|
|
|
@@ -1392,18 +1399,21 @@ module Aws::BedrockAgentCoreControl
|
|
|
1392
1399
|
attr_accessor model_id: ::String
|
|
1393
1400
|
attr_accessor namespaces: ::Array[::String]
|
|
1394
1401
|
attr_accessor namespace_templates: ::Array[::String]
|
|
1402
|
+
attr_accessor memory_record_schema: Types::MemoryRecordSchema
|
|
1395
1403
|
SENSITIVE: [:append_to_prompt]
|
|
1396
1404
|
end
|
|
1397
1405
|
|
|
1398
1406
|
class EpisodicReflectionConfiguration
|
|
1399
1407
|
attr_accessor namespaces: ::Array[::String]
|
|
1400
1408
|
attr_accessor namespace_templates: ::Array[::String]
|
|
1409
|
+
attr_accessor memory_record_schema: Types::MemoryRecordSchema
|
|
1401
1410
|
SENSITIVE: []
|
|
1402
1411
|
end
|
|
1403
1412
|
|
|
1404
1413
|
class EpisodicReflectionConfigurationInput
|
|
1405
1414
|
attr_accessor namespaces: ::Array[::String]
|
|
1406
1415
|
attr_accessor namespace_templates: ::Array[::String]
|
|
1416
|
+
attr_accessor memory_record_schema: Types::MemoryRecordSchema
|
|
1407
1417
|
SENSITIVE: []
|
|
1408
1418
|
end
|
|
1409
1419
|
|
|
@@ -1412,6 +1422,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1412
1422
|
attr_accessor model_id: ::String
|
|
1413
1423
|
attr_accessor namespaces: ::Array[::String]
|
|
1414
1424
|
attr_accessor namespace_templates: ::Array[::String]
|
|
1425
|
+
attr_accessor memory_record_schema: Types::MemoryRecordSchema
|
|
1415
1426
|
SENSITIVE: [:append_to_prompt]
|
|
1416
1427
|
end
|
|
1417
1428
|
|
|
@@ -1466,6 +1477,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
1466
1477
|
SENSITIVE: [:description]
|
|
1467
1478
|
end
|
|
1468
1479
|
|
|
1480
|
+
class ExtractionConfig
|
|
1481
|
+
attr_accessor llm_extraction_config: Types::LlmExtractionConfig
|
|
1482
|
+
attr_accessor unknown: untyped
|
|
1483
|
+
SENSITIVE: []
|
|
1484
|
+
|
|
1485
|
+
class LlmExtractionConfig < ExtractionConfig
|
|
1486
|
+
end
|
|
1487
|
+
class Unknown < ExtractionConfig
|
|
1488
|
+
end
|
|
1489
|
+
end
|
|
1490
|
+
|
|
1469
1491
|
class ExtractionConfiguration
|
|
1470
1492
|
attr_accessor custom_extraction_configuration: Types::CustomExtractionConfiguration
|
|
1471
1493
|
attr_accessor unknown: untyped
|
|
@@ -2402,6 +2424,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
2402
2424
|
SENSITIVE: []
|
|
2403
2425
|
end
|
|
2404
2426
|
|
|
2427
|
+
class IndexedKey
|
|
2428
|
+
attr_accessor key: ::String
|
|
2429
|
+
attr_accessor type: ("STRING" | "STRINGLIST" | "NUMBER")
|
|
2430
|
+
SENSITIVE: []
|
|
2431
|
+
end
|
|
2432
|
+
|
|
2405
2433
|
class InferenceConfiguration
|
|
2406
2434
|
attr_accessor max_tokens: ::Integer
|
|
2407
2435
|
attr_accessor temperature: ::Float
|
|
@@ -2808,10 +2836,19 @@ module Aws::BedrockAgentCoreControl
|
|
|
2808
2836
|
SENSITIVE: [:instructions, :rating_scale]
|
|
2809
2837
|
end
|
|
2810
2838
|
|
|
2839
|
+
class LlmExtractionConfig
|
|
2840
|
+
attr_accessor llm_extraction_instruction: ::String
|
|
2841
|
+
attr_accessor definition: ::String
|
|
2842
|
+
attr_accessor validation: Types::Validation
|
|
2843
|
+
SENSITIVE: [:llm_extraction_instruction, :definition]
|
|
2844
|
+
end
|
|
2845
|
+
|
|
2811
2846
|
class MCPGatewayConfiguration
|
|
2812
2847
|
attr_accessor supported_versions: ::Array[::String]
|
|
2813
2848
|
attr_accessor instructions: ::String
|
|
2814
2849
|
attr_accessor search_type: ("SEMANTIC")
|
|
2850
|
+
attr_accessor session_configuration: Types::SessionConfiguration
|
|
2851
|
+
attr_accessor streaming_configuration: Types::StreamingConfiguration
|
|
2815
2852
|
SENSITIVE: []
|
|
2816
2853
|
end
|
|
2817
2854
|
|
|
@@ -2923,10 +2960,16 @@ module Aws::BedrockAgentCoreControl
|
|
|
2923
2960
|
attr_accessor created_at: ::Time
|
|
2924
2961
|
attr_accessor updated_at: ::Time
|
|
2925
2962
|
attr_accessor strategies: ::Array[Types::MemoryStrategy]
|
|
2963
|
+
attr_accessor indexed_keys: ::Array[Types::IndexedKey]
|
|
2926
2964
|
attr_accessor stream_delivery_resources: Types::StreamDeliveryResources
|
|
2927
2965
|
SENSITIVE: [:description]
|
|
2928
2966
|
end
|
|
2929
2967
|
|
|
2968
|
+
class MemoryRecordSchema
|
|
2969
|
+
attr_accessor metadata_schema: ::Array[Types::MetadataSchemaEntry]
|
|
2970
|
+
SENSITIVE: []
|
|
2971
|
+
end
|
|
2972
|
+
|
|
2930
2973
|
class MemoryStrategy
|
|
2931
2974
|
attr_accessor strategy_id: ::String
|
|
2932
2975
|
attr_accessor name: ::String
|
|
@@ -2938,6 +2981,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2938
2981
|
attr_accessor created_at: ::Time
|
|
2939
2982
|
attr_accessor updated_at: ::Time
|
|
2940
2983
|
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED")
|
|
2984
|
+
attr_accessor memory_record_schema: Types::MemoryRecordSchema
|
|
2941
2985
|
SENSITIVE: [:description]
|
|
2942
2986
|
end
|
|
2943
2987
|
|
|
@@ -2990,6 +3034,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
2990
3034
|
SENSITIVE: []
|
|
2991
3035
|
end
|
|
2992
3036
|
|
|
3037
|
+
class MetadataSchemaEntry
|
|
3038
|
+
attr_accessor key: ::String
|
|
3039
|
+
attr_accessor type: ("STRING" | "STRINGLIST" | "NUMBER")
|
|
3040
|
+
attr_accessor extraction_config: Types::ExtractionConfig
|
|
3041
|
+
SENSITIVE: []
|
|
3042
|
+
end
|
|
3043
|
+
|
|
2993
3044
|
class MicrosoftOauth2ProviderConfigInput
|
|
2994
3045
|
attr_accessor client_id: ::String
|
|
2995
3046
|
attr_accessor client_secret: ::String
|
|
@@ -3044,6 +3095,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3044
3095
|
attr_accessor namespaces: ::Array[::String]
|
|
3045
3096
|
attr_accessor namespace_templates: ::Array[::String]
|
|
3046
3097
|
attr_accessor configuration: Types::ModifyStrategyConfiguration
|
|
3098
|
+
attr_accessor memory_record_schema: Types::MemoryRecordSchema
|
|
3047
3099
|
SENSITIVE: [:description]
|
|
3048
3100
|
end
|
|
3049
3101
|
|
|
@@ -3082,6 +3134,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
3082
3134
|
SENSITIVE: []
|
|
3083
3135
|
end
|
|
3084
3136
|
|
|
3137
|
+
class NumberValidation
|
|
3138
|
+
attr_accessor min_value: ::Float
|
|
3139
|
+
attr_accessor max_value: ::Float
|
|
3140
|
+
SENSITIVE: []
|
|
3141
|
+
end
|
|
3142
|
+
|
|
3085
3143
|
class NumericalScaleDefinition
|
|
3086
3144
|
attr_accessor definition: ::String
|
|
3087
3145
|
attr_accessor value: ::Float
|
|
@@ -3099,7 +3157,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3099
3157
|
attr_accessor provider_arn: ::String
|
|
3100
3158
|
attr_accessor scopes: ::Array[::String]
|
|
3101
3159
|
attr_accessor custom_parameters: ::Hash[::String, ::String]
|
|
3102
|
-
attr_accessor grant_type: ("CLIENT_CREDENTIALS" | "AUTHORIZATION_CODE")
|
|
3160
|
+
attr_accessor grant_type: ("CLIENT_CREDENTIALS" | "AUTHORIZATION_CODE" | "TOKEN_EXCHANGE")
|
|
3103
3161
|
attr_accessor default_return_url: ::String
|
|
3104
3162
|
SENSITIVE: []
|
|
3105
3163
|
end
|
|
@@ -3206,6 +3264,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
3206
3264
|
end
|
|
3207
3265
|
end
|
|
3208
3266
|
|
|
3267
|
+
class OnBehalfOfTokenExchangeConfigType
|
|
3268
|
+
attr_accessor grant_type: ("TOKEN_EXCHANGE" | "JWT_AUTHORIZATION_GRANT")
|
|
3269
|
+
attr_accessor token_exchange_grant_type_config: Types::TokenExchangeGrantTypeConfigType
|
|
3270
|
+
SENSITIVE: []
|
|
3271
|
+
end
|
|
3272
|
+
|
|
3209
3273
|
class OnlineEvaluationConfigSummary
|
|
3210
3274
|
attr_accessor online_evaluation_config_arn: ::String
|
|
3211
3275
|
attr_accessor online_evaluation_config_id: ::String
|
|
@@ -3591,6 +3655,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3591
3655
|
attr_accessor description: ::String
|
|
3592
3656
|
attr_accessor namespaces: ::Array[::String]
|
|
3593
3657
|
attr_accessor namespace_templates: ::Array[::String]
|
|
3658
|
+
attr_accessor memory_record_schema: Types::MemoryRecordSchema
|
|
3594
3659
|
SENSITIVE: [:description]
|
|
3595
3660
|
end
|
|
3596
3661
|
|
|
@@ -3633,6 +3698,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
3633
3698
|
SENSITIVE: []
|
|
3634
3699
|
end
|
|
3635
3700
|
|
|
3701
|
+
class SessionConfiguration
|
|
3702
|
+
attr_accessor session_timeout_in_seconds: ::Integer
|
|
3703
|
+
SENSITIVE: []
|
|
3704
|
+
end
|
|
3705
|
+
|
|
3636
3706
|
class SessionStorageConfiguration
|
|
3637
3707
|
attr_accessor mount_path: ::String
|
|
3638
3708
|
SENSITIVE: []
|
|
@@ -3733,6 +3803,22 @@ module Aws::BedrockAgentCoreControl
|
|
|
3733
3803
|
SENSITIVE: []
|
|
3734
3804
|
end
|
|
3735
3805
|
|
|
3806
|
+
class StreamingConfiguration
|
|
3807
|
+
attr_accessor enable_response_streaming: bool
|
|
3808
|
+
SENSITIVE: []
|
|
3809
|
+
end
|
|
3810
|
+
|
|
3811
|
+
class StringListValidation
|
|
3812
|
+
attr_accessor allowed_values: ::Array[::String]
|
|
3813
|
+
attr_accessor max_items: ::Integer
|
|
3814
|
+
SENSITIVE: []
|
|
3815
|
+
end
|
|
3816
|
+
|
|
3817
|
+
class StringValidation
|
|
3818
|
+
attr_accessor allowed_values: ::Array[::String]
|
|
3819
|
+
SENSITIVE: []
|
|
3820
|
+
end
|
|
3821
|
+
|
|
3736
3822
|
class SubmitRegistryRecordForApprovalRequest
|
|
3737
3823
|
attr_accessor registry_id: ::String
|
|
3738
3824
|
attr_accessor record_id: ::String
|
|
@@ -3759,6 +3845,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3759
3845
|
attr_accessor description: ::String
|
|
3760
3846
|
attr_accessor namespaces: ::Array[::String]
|
|
3761
3847
|
attr_accessor namespace_templates: ::Array[::String]
|
|
3848
|
+
attr_accessor memory_record_schema: Types::MemoryRecordSchema
|
|
3762
3849
|
SENSITIVE: [:description]
|
|
3763
3850
|
end
|
|
3764
3851
|
|
|
@@ -3867,6 +3954,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
3867
3954
|
SENSITIVE: []
|
|
3868
3955
|
end
|
|
3869
3956
|
|
|
3957
|
+
class TokenExchangeGrantTypeConfigType
|
|
3958
|
+
attr_accessor actor_token_content: ("NONE" | "M2M" | "AWS_IAM_ID_TOKEN_JWT")
|
|
3959
|
+
attr_accessor actor_token_scopes: ::Array[::String]
|
|
3960
|
+
SENSITIVE: []
|
|
3961
|
+
end
|
|
3962
|
+
|
|
3870
3963
|
class ToolDefinition
|
|
3871
3964
|
attr_accessor name: ::String
|
|
3872
3965
|
attr_accessor description: ::String
|
|
@@ -4185,6 +4278,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
4185
4278
|
attr_accessor event_expiry_duration: ::Integer
|
|
4186
4279
|
attr_accessor memory_execution_role_arn: ::String
|
|
4187
4280
|
attr_accessor memory_strategies: Types::ModifyMemoryStrategies
|
|
4281
|
+
attr_accessor add_indexed_keys: ::Array[Types::IndexedKey]
|
|
4188
4282
|
attr_accessor stream_delivery_resources: Types::StreamDeliveryResources
|
|
4189
4283
|
SENSITIVE: [:description]
|
|
4190
4284
|
end
|
|
@@ -4484,6 +4578,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
4484
4578
|
attr_accessor description: ::String
|
|
4485
4579
|
attr_accessor namespaces: ::Array[::String]
|
|
4486
4580
|
attr_accessor namespace_templates: ::Array[::String]
|
|
4581
|
+
attr_accessor memory_record_schema: Types::MemoryRecordSchema
|
|
4487
4582
|
SENSITIVE: [:description]
|
|
4488
4583
|
end
|
|
4489
4584
|
|
|
@@ -4505,6 +4600,23 @@ module Aws::BedrockAgentCoreControl
|
|
|
4505
4600
|
SENSITIVE: [:append_to_prompt]
|
|
4506
4601
|
end
|
|
4507
4602
|
|
|
4603
|
+
class Validation
|
|
4604
|
+
attr_accessor string_validation: Types::StringValidation
|
|
4605
|
+
attr_accessor string_list_validation: Types::StringListValidation
|
|
4606
|
+
attr_accessor number_validation: Types::NumberValidation
|
|
4607
|
+
attr_accessor unknown: untyped
|
|
4608
|
+
SENSITIVE: []
|
|
4609
|
+
|
|
4610
|
+
class StringValidation < Validation
|
|
4611
|
+
end
|
|
4612
|
+
class StringListValidation < Validation
|
|
4613
|
+
end
|
|
4614
|
+
class NumberValidation < Validation
|
|
4615
|
+
end
|
|
4616
|
+
class Unknown < Validation
|
|
4617
|
+
end
|
|
4618
|
+
end
|
|
4619
|
+
|
|
4508
4620
|
class ValidationException
|
|
4509
4621
|
attr_accessor message: ::String
|
|
4510
4622
|
attr_accessor reason: ("CannotParse" | "FieldValidationFailed" | "IdempotentParameterMismatchException" | "EventInOtherSession" | "ResourceConflict")
|