aws-sdk-bedrockagent 1.51.0 → 1.53.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-bedrockagent/client.rb +57 -9
- data/lib/aws-sdk-bedrockagent/client_api.rb +19 -0
- data/lib/aws-sdk-bedrockagent/types.rb +92 -4
- data/lib/aws-sdk-bedrockagent.rb +1 -1
- data/sig/client.rbs +26 -2
- data/sig/types.rbs +19 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '08922c51c55f935f47cdd309a40cea05ce65e7700589873ab885ec4e2900a37f'
|
4
|
+
data.tar.gz: 4456aea4ea0c017516164387ff222b77ceee3d3bcd50a7f7432a8427b31b0c42
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 780943adea44de1ad2e6747126bc871d74b8af75bc8138e1bdb512cfb7385b3510536456b4021ea2712a0a8606a1a9a5b7325cce379fac47565c23dfd598f0de
|
7
|
+
data.tar.gz: 3157e9574a415e5a8c895f13055ad796b0287fc72ead55a5841e94a3b3f8d0a71c2ace6af930694304729c8256ad26d69d3b0f534574b11065482da5914e99e2
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.53.0 (2025-04-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added optional "customMetadataField" for Amazon Aurora knowledge bases, allowing single-column metadata. Also added optional "textIndexName" for MongoDB Atlas knowledge bases, enabling hybrid search support.
|
8
|
+
|
9
|
+
1.52.0 (2025-03-25)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Adding support for Amazon OpenSearch Managed clusters as a vector database in Knowledge Bases for Amazon Bedrock
|
13
|
+
|
4
14
|
1.51.0 (2025-03-10)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.53.0
|
@@ -2223,6 +2223,7 @@ module Aws::BedrockAgent
|
|
2223
2223
|
# text_field: "FieldName", # required
|
2224
2224
|
# vector_field: "FieldName", # required
|
2225
2225
|
# },
|
2226
|
+
# text_index_name: "MongoDbAtlasIndexName",
|
2226
2227
|
# vector_index_name: "MongoDbAtlasIndexName", # required
|
2227
2228
|
# },
|
2228
2229
|
# neptune_analytics_configuration: {
|
@@ -2232,6 +2233,16 @@ module Aws::BedrockAgent
|
|
2232
2233
|
# },
|
2233
2234
|
# graph_arn: "GraphArn", # required
|
2234
2235
|
# },
|
2236
|
+
# opensearch_managed_cluster_configuration: {
|
2237
|
+
# domain_arn: "OpenSearchManagedClusterDomainArn", # required
|
2238
|
+
# domain_endpoint: "OpenSearchManagedClusterDomainEndpoint", # required
|
2239
|
+
# field_mapping: { # required
|
2240
|
+
# metadata_field: "FieldName", # required
|
2241
|
+
# text_field: "FieldName", # required
|
2242
|
+
# vector_field: "FieldName", # required
|
2243
|
+
# },
|
2244
|
+
# vector_index_name: "OpenSearchManagedClusterIndexName", # required
|
2245
|
+
# },
|
2235
2246
|
# opensearch_serverless_configuration: {
|
2236
2247
|
# collection_arn: "OpenSearchServerlessCollectionArn", # required
|
2237
2248
|
# field_mapping: { # required
|
@@ -2254,6 +2265,7 @@ module Aws::BedrockAgent
|
|
2254
2265
|
# credentials_secret_arn: "SecretArn", # required
|
2255
2266
|
# database_name: "RdsDatabaseName", # required
|
2256
2267
|
# field_mapping: { # required
|
2268
|
+
# custom_metadata_field: "ColumnName",
|
2257
2269
|
# metadata_field: "ColumnName", # required
|
2258
2270
|
# primary_key_field: "ColumnName", # required
|
2259
2271
|
# text_field: "ColumnName", # required
|
@@ -2272,7 +2284,7 @@ module Aws::BedrockAgent
|
|
2272
2284
|
# },
|
2273
2285
|
# vector_index_name: "RedisEnterpriseCloudIndexName", # required
|
2274
2286
|
# },
|
2275
|
-
# type: "OPENSEARCH_SERVERLESS", # required, accepts OPENSEARCH_SERVERLESS, PINECONE, REDIS_ENTERPRISE_CLOUD, RDS, MONGO_DB_ATLAS, NEPTUNE_ANALYTICS
|
2287
|
+
# type: "OPENSEARCH_SERVERLESS", # required, accepts OPENSEARCH_SERVERLESS, PINECONE, REDIS_ENTERPRISE_CLOUD, RDS, MONGO_DB_ATLAS, NEPTUNE_ANALYTICS, OPENSEARCH_MANAGED_CLUSTER
|
2276
2288
|
# },
|
2277
2289
|
# tags: {
|
2278
2290
|
# "TagKey" => "TagValue",
|
@@ -2332,10 +2344,17 @@ module Aws::BedrockAgent
|
|
2332
2344
|
# resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.field_mapping.metadata_field #=> String
|
2333
2345
|
# resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.field_mapping.text_field #=> String
|
2334
2346
|
# resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.field_mapping.vector_field #=> String
|
2347
|
+
# resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.text_index_name #=> String
|
2335
2348
|
# resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.vector_index_name #=> String
|
2336
2349
|
# resp.knowledge_base.storage_configuration.neptune_analytics_configuration.field_mapping.metadata_field #=> String
|
2337
2350
|
# resp.knowledge_base.storage_configuration.neptune_analytics_configuration.field_mapping.text_field #=> String
|
2338
2351
|
# resp.knowledge_base.storage_configuration.neptune_analytics_configuration.graph_arn #=> String
|
2352
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.domain_arn #=> String
|
2353
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.domain_endpoint #=> String
|
2354
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.field_mapping.metadata_field #=> String
|
2355
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.field_mapping.text_field #=> String
|
2356
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.field_mapping.vector_field #=> String
|
2357
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.vector_index_name #=> String
|
2339
2358
|
# resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.collection_arn #=> String
|
2340
2359
|
# resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.field_mapping.metadata_field #=> String
|
2341
2360
|
# resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.field_mapping.text_field #=> String
|
@@ -2348,6 +2367,7 @@ module Aws::BedrockAgent
|
|
2348
2367
|
# resp.knowledge_base.storage_configuration.pinecone_configuration.namespace #=> String
|
2349
2368
|
# resp.knowledge_base.storage_configuration.rds_configuration.credentials_secret_arn #=> String
|
2350
2369
|
# resp.knowledge_base.storage_configuration.rds_configuration.database_name #=> String
|
2370
|
+
# resp.knowledge_base.storage_configuration.rds_configuration.field_mapping.custom_metadata_field #=> String
|
2351
2371
|
# resp.knowledge_base.storage_configuration.rds_configuration.field_mapping.metadata_field #=> String
|
2352
2372
|
# resp.knowledge_base.storage_configuration.rds_configuration.field_mapping.primary_key_field #=> String
|
2353
2373
|
# resp.knowledge_base.storage_configuration.rds_configuration.field_mapping.text_field #=> String
|
@@ -2360,7 +2380,7 @@ module Aws::BedrockAgent
|
|
2360
2380
|
# resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping.text_field #=> String
|
2361
2381
|
# resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping.vector_field #=> String
|
2362
2382
|
# resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.vector_index_name #=> String
|
2363
|
-
# resp.knowledge_base.storage_configuration.type #=> String, one of "OPENSEARCH_SERVERLESS", "PINECONE", "REDIS_ENTERPRISE_CLOUD", "RDS", "MONGO_DB_ATLAS", "NEPTUNE_ANALYTICS"
|
2383
|
+
# resp.knowledge_base.storage_configuration.type #=> String, one of "OPENSEARCH_SERVERLESS", "PINECONE", "REDIS_ENTERPRISE_CLOUD", "RDS", "MONGO_DB_ATLAS", "NEPTUNE_ANALYTICS", "OPENSEARCH_MANAGED_CLUSTER"
|
2364
2384
|
# resp.knowledge_base.updated_at #=> Time
|
2365
2385
|
#
|
2366
2386
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/CreateKnowledgeBase AWS API Documentation
|
@@ -4129,10 +4149,17 @@ module Aws::BedrockAgent
|
|
4129
4149
|
# resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.field_mapping.metadata_field #=> String
|
4130
4150
|
# resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.field_mapping.text_field #=> String
|
4131
4151
|
# resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.field_mapping.vector_field #=> String
|
4152
|
+
# resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.text_index_name #=> String
|
4132
4153
|
# resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.vector_index_name #=> String
|
4133
4154
|
# resp.knowledge_base.storage_configuration.neptune_analytics_configuration.field_mapping.metadata_field #=> String
|
4134
4155
|
# resp.knowledge_base.storage_configuration.neptune_analytics_configuration.field_mapping.text_field #=> String
|
4135
4156
|
# resp.knowledge_base.storage_configuration.neptune_analytics_configuration.graph_arn #=> String
|
4157
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.domain_arn #=> String
|
4158
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.domain_endpoint #=> String
|
4159
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.field_mapping.metadata_field #=> String
|
4160
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.field_mapping.text_field #=> String
|
4161
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.field_mapping.vector_field #=> String
|
4162
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.vector_index_name #=> String
|
4136
4163
|
# resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.collection_arn #=> String
|
4137
4164
|
# resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.field_mapping.metadata_field #=> String
|
4138
4165
|
# resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.field_mapping.text_field #=> String
|
@@ -4145,6 +4172,7 @@ module Aws::BedrockAgent
|
|
4145
4172
|
# resp.knowledge_base.storage_configuration.pinecone_configuration.namespace #=> String
|
4146
4173
|
# resp.knowledge_base.storage_configuration.rds_configuration.credentials_secret_arn #=> String
|
4147
4174
|
# resp.knowledge_base.storage_configuration.rds_configuration.database_name #=> String
|
4175
|
+
# resp.knowledge_base.storage_configuration.rds_configuration.field_mapping.custom_metadata_field #=> String
|
4148
4176
|
# resp.knowledge_base.storage_configuration.rds_configuration.field_mapping.metadata_field #=> String
|
4149
4177
|
# resp.knowledge_base.storage_configuration.rds_configuration.field_mapping.primary_key_field #=> String
|
4150
4178
|
# resp.knowledge_base.storage_configuration.rds_configuration.field_mapping.text_field #=> String
|
@@ -4157,7 +4185,7 @@ module Aws::BedrockAgent
|
|
4157
4185
|
# resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping.text_field #=> String
|
4158
4186
|
# resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping.vector_field #=> String
|
4159
4187
|
# resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.vector_index_name #=> String
|
4160
|
-
# resp.knowledge_base.storage_configuration.type #=> String, one of "OPENSEARCH_SERVERLESS", "PINECONE", "REDIS_ENTERPRISE_CLOUD", "RDS", "MONGO_DB_ATLAS", "NEPTUNE_ANALYTICS"
|
4188
|
+
# resp.knowledge_base.storage_configuration.type #=> String, one of "OPENSEARCH_SERVERLESS", "PINECONE", "REDIS_ENTERPRISE_CLOUD", "RDS", "MONGO_DB_ATLAS", "NEPTUNE_ANALYTICS", "OPENSEARCH_MANAGED_CLUSTER"
|
4161
4189
|
# resp.knowledge_base.updated_at #=> Time
|
4162
4190
|
#
|
4163
4191
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/GetKnowledgeBase AWS API Documentation
|
@@ -5837,9 +5865,9 @@ module Aws::BedrockAgent
|
|
5837
5865
|
# The configuration settings for a computer use action.
|
5838
5866
|
#
|
5839
5867
|
# Computer use is a new Anthropic Claude model capability (in beta)
|
5840
|
-
# available with Claude 3.7 and Claude 3.5 Sonnet v2 only. For
|
5841
|
-
# information, see [Configure an Amazon Bedrock Agent to complete
|
5842
|
-
# with computer use tools][1].
|
5868
|
+
# available with Claude 3.7 Sonnet and Claude 3.5 Sonnet v2 only. For
|
5869
|
+
# more information, see [Configure an Amazon Bedrock Agent to complete
|
5870
|
+
# tasks with computer use tools][1].
|
5843
5871
|
#
|
5844
5872
|
#
|
5845
5873
|
#
|
@@ -6960,6 +6988,7 @@ module Aws::BedrockAgent
|
|
6960
6988
|
# text_field: "FieldName", # required
|
6961
6989
|
# vector_field: "FieldName", # required
|
6962
6990
|
# },
|
6991
|
+
# text_index_name: "MongoDbAtlasIndexName",
|
6963
6992
|
# vector_index_name: "MongoDbAtlasIndexName", # required
|
6964
6993
|
# },
|
6965
6994
|
# neptune_analytics_configuration: {
|
@@ -6969,6 +6998,16 @@ module Aws::BedrockAgent
|
|
6969
6998
|
# },
|
6970
6999
|
# graph_arn: "GraphArn", # required
|
6971
7000
|
# },
|
7001
|
+
# opensearch_managed_cluster_configuration: {
|
7002
|
+
# domain_arn: "OpenSearchManagedClusterDomainArn", # required
|
7003
|
+
# domain_endpoint: "OpenSearchManagedClusterDomainEndpoint", # required
|
7004
|
+
# field_mapping: { # required
|
7005
|
+
# metadata_field: "FieldName", # required
|
7006
|
+
# text_field: "FieldName", # required
|
7007
|
+
# vector_field: "FieldName", # required
|
7008
|
+
# },
|
7009
|
+
# vector_index_name: "OpenSearchManagedClusterIndexName", # required
|
7010
|
+
# },
|
6972
7011
|
# opensearch_serverless_configuration: {
|
6973
7012
|
# collection_arn: "OpenSearchServerlessCollectionArn", # required
|
6974
7013
|
# field_mapping: { # required
|
@@ -6991,6 +7030,7 @@ module Aws::BedrockAgent
|
|
6991
7030
|
# credentials_secret_arn: "SecretArn", # required
|
6992
7031
|
# database_name: "RdsDatabaseName", # required
|
6993
7032
|
# field_mapping: { # required
|
7033
|
+
# custom_metadata_field: "ColumnName",
|
6994
7034
|
# metadata_field: "ColumnName", # required
|
6995
7035
|
# primary_key_field: "ColumnName", # required
|
6996
7036
|
# text_field: "ColumnName", # required
|
@@ -7009,7 +7049,7 @@ module Aws::BedrockAgent
|
|
7009
7049
|
# },
|
7010
7050
|
# vector_index_name: "RedisEnterpriseCloudIndexName", # required
|
7011
7051
|
# },
|
7012
|
-
# type: "OPENSEARCH_SERVERLESS", # required, accepts OPENSEARCH_SERVERLESS, PINECONE, REDIS_ENTERPRISE_CLOUD, RDS, MONGO_DB_ATLAS, NEPTUNE_ANALYTICS
|
7052
|
+
# type: "OPENSEARCH_SERVERLESS", # required, accepts OPENSEARCH_SERVERLESS, PINECONE, REDIS_ENTERPRISE_CLOUD, RDS, MONGO_DB_ATLAS, NEPTUNE_ANALYTICS, OPENSEARCH_MANAGED_CLUSTER
|
7013
7053
|
# },
|
7014
7054
|
# })
|
7015
7055
|
#
|
@@ -7066,10 +7106,17 @@ module Aws::BedrockAgent
|
|
7066
7106
|
# resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.field_mapping.metadata_field #=> String
|
7067
7107
|
# resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.field_mapping.text_field #=> String
|
7068
7108
|
# resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.field_mapping.vector_field #=> String
|
7109
|
+
# resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.text_index_name #=> String
|
7069
7110
|
# resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.vector_index_name #=> String
|
7070
7111
|
# resp.knowledge_base.storage_configuration.neptune_analytics_configuration.field_mapping.metadata_field #=> String
|
7071
7112
|
# resp.knowledge_base.storage_configuration.neptune_analytics_configuration.field_mapping.text_field #=> String
|
7072
7113
|
# resp.knowledge_base.storage_configuration.neptune_analytics_configuration.graph_arn #=> String
|
7114
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.domain_arn #=> String
|
7115
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.domain_endpoint #=> String
|
7116
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.field_mapping.metadata_field #=> String
|
7117
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.field_mapping.text_field #=> String
|
7118
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.field_mapping.vector_field #=> String
|
7119
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.vector_index_name #=> String
|
7073
7120
|
# resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.collection_arn #=> String
|
7074
7121
|
# resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.field_mapping.metadata_field #=> String
|
7075
7122
|
# resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.field_mapping.text_field #=> String
|
@@ -7082,6 +7129,7 @@ module Aws::BedrockAgent
|
|
7082
7129
|
# resp.knowledge_base.storage_configuration.pinecone_configuration.namespace #=> String
|
7083
7130
|
# resp.knowledge_base.storage_configuration.rds_configuration.credentials_secret_arn #=> String
|
7084
7131
|
# resp.knowledge_base.storage_configuration.rds_configuration.database_name #=> String
|
7132
|
+
# resp.knowledge_base.storage_configuration.rds_configuration.field_mapping.custom_metadata_field #=> String
|
7085
7133
|
# resp.knowledge_base.storage_configuration.rds_configuration.field_mapping.metadata_field #=> String
|
7086
7134
|
# resp.knowledge_base.storage_configuration.rds_configuration.field_mapping.primary_key_field #=> String
|
7087
7135
|
# resp.knowledge_base.storage_configuration.rds_configuration.field_mapping.text_field #=> String
|
@@ -7094,7 +7142,7 @@ module Aws::BedrockAgent
|
|
7094
7142
|
# resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping.text_field #=> String
|
7095
7143
|
# resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping.vector_field #=> String
|
7096
7144
|
# resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.vector_index_name #=> String
|
7097
|
-
# resp.knowledge_base.storage_configuration.type #=> String, one of "OPENSEARCH_SERVERLESS", "PINECONE", "REDIS_ENTERPRISE_CLOUD", "RDS", "MONGO_DB_ATLAS", "NEPTUNE_ANALYTICS"
|
7145
|
+
# resp.knowledge_base.storage_configuration.type #=> String, one of "OPENSEARCH_SERVERLESS", "PINECONE", "REDIS_ENTERPRISE_CLOUD", "RDS", "MONGO_DB_ATLAS", "NEPTUNE_ANALYTICS", "OPENSEARCH_MANAGED_CLUSTER"
|
7098
7146
|
# resp.knowledge_base.updated_at #=> Time
|
7099
7147
|
#
|
7100
7148
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/UpdateKnowledgeBase AWS API Documentation
|
@@ -7579,7 +7627,7 @@ module Aws::BedrockAgent
|
|
7579
7627
|
tracer: tracer
|
7580
7628
|
)
|
7581
7629
|
context[:gem_name] = 'aws-sdk-bedrockagent'
|
7582
|
-
context[:gem_version] = '1.
|
7630
|
+
context[:gem_version] = '1.53.0'
|
7583
7631
|
Seahorse::Client::Request.new(handlers, context)
|
7584
7632
|
end
|
7585
7633
|
|
@@ -406,6 +406,11 @@ module Aws::BedrockAgent
|
|
406
406
|
NonEmptyString = Shapes::StringShape.new(name: 'NonEmptyString')
|
407
407
|
NumberValue = Shapes::FloatShape.new(name: 'NumberValue')
|
408
408
|
NumericalVersion = Shapes::StringShape.new(name: 'NumericalVersion')
|
409
|
+
OpenSearchManagedClusterConfiguration = Shapes::StructureShape.new(name: 'OpenSearchManagedClusterConfiguration')
|
410
|
+
OpenSearchManagedClusterDomainArn = Shapes::StringShape.new(name: 'OpenSearchManagedClusterDomainArn')
|
411
|
+
OpenSearchManagedClusterDomainEndpoint = Shapes::StringShape.new(name: 'OpenSearchManagedClusterDomainEndpoint')
|
412
|
+
OpenSearchManagedClusterFieldMapping = Shapes::StructureShape.new(name: 'OpenSearchManagedClusterFieldMapping')
|
413
|
+
OpenSearchManagedClusterIndexName = Shapes::StringShape.new(name: 'OpenSearchManagedClusterIndexName')
|
409
414
|
OpenSearchServerlessCollectionArn = Shapes::StringShape.new(name: 'OpenSearchServerlessCollectionArn')
|
410
415
|
OpenSearchServerlessConfiguration = Shapes::StructureShape.new(name: 'OpenSearchServerlessConfiguration')
|
411
416
|
OpenSearchServerlessFieldMapping = Shapes::StructureShape.new(name: 'OpenSearchServerlessFieldMapping')
|
@@ -2024,6 +2029,7 @@ module Aws::BedrockAgent
|
|
2024
2029
|
MongoDbAtlasConfiguration.add_member(:endpoint, Shapes::ShapeRef.new(shape: MongoDbAtlasEndpoint, required: true, location_name: "endpoint"))
|
2025
2030
|
MongoDbAtlasConfiguration.add_member(:endpoint_service_name, Shapes::ShapeRef.new(shape: MongoDbAtlasEndpointServiceName, location_name: "endpointServiceName"))
|
2026
2031
|
MongoDbAtlasConfiguration.add_member(:field_mapping, Shapes::ShapeRef.new(shape: MongoDbAtlasFieldMapping, required: true, location_name: "fieldMapping"))
|
2032
|
+
MongoDbAtlasConfiguration.add_member(:text_index_name, Shapes::ShapeRef.new(shape: MongoDbAtlasIndexName, location_name: "textIndexName"))
|
2027
2033
|
MongoDbAtlasConfiguration.add_member(:vector_index_name, Shapes::ShapeRef.new(shape: MongoDbAtlasIndexName, required: true, location_name: "vectorIndexName"))
|
2028
2034
|
MongoDbAtlasConfiguration.struct_class = Types::MongoDbAtlasConfiguration
|
2029
2035
|
|
@@ -2044,6 +2050,17 @@ module Aws::BedrockAgent
|
|
2044
2050
|
NeptuneAnalyticsFieldMapping.add_member(:text_field, Shapes::ShapeRef.new(shape: FieldName, required: true, location_name: "textField"))
|
2045
2051
|
NeptuneAnalyticsFieldMapping.struct_class = Types::NeptuneAnalyticsFieldMapping
|
2046
2052
|
|
2053
|
+
OpenSearchManagedClusterConfiguration.add_member(:domain_arn, Shapes::ShapeRef.new(shape: OpenSearchManagedClusterDomainArn, required: true, location_name: "domainArn"))
|
2054
|
+
OpenSearchManagedClusterConfiguration.add_member(:domain_endpoint, Shapes::ShapeRef.new(shape: OpenSearchManagedClusterDomainEndpoint, required: true, location_name: "domainEndpoint"))
|
2055
|
+
OpenSearchManagedClusterConfiguration.add_member(:field_mapping, Shapes::ShapeRef.new(shape: OpenSearchManagedClusterFieldMapping, required: true, location_name: "fieldMapping"))
|
2056
|
+
OpenSearchManagedClusterConfiguration.add_member(:vector_index_name, Shapes::ShapeRef.new(shape: OpenSearchManagedClusterIndexName, required: true, location_name: "vectorIndexName"))
|
2057
|
+
OpenSearchManagedClusterConfiguration.struct_class = Types::OpenSearchManagedClusterConfiguration
|
2058
|
+
|
2059
|
+
OpenSearchManagedClusterFieldMapping.add_member(:metadata_field, Shapes::ShapeRef.new(shape: FieldName, required: true, location_name: "metadataField"))
|
2060
|
+
OpenSearchManagedClusterFieldMapping.add_member(:text_field, Shapes::ShapeRef.new(shape: FieldName, required: true, location_name: "textField"))
|
2061
|
+
OpenSearchManagedClusterFieldMapping.add_member(:vector_field, Shapes::ShapeRef.new(shape: FieldName, required: true, location_name: "vectorField"))
|
2062
|
+
OpenSearchManagedClusterFieldMapping.struct_class = Types::OpenSearchManagedClusterFieldMapping
|
2063
|
+
|
2047
2064
|
OpenSearchServerlessConfiguration.add_member(:collection_arn, Shapes::ShapeRef.new(shape: OpenSearchServerlessCollectionArn, required: true, location_name: "collectionArn"))
|
2048
2065
|
OpenSearchServerlessConfiguration.add_member(:field_mapping, Shapes::ShapeRef.new(shape: OpenSearchServerlessFieldMapping, required: true, location_name: "fieldMapping"))
|
2049
2066
|
OpenSearchServerlessConfiguration.add_member(:vector_index_name, Shapes::ShapeRef.new(shape: OpenSearchServerlessIndexName, required: true, location_name: "vectorIndexName"))
|
@@ -2245,6 +2262,7 @@ module Aws::BedrockAgent
|
|
2245
2262
|
RdsConfiguration.add_member(:table_name, Shapes::ShapeRef.new(shape: RdsTableName, required: true, location_name: "tableName"))
|
2246
2263
|
RdsConfiguration.struct_class = Types::RdsConfiguration
|
2247
2264
|
|
2265
|
+
RdsFieldMapping.add_member(:custom_metadata_field, Shapes::ShapeRef.new(shape: ColumnName, location_name: "customMetadataField"))
|
2248
2266
|
RdsFieldMapping.add_member(:metadata_field, Shapes::ShapeRef.new(shape: ColumnName, required: true, location_name: "metadataField"))
|
2249
2267
|
RdsFieldMapping.add_member(:primary_key_field, Shapes::ShapeRef.new(shape: ColumnName, required: true, location_name: "primaryKeyField"))
|
2250
2268
|
RdsFieldMapping.add_member(:text_field, Shapes::ShapeRef.new(shape: ColumnName, required: true, location_name: "textField"))
|
@@ -2412,6 +2430,7 @@ module Aws::BedrockAgent
|
|
2412
2430
|
|
2413
2431
|
StorageConfiguration.add_member(:mongo_db_atlas_configuration, Shapes::ShapeRef.new(shape: MongoDbAtlasConfiguration, location_name: "mongoDbAtlasConfiguration"))
|
2414
2432
|
StorageConfiguration.add_member(:neptune_analytics_configuration, Shapes::ShapeRef.new(shape: NeptuneAnalyticsConfiguration, location_name: "neptuneAnalyticsConfiguration"))
|
2433
|
+
StorageConfiguration.add_member(:opensearch_managed_cluster_configuration, Shapes::ShapeRef.new(shape: OpenSearchManagedClusterConfiguration, location_name: "opensearchManagedClusterConfiguration"))
|
2415
2434
|
StorageConfiguration.add_member(:opensearch_serverless_configuration, Shapes::ShapeRef.new(shape: OpenSearchServerlessConfiguration, location_name: "opensearchServerlessConfiguration"))
|
2416
2435
|
StorageConfiguration.add_member(:pinecone_configuration, Shapes::ShapeRef.new(shape: PineconeConfiguration, location_name: "pineconeConfiguration"))
|
2417
2436
|
StorageConfiguration.add_member(:rds_configuration, Shapes::ShapeRef.new(shape: RdsConfiguration, location_name: "rdsConfiguration"))
|
@@ -1281,8 +1281,8 @@ module Aws::BedrockAgent
|
|
1281
1281
|
# @return [Types::EnrichmentStrategyConfiguration]
|
1282
1282
|
#
|
1283
1283
|
# @!attribute [rw] model_arn
|
1284
|
-
# The Amazon Resource Name (ARN) of the
|
1285
|
-
#
|
1284
|
+
# The Amazon Resource Name (ARN) of the model used to create vector
|
1285
|
+
# embeddings for the knowledge base.
|
1286
1286
|
# @return [String]
|
1287
1287
|
#
|
1288
1288
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/BedrockFoundationModelContextEnrichmentConfiguration AWS API Documentation
|
@@ -7125,6 +7125,11 @@ module Aws::BedrockAgent
|
|
7125
7125
|
# the vector store.
|
7126
7126
|
# @return [Types::MongoDbAtlasFieldMapping]
|
7127
7127
|
#
|
7128
|
+
# @!attribute [rw] text_index_name
|
7129
|
+
# The name of the text search index in the MongoDB collection. This is
|
7130
|
+
# required for using the hybrid search feature.
|
7131
|
+
# @return [String]
|
7132
|
+
#
|
7128
7133
|
# @!attribute [rw] vector_index_name
|
7129
7134
|
# The name of the MongoDB Atlas vector search index.
|
7130
7135
|
# @return [String]
|
@@ -7138,6 +7143,7 @@ module Aws::BedrockAgent
|
|
7138
7143
|
:endpoint,
|
7139
7144
|
:endpoint_service_name,
|
7140
7145
|
:field_mapping,
|
7146
|
+
:text_index_name,
|
7141
7147
|
:vector_index_name)
|
7142
7148
|
SENSITIVE = []
|
7143
7149
|
include Aws::Structure
|
@@ -7241,6 +7247,71 @@ module Aws::BedrockAgent
|
|
7241
7247
|
include Aws::Structure
|
7242
7248
|
end
|
7243
7249
|
|
7250
|
+
# Contains details about the Managed Cluster configuration of the
|
7251
|
+
# knowledge base in Amazon OpenSearch Service. For more information, see
|
7252
|
+
# [Create a vector index in OpenSearch Managed Cluster][1].
|
7253
|
+
#
|
7254
|
+
#
|
7255
|
+
#
|
7256
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/knowledge-base-setup-osm.html
|
7257
|
+
#
|
7258
|
+
# @!attribute [rw] domain_arn
|
7259
|
+
# The Amazon Resource Name (ARN) of the OpenSearch domain.
|
7260
|
+
# @return [String]
|
7261
|
+
#
|
7262
|
+
# @!attribute [rw] domain_endpoint
|
7263
|
+
# The endpoint URL the OpenSearch domain.
|
7264
|
+
# @return [String]
|
7265
|
+
#
|
7266
|
+
# @!attribute [rw] field_mapping
|
7267
|
+
# Contains the names of the fields to which to map information about
|
7268
|
+
# the vector store.
|
7269
|
+
# @return [Types::OpenSearchManagedClusterFieldMapping]
|
7270
|
+
#
|
7271
|
+
# @!attribute [rw] vector_index_name
|
7272
|
+
# The name of the vector store.
|
7273
|
+
# @return [String]
|
7274
|
+
#
|
7275
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/OpenSearchManagedClusterConfiguration AWS API Documentation
|
7276
|
+
#
|
7277
|
+
class OpenSearchManagedClusterConfiguration < Struct.new(
|
7278
|
+
:domain_arn,
|
7279
|
+
:domain_endpoint,
|
7280
|
+
:field_mapping,
|
7281
|
+
:vector_index_name)
|
7282
|
+
SENSITIVE = [:vector_index_name]
|
7283
|
+
include Aws::Structure
|
7284
|
+
end
|
7285
|
+
|
7286
|
+
# Contains the names of the fields to which to map information about the
|
7287
|
+
# vector store.
|
7288
|
+
#
|
7289
|
+
# @!attribute [rw] metadata_field
|
7290
|
+
# The name of the field in which Amazon Bedrock stores metadata about
|
7291
|
+
# the vector store.
|
7292
|
+
# @return [String]
|
7293
|
+
#
|
7294
|
+
# @!attribute [rw] text_field
|
7295
|
+
# The name of the field in which Amazon Bedrock stores the raw text
|
7296
|
+
# from your data. The text is split according to the chunking strategy
|
7297
|
+
# you choose.
|
7298
|
+
# @return [String]
|
7299
|
+
#
|
7300
|
+
# @!attribute [rw] vector_field
|
7301
|
+
# The name of the field in which Amazon Bedrock stores the vector
|
7302
|
+
# embeddings for your data sources.
|
7303
|
+
# @return [String]
|
7304
|
+
#
|
7305
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/OpenSearchManagedClusterFieldMapping AWS API Documentation
|
7306
|
+
#
|
7307
|
+
class OpenSearchManagedClusterFieldMapping < Struct.new(
|
7308
|
+
:metadata_field,
|
7309
|
+
:text_field,
|
7310
|
+
:vector_field)
|
7311
|
+
SENSITIVE = []
|
7312
|
+
include Aws::Structure
|
7313
|
+
end
|
7314
|
+
|
7244
7315
|
# Contains details about the storage configuration of the knowledge base
|
7245
7316
|
# in Amazon OpenSearch Service. For more information, see [Create a
|
7246
7317
|
# vector index in Amazon OpenSearch Service][1].
|
@@ -8338,6 +8409,11 @@ module Aws::BedrockAgent
|
|
8338
8409
|
# Contains the names of the fields to which to map information about the
|
8339
8410
|
# vector store.
|
8340
8411
|
#
|
8412
|
+
# @!attribute [rw] custom_metadata_field
|
8413
|
+
# Provide a name for the universal metadata field where Amazon Bedrock
|
8414
|
+
# will store any custom metadata from your data source.
|
8415
|
+
# @return [String]
|
8416
|
+
#
|
8341
8417
|
# @!attribute [rw] metadata_field
|
8342
8418
|
# The name of the field in which Amazon Bedrock stores metadata about
|
8343
8419
|
# the vector store.
|
@@ -8362,6 +8438,7 @@ module Aws::BedrockAgent
|
|
8362
8438
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/RdsFieldMapping AWS API Documentation
|
8363
8439
|
#
|
8364
8440
|
class RdsFieldMapping < Struct.new(
|
8441
|
+
:custom_metadata_field,
|
8365
8442
|
:metadata_field,
|
8366
8443
|
:primary_key_field,
|
8367
8444
|
:text_field,
|
@@ -9213,6 +9290,16 @@ module Aws::BedrockAgent
|
|
9213
9290
|
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/knowledge-base-setup-neptune.html
|
9214
9291
|
# @return [Types::NeptuneAnalyticsConfiguration]
|
9215
9292
|
#
|
9293
|
+
# @!attribute [rw] opensearch_managed_cluster_configuration
|
9294
|
+
# Contains details about the storage configuration of the knowledge
|
9295
|
+
# base in OpenSearch Managed Cluster. For more information, see
|
9296
|
+
# [Create a vector index in Amazon OpenSearch Service][1].
|
9297
|
+
#
|
9298
|
+
#
|
9299
|
+
#
|
9300
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/knowledge-base-setup-osm.html
|
9301
|
+
# @return [Types::OpenSearchManagedClusterConfiguration]
|
9302
|
+
#
|
9216
9303
|
# @!attribute [rw] opensearch_serverless_configuration
|
9217
9304
|
# Contains the storage configuration of the knowledge base in Amazon
|
9218
9305
|
# OpenSearch Service.
|
@@ -9247,6 +9334,7 @@ module Aws::BedrockAgent
|
|
9247
9334
|
class StorageConfiguration < Struct.new(
|
9248
9335
|
:mongo_db_atlas_configuration,
|
9249
9336
|
:neptune_analytics_configuration,
|
9337
|
+
:opensearch_managed_cluster_configuration,
|
9250
9338
|
:opensearch_serverless_configuration,
|
9251
9339
|
:pinecone_configuration,
|
9252
9340
|
:rds_configuration,
|
@@ -9962,8 +10050,8 @@ module Aws::BedrockAgent
|
|
9962
10050
|
# The configuration settings for a computer use action.
|
9963
10051
|
#
|
9964
10052
|
# Computer use is a new Anthropic Claude model capability (in beta)
|
9965
|
-
# available with Claude 3.7 and Claude 3.5 Sonnet v2 only. For
|
9966
|
-
# information, see [Configure an Amazon Bedrock Agent to complete
|
10053
|
+
# available with Claude 3.7 Sonnet and Claude 3.5 Sonnet v2 only. For
|
10054
|
+
# more information, see [Configure an Amazon Bedrock Agent to complete
|
9967
10055
|
# tasks with computer use tools][1].
|
9968
10056
|
#
|
9969
10057
|
#
|
data/lib/aws-sdk-bedrockagent.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -762,6 +762,7 @@ module Aws
|
|
762
762
|
text_field: ::String,
|
763
763
|
vector_field: ::String
|
764
764
|
},
|
765
|
+
text_index_name: ::String?,
|
765
766
|
vector_index_name: ::String
|
766
767
|
}?,
|
767
768
|
neptune_analytics_configuration: {
|
@@ -771,6 +772,16 @@ module Aws
|
|
771
772
|
},
|
772
773
|
graph_arn: ::String
|
773
774
|
}?,
|
775
|
+
opensearch_managed_cluster_configuration: {
|
776
|
+
domain_arn: ::String,
|
777
|
+
domain_endpoint: ::String,
|
778
|
+
field_mapping: {
|
779
|
+
metadata_field: ::String,
|
780
|
+
text_field: ::String,
|
781
|
+
vector_field: ::String
|
782
|
+
},
|
783
|
+
vector_index_name: ::String
|
784
|
+
}?,
|
774
785
|
opensearch_serverless_configuration: {
|
775
786
|
collection_arn: ::String,
|
776
787
|
field_mapping: {
|
@@ -793,6 +804,7 @@ module Aws
|
|
793
804
|
credentials_secret_arn: ::String,
|
794
805
|
database_name: ::String,
|
795
806
|
field_mapping: {
|
807
|
+
custom_metadata_field: ::String?,
|
796
808
|
metadata_field: ::String,
|
797
809
|
primary_key_field: ::String,
|
798
810
|
text_field: ::String,
|
@@ -811,7 +823,7 @@ module Aws
|
|
811
823
|
},
|
812
824
|
vector_index_name: ::String
|
813
825
|
}?,
|
814
|
-
type: ("OPENSEARCH_SERVERLESS" | "PINECONE" | "REDIS_ENTERPRISE_CLOUD" | "RDS" | "MONGO_DB_ATLAS" | "NEPTUNE_ANALYTICS")
|
826
|
+
type: ("OPENSEARCH_SERVERLESS" | "PINECONE" | "REDIS_ENTERPRISE_CLOUD" | "RDS" | "MONGO_DB_ATLAS" | "NEPTUNE_ANALYTICS" | "OPENSEARCH_MANAGED_CLUSTER")
|
815
827
|
},
|
816
828
|
?tags: Hash[::String, ::String]
|
817
829
|
) -> _CreateKnowledgeBaseResponseSuccess
|
@@ -2325,6 +2337,7 @@ module Aws
|
|
2325
2337
|
text_field: ::String,
|
2326
2338
|
vector_field: ::String
|
2327
2339
|
},
|
2340
|
+
text_index_name: ::String?,
|
2328
2341
|
vector_index_name: ::String
|
2329
2342
|
}?,
|
2330
2343
|
neptune_analytics_configuration: {
|
@@ -2334,6 +2347,16 @@ module Aws
|
|
2334
2347
|
},
|
2335
2348
|
graph_arn: ::String
|
2336
2349
|
}?,
|
2350
|
+
opensearch_managed_cluster_configuration: {
|
2351
|
+
domain_arn: ::String,
|
2352
|
+
domain_endpoint: ::String,
|
2353
|
+
field_mapping: {
|
2354
|
+
metadata_field: ::String,
|
2355
|
+
text_field: ::String,
|
2356
|
+
vector_field: ::String
|
2357
|
+
},
|
2358
|
+
vector_index_name: ::String
|
2359
|
+
}?,
|
2337
2360
|
opensearch_serverless_configuration: {
|
2338
2361
|
collection_arn: ::String,
|
2339
2362
|
field_mapping: {
|
@@ -2356,6 +2379,7 @@ module Aws
|
|
2356
2379
|
credentials_secret_arn: ::String,
|
2357
2380
|
database_name: ::String,
|
2358
2381
|
field_mapping: {
|
2382
|
+
custom_metadata_field: ::String?,
|
2359
2383
|
metadata_field: ::String,
|
2360
2384
|
primary_key_field: ::String,
|
2361
2385
|
text_field: ::String,
|
@@ -2374,7 +2398,7 @@ module Aws
|
|
2374
2398
|
},
|
2375
2399
|
vector_index_name: ::String
|
2376
2400
|
}?,
|
2377
|
-
type: ("OPENSEARCH_SERVERLESS" | "PINECONE" | "REDIS_ENTERPRISE_CLOUD" | "RDS" | "MONGO_DB_ATLAS" | "NEPTUNE_ANALYTICS")
|
2401
|
+
type: ("OPENSEARCH_SERVERLESS" | "PINECONE" | "REDIS_ENTERPRISE_CLOUD" | "RDS" | "MONGO_DB_ATLAS" | "NEPTUNE_ANALYTICS" | "OPENSEARCH_MANAGED_CLUSTER")
|
2378
2402
|
}
|
2379
2403
|
) -> _UpdateKnowledgeBaseResponseSuccess
|
2380
2404
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateKnowledgeBaseResponseSuccess
|
data/sig/types.rbs
CHANGED
@@ -1807,6 +1807,7 @@ module Aws::BedrockAgent
|
|
1807
1807
|
attr_accessor endpoint: ::String
|
1808
1808
|
attr_accessor endpoint_service_name: ::String
|
1809
1809
|
attr_accessor field_mapping: Types::MongoDbAtlasFieldMapping
|
1810
|
+
attr_accessor text_index_name: ::String
|
1810
1811
|
attr_accessor vector_index_name: ::String
|
1811
1812
|
SENSITIVE: []
|
1812
1813
|
end
|
@@ -1836,6 +1837,21 @@ module Aws::BedrockAgent
|
|
1836
1837
|
SENSITIVE: []
|
1837
1838
|
end
|
1838
1839
|
|
1840
|
+
class OpenSearchManagedClusterConfiguration
|
1841
|
+
attr_accessor domain_arn: ::String
|
1842
|
+
attr_accessor domain_endpoint: ::String
|
1843
|
+
attr_accessor field_mapping: Types::OpenSearchManagedClusterFieldMapping
|
1844
|
+
attr_accessor vector_index_name: ::String
|
1845
|
+
SENSITIVE: [:vector_index_name]
|
1846
|
+
end
|
1847
|
+
|
1848
|
+
class OpenSearchManagedClusterFieldMapping
|
1849
|
+
attr_accessor metadata_field: ::String
|
1850
|
+
attr_accessor text_field: ::String
|
1851
|
+
attr_accessor vector_field: ::String
|
1852
|
+
SENSITIVE: []
|
1853
|
+
end
|
1854
|
+
|
1839
1855
|
class OpenSearchServerlessConfiguration
|
1840
1856
|
attr_accessor collection_arn: ::String
|
1841
1857
|
attr_accessor field_mapping: Types::OpenSearchServerlessFieldMapping
|
@@ -2105,6 +2121,7 @@ module Aws::BedrockAgent
|
|
2105
2121
|
end
|
2106
2122
|
|
2107
2123
|
class RdsFieldMapping
|
2124
|
+
attr_accessor custom_metadata_field: ::String
|
2108
2125
|
attr_accessor metadata_field: ::String
|
2109
2126
|
attr_accessor primary_key_field: ::String
|
2110
2127
|
attr_accessor text_field: ::String
|
@@ -2337,11 +2354,12 @@ module Aws::BedrockAgent
|
|
2337
2354
|
class StorageConfiguration
|
2338
2355
|
attr_accessor mongo_db_atlas_configuration: Types::MongoDbAtlasConfiguration
|
2339
2356
|
attr_accessor neptune_analytics_configuration: Types::NeptuneAnalyticsConfiguration
|
2357
|
+
attr_accessor opensearch_managed_cluster_configuration: Types::OpenSearchManagedClusterConfiguration
|
2340
2358
|
attr_accessor opensearch_serverless_configuration: Types::OpenSearchServerlessConfiguration
|
2341
2359
|
attr_accessor pinecone_configuration: Types::PineconeConfiguration
|
2342
2360
|
attr_accessor rds_configuration: Types::RdsConfiguration
|
2343
2361
|
attr_accessor redis_enterprise_cloud_configuration: Types::RedisEnterpriseCloudConfiguration
|
2344
|
-
attr_accessor type: ("OPENSEARCH_SERVERLESS" | "PINECONE" | "REDIS_ENTERPRISE_CLOUD" | "RDS" | "MONGO_DB_ATLAS" | "NEPTUNE_ANALYTICS")
|
2362
|
+
attr_accessor type: ("OPENSEARCH_SERVERLESS" | "PINECONE" | "REDIS_ENTERPRISE_CLOUD" | "RDS" | "MONGO_DB_ATLAS" | "NEPTUNE_ANALYTICS" | "OPENSEARCH_MANAGED_CLUSTER")
|
2345
2363
|
SENSITIVE: []
|
2346
2364
|
end
|
2347
2365
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-bedrockagent
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.53.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03
|
11
|
+
date: 2025-04-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|