aws-sdk-bedrockagent 1.51.0 → 1.52.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagent/client.rb +47 -9
- data/lib/aws-sdk-bedrockagent/client_api.rb +17 -0
- data/lib/aws-sdk-bedrockagent/types.rb +80 -4
- data/lib/aws-sdk-bedrockagent.rb +1 -1
- data/sig/client.rbs +22 -2
- data/sig/types.rbs +17 -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: bccfbe39e0db46b01ee241e36207c64689b8de7dd441a80b38d6637b5b71eedc
|
4
|
+
data.tar.gz: bbd236d40fd9d52076c3be0cdbb44623d59a4b1f6ba1ea7f15c66aaf7657048b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3ccb63e686c898e032365953f9f7ce91f0844f0736eb3960c94ede2c2f6bfdc08bb9dd4d32a2dad70e6538ecf716609556801c60a55358477574f29e8298d53b
|
7
|
+
data.tar.gz: bc72d52619963c32b31a2ef55326ca762a5bf567586a7a1b04e50ef6a53476f9f0e63ea682d7e3c0bf2c269281823761bd95f109ad73e6af39fdde1af483d814
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.52.0 (2025-03-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adding support for Amazon OpenSearch Managed clusters as a vector database in Knowledge Bases for Amazon Bedrock
|
8
|
+
|
4
9
|
1.51.0 (2025-03-10)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.52.0
|
@@ -2232,6 +2232,16 @@ module Aws::BedrockAgent
|
|
2232
2232
|
# },
|
2233
2233
|
# graph_arn: "GraphArn", # required
|
2234
2234
|
# },
|
2235
|
+
# opensearch_managed_cluster_configuration: {
|
2236
|
+
# domain_arn: "OpenSearchManagedClusterDomainArn", # required
|
2237
|
+
# domain_endpoint: "OpenSearchManagedClusterDomainEndpoint", # required
|
2238
|
+
# field_mapping: { # required
|
2239
|
+
# metadata_field: "FieldName", # required
|
2240
|
+
# text_field: "FieldName", # required
|
2241
|
+
# vector_field: "FieldName", # required
|
2242
|
+
# },
|
2243
|
+
# vector_index_name: "OpenSearchManagedClusterIndexName", # required
|
2244
|
+
# },
|
2235
2245
|
# opensearch_serverless_configuration: {
|
2236
2246
|
# collection_arn: "OpenSearchServerlessCollectionArn", # required
|
2237
2247
|
# field_mapping: { # required
|
@@ -2272,7 +2282,7 @@ module Aws::BedrockAgent
|
|
2272
2282
|
# },
|
2273
2283
|
# vector_index_name: "RedisEnterpriseCloudIndexName", # required
|
2274
2284
|
# },
|
2275
|
-
# type: "OPENSEARCH_SERVERLESS", # required, accepts OPENSEARCH_SERVERLESS, PINECONE, REDIS_ENTERPRISE_CLOUD, RDS, MONGO_DB_ATLAS, NEPTUNE_ANALYTICS
|
2285
|
+
# type: "OPENSEARCH_SERVERLESS", # required, accepts OPENSEARCH_SERVERLESS, PINECONE, REDIS_ENTERPRISE_CLOUD, RDS, MONGO_DB_ATLAS, NEPTUNE_ANALYTICS, OPENSEARCH_MANAGED_CLUSTER
|
2276
2286
|
# },
|
2277
2287
|
# tags: {
|
2278
2288
|
# "TagKey" => "TagValue",
|
@@ -2336,6 +2346,12 @@ module Aws::BedrockAgent
|
|
2336
2346
|
# resp.knowledge_base.storage_configuration.neptune_analytics_configuration.field_mapping.metadata_field #=> String
|
2337
2347
|
# resp.knowledge_base.storage_configuration.neptune_analytics_configuration.field_mapping.text_field #=> String
|
2338
2348
|
# resp.knowledge_base.storage_configuration.neptune_analytics_configuration.graph_arn #=> String
|
2349
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.domain_arn #=> String
|
2350
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.domain_endpoint #=> String
|
2351
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.field_mapping.metadata_field #=> String
|
2352
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.field_mapping.text_field #=> String
|
2353
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.field_mapping.vector_field #=> String
|
2354
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.vector_index_name #=> String
|
2339
2355
|
# resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.collection_arn #=> String
|
2340
2356
|
# resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.field_mapping.metadata_field #=> String
|
2341
2357
|
# resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.field_mapping.text_field #=> String
|
@@ -2360,7 +2376,7 @@ module Aws::BedrockAgent
|
|
2360
2376
|
# resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping.text_field #=> String
|
2361
2377
|
# resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping.vector_field #=> String
|
2362
2378
|
# 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"
|
2379
|
+
# 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
2380
|
# resp.knowledge_base.updated_at #=> Time
|
2365
2381
|
#
|
2366
2382
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/CreateKnowledgeBase AWS API Documentation
|
@@ -4133,6 +4149,12 @@ module Aws::BedrockAgent
|
|
4133
4149
|
# resp.knowledge_base.storage_configuration.neptune_analytics_configuration.field_mapping.metadata_field #=> String
|
4134
4150
|
# resp.knowledge_base.storage_configuration.neptune_analytics_configuration.field_mapping.text_field #=> String
|
4135
4151
|
# resp.knowledge_base.storage_configuration.neptune_analytics_configuration.graph_arn #=> String
|
4152
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.domain_arn #=> String
|
4153
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.domain_endpoint #=> String
|
4154
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.field_mapping.metadata_field #=> String
|
4155
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.field_mapping.text_field #=> String
|
4156
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.field_mapping.vector_field #=> String
|
4157
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.vector_index_name #=> String
|
4136
4158
|
# resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.collection_arn #=> String
|
4137
4159
|
# resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.field_mapping.metadata_field #=> String
|
4138
4160
|
# resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.field_mapping.text_field #=> String
|
@@ -4157,7 +4179,7 @@ module Aws::BedrockAgent
|
|
4157
4179
|
# resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping.text_field #=> String
|
4158
4180
|
# resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping.vector_field #=> String
|
4159
4181
|
# 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"
|
4182
|
+
# 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
4183
|
# resp.knowledge_base.updated_at #=> Time
|
4162
4184
|
#
|
4163
4185
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/GetKnowledgeBase AWS API Documentation
|
@@ -5837,9 +5859,9 @@ module Aws::BedrockAgent
|
|
5837
5859
|
# The configuration settings for a computer use action.
|
5838
5860
|
#
|
5839
5861
|
# 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].
|
5862
|
+
# available with Claude 3.7 Sonnet and Claude 3.5 Sonnet v2 only. For
|
5863
|
+
# more information, see [Configure an Amazon Bedrock Agent to complete
|
5864
|
+
# tasks with computer use tools][1].
|
5843
5865
|
#
|
5844
5866
|
#
|
5845
5867
|
#
|
@@ -6969,6 +6991,16 @@ module Aws::BedrockAgent
|
|
6969
6991
|
# },
|
6970
6992
|
# graph_arn: "GraphArn", # required
|
6971
6993
|
# },
|
6994
|
+
# opensearch_managed_cluster_configuration: {
|
6995
|
+
# domain_arn: "OpenSearchManagedClusterDomainArn", # required
|
6996
|
+
# domain_endpoint: "OpenSearchManagedClusterDomainEndpoint", # required
|
6997
|
+
# field_mapping: { # required
|
6998
|
+
# metadata_field: "FieldName", # required
|
6999
|
+
# text_field: "FieldName", # required
|
7000
|
+
# vector_field: "FieldName", # required
|
7001
|
+
# },
|
7002
|
+
# vector_index_name: "OpenSearchManagedClusterIndexName", # required
|
7003
|
+
# },
|
6972
7004
|
# opensearch_serverless_configuration: {
|
6973
7005
|
# collection_arn: "OpenSearchServerlessCollectionArn", # required
|
6974
7006
|
# field_mapping: { # required
|
@@ -7009,7 +7041,7 @@ module Aws::BedrockAgent
|
|
7009
7041
|
# },
|
7010
7042
|
# vector_index_name: "RedisEnterpriseCloudIndexName", # required
|
7011
7043
|
# },
|
7012
|
-
# type: "OPENSEARCH_SERVERLESS", # required, accepts OPENSEARCH_SERVERLESS, PINECONE, REDIS_ENTERPRISE_CLOUD, RDS, MONGO_DB_ATLAS, NEPTUNE_ANALYTICS
|
7044
|
+
# type: "OPENSEARCH_SERVERLESS", # required, accepts OPENSEARCH_SERVERLESS, PINECONE, REDIS_ENTERPRISE_CLOUD, RDS, MONGO_DB_ATLAS, NEPTUNE_ANALYTICS, OPENSEARCH_MANAGED_CLUSTER
|
7013
7045
|
# },
|
7014
7046
|
# })
|
7015
7047
|
#
|
@@ -7070,6 +7102,12 @@ module Aws::BedrockAgent
|
|
7070
7102
|
# resp.knowledge_base.storage_configuration.neptune_analytics_configuration.field_mapping.metadata_field #=> String
|
7071
7103
|
# resp.knowledge_base.storage_configuration.neptune_analytics_configuration.field_mapping.text_field #=> String
|
7072
7104
|
# resp.knowledge_base.storage_configuration.neptune_analytics_configuration.graph_arn #=> String
|
7105
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.domain_arn #=> String
|
7106
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.domain_endpoint #=> String
|
7107
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.field_mapping.metadata_field #=> String
|
7108
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.field_mapping.text_field #=> String
|
7109
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.field_mapping.vector_field #=> String
|
7110
|
+
# resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.vector_index_name #=> String
|
7073
7111
|
# resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.collection_arn #=> String
|
7074
7112
|
# resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.field_mapping.metadata_field #=> String
|
7075
7113
|
# resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.field_mapping.text_field #=> String
|
@@ -7094,7 +7132,7 @@ module Aws::BedrockAgent
|
|
7094
7132
|
# resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping.text_field #=> String
|
7095
7133
|
# resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping.vector_field #=> String
|
7096
7134
|
# 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"
|
7135
|
+
# 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
7136
|
# resp.knowledge_base.updated_at #=> Time
|
7099
7137
|
#
|
7100
7138
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/UpdateKnowledgeBase AWS API Documentation
|
@@ -7579,7 +7617,7 @@ module Aws::BedrockAgent
|
|
7579
7617
|
tracer: tracer
|
7580
7618
|
)
|
7581
7619
|
context[:gem_name] = 'aws-sdk-bedrockagent'
|
7582
|
-
context[:gem_version] = '1.
|
7620
|
+
context[:gem_version] = '1.52.0'
|
7583
7621
|
Seahorse::Client::Request.new(handlers, context)
|
7584
7622
|
end
|
7585
7623
|
|
@@ -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')
|
@@ -2044,6 +2049,17 @@ module Aws::BedrockAgent
|
|
2044
2049
|
NeptuneAnalyticsFieldMapping.add_member(:text_field, Shapes::ShapeRef.new(shape: FieldName, required: true, location_name: "textField"))
|
2045
2050
|
NeptuneAnalyticsFieldMapping.struct_class = Types::NeptuneAnalyticsFieldMapping
|
2046
2051
|
|
2052
|
+
OpenSearchManagedClusterConfiguration.add_member(:domain_arn, Shapes::ShapeRef.new(shape: OpenSearchManagedClusterDomainArn, required: true, location_name: "domainArn"))
|
2053
|
+
OpenSearchManagedClusterConfiguration.add_member(:domain_endpoint, Shapes::ShapeRef.new(shape: OpenSearchManagedClusterDomainEndpoint, required: true, location_name: "domainEndpoint"))
|
2054
|
+
OpenSearchManagedClusterConfiguration.add_member(:field_mapping, Shapes::ShapeRef.new(shape: OpenSearchManagedClusterFieldMapping, required: true, location_name: "fieldMapping"))
|
2055
|
+
OpenSearchManagedClusterConfiguration.add_member(:vector_index_name, Shapes::ShapeRef.new(shape: OpenSearchManagedClusterIndexName, required: true, location_name: "vectorIndexName"))
|
2056
|
+
OpenSearchManagedClusterConfiguration.struct_class = Types::OpenSearchManagedClusterConfiguration
|
2057
|
+
|
2058
|
+
OpenSearchManagedClusterFieldMapping.add_member(:metadata_field, Shapes::ShapeRef.new(shape: FieldName, required: true, location_name: "metadataField"))
|
2059
|
+
OpenSearchManagedClusterFieldMapping.add_member(:text_field, Shapes::ShapeRef.new(shape: FieldName, required: true, location_name: "textField"))
|
2060
|
+
OpenSearchManagedClusterFieldMapping.add_member(:vector_field, Shapes::ShapeRef.new(shape: FieldName, required: true, location_name: "vectorField"))
|
2061
|
+
OpenSearchManagedClusterFieldMapping.struct_class = Types::OpenSearchManagedClusterFieldMapping
|
2062
|
+
|
2047
2063
|
OpenSearchServerlessConfiguration.add_member(:collection_arn, Shapes::ShapeRef.new(shape: OpenSearchServerlessCollectionArn, required: true, location_name: "collectionArn"))
|
2048
2064
|
OpenSearchServerlessConfiguration.add_member(:field_mapping, Shapes::ShapeRef.new(shape: OpenSearchServerlessFieldMapping, required: true, location_name: "fieldMapping"))
|
2049
2065
|
OpenSearchServerlessConfiguration.add_member(:vector_index_name, Shapes::ShapeRef.new(shape: OpenSearchServerlessIndexName, required: true, location_name: "vectorIndexName"))
|
@@ -2412,6 +2428,7 @@ module Aws::BedrockAgent
|
|
2412
2428
|
|
2413
2429
|
StorageConfiguration.add_member(:mongo_db_atlas_configuration, Shapes::ShapeRef.new(shape: MongoDbAtlasConfiguration, location_name: "mongoDbAtlasConfiguration"))
|
2414
2430
|
StorageConfiguration.add_member(:neptune_analytics_configuration, Shapes::ShapeRef.new(shape: NeptuneAnalyticsConfiguration, location_name: "neptuneAnalyticsConfiguration"))
|
2431
|
+
StorageConfiguration.add_member(:opensearch_managed_cluster_configuration, Shapes::ShapeRef.new(shape: OpenSearchManagedClusterConfiguration, location_name: "opensearchManagedClusterConfiguration"))
|
2415
2432
|
StorageConfiguration.add_member(:opensearch_serverless_configuration, Shapes::ShapeRef.new(shape: OpenSearchServerlessConfiguration, location_name: "opensearchServerlessConfiguration"))
|
2416
2433
|
StorageConfiguration.add_member(:pinecone_configuration, Shapes::ShapeRef.new(shape: PineconeConfiguration, location_name: "pineconeConfiguration"))
|
2417
2434
|
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
|
@@ -7241,6 +7241,71 @@ module Aws::BedrockAgent
|
|
7241
7241
|
include Aws::Structure
|
7242
7242
|
end
|
7243
7243
|
|
7244
|
+
# Contains details about the Managed Cluster configuration of the
|
7245
|
+
# knowledge base in Amazon OpenSearch Service. For more information, see
|
7246
|
+
# [Create a vector index in OpenSearch Managed Cluster][1].
|
7247
|
+
#
|
7248
|
+
#
|
7249
|
+
#
|
7250
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/knowledge-base-setup-osm.html
|
7251
|
+
#
|
7252
|
+
# @!attribute [rw] domain_arn
|
7253
|
+
# The Amazon Resource Name (ARN) of the OpenSearch domain.
|
7254
|
+
# @return [String]
|
7255
|
+
#
|
7256
|
+
# @!attribute [rw] domain_endpoint
|
7257
|
+
# The endpoint URL the OpenSearch domain.
|
7258
|
+
# @return [String]
|
7259
|
+
#
|
7260
|
+
# @!attribute [rw] field_mapping
|
7261
|
+
# Contains the names of the fields to which to map information about
|
7262
|
+
# the vector store.
|
7263
|
+
# @return [Types::OpenSearchManagedClusterFieldMapping]
|
7264
|
+
#
|
7265
|
+
# @!attribute [rw] vector_index_name
|
7266
|
+
# The name of the vector store.
|
7267
|
+
# @return [String]
|
7268
|
+
#
|
7269
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/OpenSearchManagedClusterConfiguration AWS API Documentation
|
7270
|
+
#
|
7271
|
+
class OpenSearchManagedClusterConfiguration < Struct.new(
|
7272
|
+
:domain_arn,
|
7273
|
+
:domain_endpoint,
|
7274
|
+
:field_mapping,
|
7275
|
+
:vector_index_name)
|
7276
|
+
SENSITIVE = [:vector_index_name]
|
7277
|
+
include Aws::Structure
|
7278
|
+
end
|
7279
|
+
|
7280
|
+
# Contains the names of the fields to which to map information about the
|
7281
|
+
# vector store.
|
7282
|
+
#
|
7283
|
+
# @!attribute [rw] metadata_field
|
7284
|
+
# The name of the field in which Amazon Bedrock stores metadata about
|
7285
|
+
# the vector store.
|
7286
|
+
# @return [String]
|
7287
|
+
#
|
7288
|
+
# @!attribute [rw] text_field
|
7289
|
+
# The name of the field in which Amazon Bedrock stores the raw text
|
7290
|
+
# from your data. The text is split according to the chunking strategy
|
7291
|
+
# you choose.
|
7292
|
+
# @return [String]
|
7293
|
+
#
|
7294
|
+
# @!attribute [rw] vector_field
|
7295
|
+
# The name of the field in which Amazon Bedrock stores the vector
|
7296
|
+
# embeddings for your data sources.
|
7297
|
+
# @return [String]
|
7298
|
+
#
|
7299
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/OpenSearchManagedClusterFieldMapping AWS API Documentation
|
7300
|
+
#
|
7301
|
+
class OpenSearchManagedClusterFieldMapping < Struct.new(
|
7302
|
+
:metadata_field,
|
7303
|
+
:text_field,
|
7304
|
+
:vector_field)
|
7305
|
+
SENSITIVE = []
|
7306
|
+
include Aws::Structure
|
7307
|
+
end
|
7308
|
+
|
7244
7309
|
# Contains details about the storage configuration of the knowledge base
|
7245
7310
|
# in Amazon OpenSearch Service. For more information, see [Create a
|
7246
7311
|
# vector index in Amazon OpenSearch Service][1].
|
@@ -9213,6 +9278,16 @@ module Aws::BedrockAgent
|
|
9213
9278
|
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/knowledge-base-setup-neptune.html
|
9214
9279
|
# @return [Types::NeptuneAnalyticsConfiguration]
|
9215
9280
|
#
|
9281
|
+
# @!attribute [rw] opensearch_managed_cluster_configuration
|
9282
|
+
# Contains details about the storage configuration of the knowledge
|
9283
|
+
# base in OpenSearch Managed Cluster. For more information, see
|
9284
|
+
# [Create a vector index in Amazon OpenSearch Service][1].
|
9285
|
+
#
|
9286
|
+
#
|
9287
|
+
#
|
9288
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/knowledge-base-setup-osm.html
|
9289
|
+
# @return [Types::OpenSearchManagedClusterConfiguration]
|
9290
|
+
#
|
9216
9291
|
# @!attribute [rw] opensearch_serverless_configuration
|
9217
9292
|
# Contains the storage configuration of the knowledge base in Amazon
|
9218
9293
|
# OpenSearch Service.
|
@@ -9247,6 +9322,7 @@ module Aws::BedrockAgent
|
|
9247
9322
|
class StorageConfiguration < Struct.new(
|
9248
9323
|
:mongo_db_atlas_configuration,
|
9249
9324
|
:neptune_analytics_configuration,
|
9325
|
+
:opensearch_managed_cluster_configuration,
|
9250
9326
|
:opensearch_serverless_configuration,
|
9251
9327
|
:pinecone_configuration,
|
9252
9328
|
:rds_configuration,
|
@@ -9962,8 +10038,8 @@ module Aws::BedrockAgent
|
|
9962
10038
|
# The configuration settings for a computer use action.
|
9963
10039
|
#
|
9964
10040
|
# 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
|
10041
|
+
# available with Claude 3.7 Sonnet and Claude 3.5 Sonnet v2 only. For
|
10042
|
+
# more information, see [Configure an Amazon Bedrock Agent to complete
|
9967
10043
|
# tasks with computer use tools][1].
|
9968
10044
|
#
|
9969
10045
|
#
|
data/lib/aws-sdk-bedrockagent.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -771,6 +771,16 @@ module Aws
|
|
771
771
|
},
|
772
772
|
graph_arn: ::String
|
773
773
|
}?,
|
774
|
+
opensearch_managed_cluster_configuration: {
|
775
|
+
domain_arn: ::String,
|
776
|
+
domain_endpoint: ::String,
|
777
|
+
field_mapping: {
|
778
|
+
metadata_field: ::String,
|
779
|
+
text_field: ::String,
|
780
|
+
vector_field: ::String
|
781
|
+
},
|
782
|
+
vector_index_name: ::String
|
783
|
+
}?,
|
774
784
|
opensearch_serverless_configuration: {
|
775
785
|
collection_arn: ::String,
|
776
786
|
field_mapping: {
|
@@ -811,7 +821,7 @@ module Aws
|
|
811
821
|
},
|
812
822
|
vector_index_name: ::String
|
813
823
|
}?,
|
814
|
-
type: ("OPENSEARCH_SERVERLESS" | "PINECONE" | "REDIS_ENTERPRISE_CLOUD" | "RDS" | "MONGO_DB_ATLAS" | "NEPTUNE_ANALYTICS")
|
824
|
+
type: ("OPENSEARCH_SERVERLESS" | "PINECONE" | "REDIS_ENTERPRISE_CLOUD" | "RDS" | "MONGO_DB_ATLAS" | "NEPTUNE_ANALYTICS" | "OPENSEARCH_MANAGED_CLUSTER")
|
815
825
|
},
|
816
826
|
?tags: Hash[::String, ::String]
|
817
827
|
) -> _CreateKnowledgeBaseResponseSuccess
|
@@ -2334,6 +2344,16 @@ module Aws
|
|
2334
2344
|
},
|
2335
2345
|
graph_arn: ::String
|
2336
2346
|
}?,
|
2347
|
+
opensearch_managed_cluster_configuration: {
|
2348
|
+
domain_arn: ::String,
|
2349
|
+
domain_endpoint: ::String,
|
2350
|
+
field_mapping: {
|
2351
|
+
metadata_field: ::String,
|
2352
|
+
text_field: ::String,
|
2353
|
+
vector_field: ::String
|
2354
|
+
},
|
2355
|
+
vector_index_name: ::String
|
2356
|
+
}?,
|
2337
2357
|
opensearch_serverless_configuration: {
|
2338
2358
|
collection_arn: ::String,
|
2339
2359
|
field_mapping: {
|
@@ -2374,7 +2394,7 @@ module Aws
|
|
2374
2394
|
},
|
2375
2395
|
vector_index_name: ::String
|
2376
2396
|
}?,
|
2377
|
-
type: ("OPENSEARCH_SERVERLESS" | "PINECONE" | "REDIS_ENTERPRISE_CLOUD" | "RDS" | "MONGO_DB_ATLAS" | "NEPTUNE_ANALYTICS")
|
2397
|
+
type: ("OPENSEARCH_SERVERLESS" | "PINECONE" | "REDIS_ENTERPRISE_CLOUD" | "RDS" | "MONGO_DB_ATLAS" | "NEPTUNE_ANALYTICS" | "OPENSEARCH_MANAGED_CLUSTER")
|
2378
2398
|
}
|
2379
2399
|
) -> _UpdateKnowledgeBaseResponseSuccess
|
2380
2400
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateKnowledgeBaseResponseSuccess
|
data/sig/types.rbs
CHANGED
@@ -1836,6 +1836,21 @@ module Aws::BedrockAgent
|
|
1836
1836
|
SENSITIVE: []
|
1837
1837
|
end
|
1838
1838
|
|
1839
|
+
class OpenSearchManagedClusterConfiguration
|
1840
|
+
attr_accessor domain_arn: ::String
|
1841
|
+
attr_accessor domain_endpoint: ::String
|
1842
|
+
attr_accessor field_mapping: Types::OpenSearchManagedClusterFieldMapping
|
1843
|
+
attr_accessor vector_index_name: ::String
|
1844
|
+
SENSITIVE: [:vector_index_name]
|
1845
|
+
end
|
1846
|
+
|
1847
|
+
class OpenSearchManagedClusterFieldMapping
|
1848
|
+
attr_accessor metadata_field: ::String
|
1849
|
+
attr_accessor text_field: ::String
|
1850
|
+
attr_accessor vector_field: ::String
|
1851
|
+
SENSITIVE: []
|
1852
|
+
end
|
1853
|
+
|
1839
1854
|
class OpenSearchServerlessConfiguration
|
1840
1855
|
attr_accessor collection_arn: ::String
|
1841
1856
|
attr_accessor field_mapping: Types::OpenSearchServerlessFieldMapping
|
@@ -2337,11 +2352,12 @@ module Aws::BedrockAgent
|
|
2337
2352
|
class StorageConfiguration
|
2338
2353
|
attr_accessor mongo_db_atlas_configuration: Types::MongoDbAtlasConfiguration
|
2339
2354
|
attr_accessor neptune_analytics_configuration: Types::NeptuneAnalyticsConfiguration
|
2355
|
+
attr_accessor opensearch_managed_cluster_configuration: Types::OpenSearchManagedClusterConfiguration
|
2340
2356
|
attr_accessor opensearch_serverless_configuration: Types::OpenSearchServerlessConfiguration
|
2341
2357
|
attr_accessor pinecone_configuration: Types::PineconeConfiguration
|
2342
2358
|
attr_accessor rds_configuration: Types::RdsConfiguration
|
2343
2359
|
attr_accessor redis_enterprise_cloud_configuration: Types::RedisEnterpriseCloudConfiguration
|
2344
|
-
attr_accessor type: ("OPENSEARCH_SERVERLESS" | "PINECONE" | "REDIS_ENTERPRISE_CLOUD" | "RDS" | "MONGO_DB_ATLAS" | "NEPTUNE_ANALYTICS")
|
2360
|
+
attr_accessor type: ("OPENSEARCH_SERVERLESS" | "PINECONE" | "REDIS_ENTERPRISE_CLOUD" | "RDS" | "MONGO_DB_ATLAS" | "NEPTUNE_ANALYTICS" | "OPENSEARCH_MANAGED_CLUSTER")
|
2345
2361
|
SENSITIVE: []
|
2346
2362
|
end
|
2347
2363
|
|
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.52.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-03-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|