aws-sdk-bedrockagent 1.58.0 → 1.60.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 +43 -14
- data/lib/aws-sdk-bedrockagent/client_api.rb +10 -0
- data/lib/aws-sdk-bedrockagent/types.rb +37 -0
- data/lib/aws-sdk-bedrockagent.rb +1 -1
- data/sig/client.rbs +13 -2
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +9 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 49a354659b2b8884f31e8afb90fbf3a9a3557367def673104ecc0ac61f22f1a1
|
4
|
+
data.tar.gz: 41855fa169989b591b2180cadfb9817c57fa462dbc836def0639f209862f9a19
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cc35fe76d94160429564dbf0436a8a4e4948ad38da380ecdea3a73d2491e3fa1f985674cdcae233e400fd75fba2316bfbe74d3b791d02c7f1e783b96d77c5f39
|
7
|
+
data.tar.gz: 334df1d1b1aad2276b720da77fcc2778314594e6f5777044560350a099fa5387e938e972dc97f62beb30a907d6d3ecf34f82d2cedd5f7c508a71b385ea49d525
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.60.0 (2025-07-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.59.0 (2025-07-15)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add support for S3 Vectors as a vector store.
|
13
|
+
|
4
14
|
1.58.0 (2025-06-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.60.0
|
@@ -95,7 +95,7 @@ module Aws::BedrockAgent
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials. This can be an instance of any one of the
|
98
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
99
99
|
# following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -128,18 +128,23 @@ module Aws::BedrockAgent
|
|
128
128
|
# locations will be searched for credentials:
|
129
129
|
#
|
130
130
|
# * `Aws.config[:credentials]`
|
131
|
+
#
|
131
132
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
132
133
|
# `:account_id` options.
|
133
|
-
#
|
134
|
-
#
|
134
|
+
#
|
135
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
136
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
137
|
+
#
|
135
138
|
# * `~/.aws/credentials`
|
139
|
+
#
|
136
140
|
# * `~/.aws/config`
|
141
|
+
#
|
137
142
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
138
143
|
# are very aggressive. Construct and pass an instance of
|
139
144
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
140
145
|
# enable retries and extended timeouts. Instance profile credential
|
141
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
142
|
-
# to true
|
146
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
+
# to `true`.
|
143
148
|
#
|
144
149
|
# @option options [required, String] :region
|
145
150
|
# The AWS region to connect to. The configured `:region` is
|
@@ -167,6 +172,11 @@ module Aws::BedrockAgent
|
|
167
172
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
168
173
|
# not retry instead of sleeping.
|
169
174
|
#
|
175
|
+
# @option options [Array<String>] :auth_scheme_preference
|
176
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
177
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
178
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
179
|
+
#
|
170
180
|
# @option options [Boolean] :client_side_monitoring (false)
|
171
181
|
# When `true`, client-side metrics will be collected for all API requests from
|
172
182
|
# this client.
|
@@ -253,8 +263,8 @@ module Aws::BedrockAgent
|
|
253
263
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
254
264
|
#
|
255
265
|
# @option options [String] :profile ("default")
|
256
|
-
# Used when loading credentials from the shared credentials file
|
257
|
-
#
|
266
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
267
|
+
# When not specified, 'default' is used.
|
258
268
|
#
|
259
269
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
260
270
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -367,7 +377,7 @@ module Aws::BedrockAgent
|
|
367
377
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
368
378
|
#
|
369
379
|
# @option options [Aws::TokenProvider] :token_provider
|
370
|
-
#
|
380
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
371
381
|
# following classes:
|
372
382
|
#
|
373
383
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -2436,7 +2446,12 @@ module Aws::BedrockAgent
|
|
2436
2446
|
# },
|
2437
2447
|
# vector_index_name: "RedisEnterpriseCloudIndexName", # required
|
2438
2448
|
# },
|
2439
|
-
#
|
2449
|
+
# s3_vectors_configuration: {
|
2450
|
+
# index_arn: "IndexArn",
|
2451
|
+
# index_name: "IndexName",
|
2452
|
+
# vector_bucket_arn: "VectorBucketArn",
|
2453
|
+
# },
|
2454
|
+
# type: "OPENSEARCH_SERVERLESS", # required, accepts OPENSEARCH_SERVERLESS, PINECONE, REDIS_ENTERPRISE_CLOUD, RDS, MONGO_DB_ATLAS, NEPTUNE_ANALYTICS, OPENSEARCH_MANAGED_CLUSTER, S3_VECTORS
|
2440
2455
|
# },
|
2441
2456
|
# tags: {
|
2442
2457
|
# "TagKey" => "TagValue",
|
@@ -2532,7 +2547,10 @@ module Aws::BedrockAgent
|
|
2532
2547
|
# resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping.text_field #=> String
|
2533
2548
|
# resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping.vector_field #=> String
|
2534
2549
|
# resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.vector_index_name #=> String
|
2535
|
-
# resp.knowledge_base.storage_configuration.
|
2550
|
+
# resp.knowledge_base.storage_configuration.s3_vectors_configuration.index_arn #=> String
|
2551
|
+
# resp.knowledge_base.storage_configuration.s3_vectors_configuration.index_name #=> String
|
2552
|
+
# resp.knowledge_base.storage_configuration.s3_vectors_configuration.vector_bucket_arn #=> String
|
2553
|
+
# resp.knowledge_base.storage_configuration.type #=> String, one of "OPENSEARCH_SERVERLESS", "PINECONE", "REDIS_ENTERPRISE_CLOUD", "RDS", "MONGO_DB_ATLAS", "NEPTUNE_ANALYTICS", "OPENSEARCH_MANAGED_CLUSTER", "S3_VECTORS"
|
2536
2554
|
# resp.knowledge_base.updated_at #=> Time
|
2537
2555
|
#
|
2538
2556
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/CreateKnowledgeBase AWS API Documentation
|
@@ -4413,7 +4431,10 @@ module Aws::BedrockAgent
|
|
4413
4431
|
# resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping.text_field #=> String
|
4414
4432
|
# resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping.vector_field #=> String
|
4415
4433
|
# resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.vector_index_name #=> String
|
4416
|
-
# resp.knowledge_base.storage_configuration.
|
4434
|
+
# resp.knowledge_base.storage_configuration.s3_vectors_configuration.index_arn #=> String
|
4435
|
+
# resp.knowledge_base.storage_configuration.s3_vectors_configuration.index_name #=> String
|
4436
|
+
# resp.knowledge_base.storage_configuration.s3_vectors_configuration.vector_bucket_arn #=> String
|
4437
|
+
# resp.knowledge_base.storage_configuration.type #=> String, one of "OPENSEARCH_SERVERLESS", "PINECONE", "REDIS_ENTERPRISE_CLOUD", "RDS", "MONGO_DB_ATLAS", "NEPTUNE_ANALYTICS", "OPENSEARCH_MANAGED_CLUSTER", "S3_VECTORS"
|
4417
4438
|
# resp.knowledge_base.updated_at #=> Time
|
4418
4439
|
#
|
4419
4440
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/GetKnowledgeBase AWS API Documentation
|
@@ -7410,7 +7431,12 @@ module Aws::BedrockAgent
|
|
7410
7431
|
# },
|
7411
7432
|
# vector_index_name: "RedisEnterpriseCloudIndexName", # required
|
7412
7433
|
# },
|
7413
|
-
#
|
7434
|
+
# s3_vectors_configuration: {
|
7435
|
+
# index_arn: "IndexArn",
|
7436
|
+
# index_name: "IndexName",
|
7437
|
+
# vector_bucket_arn: "VectorBucketArn",
|
7438
|
+
# },
|
7439
|
+
# type: "OPENSEARCH_SERVERLESS", # required, accepts OPENSEARCH_SERVERLESS, PINECONE, REDIS_ENTERPRISE_CLOUD, RDS, MONGO_DB_ATLAS, NEPTUNE_ANALYTICS, OPENSEARCH_MANAGED_CLUSTER, S3_VECTORS
|
7414
7440
|
# },
|
7415
7441
|
# })
|
7416
7442
|
#
|
@@ -7503,7 +7529,10 @@ module Aws::BedrockAgent
|
|
7503
7529
|
# resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping.text_field #=> String
|
7504
7530
|
# resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping.vector_field #=> String
|
7505
7531
|
# resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.vector_index_name #=> String
|
7506
|
-
# resp.knowledge_base.storage_configuration.
|
7532
|
+
# resp.knowledge_base.storage_configuration.s3_vectors_configuration.index_arn #=> String
|
7533
|
+
# resp.knowledge_base.storage_configuration.s3_vectors_configuration.index_name #=> String
|
7534
|
+
# resp.knowledge_base.storage_configuration.s3_vectors_configuration.vector_bucket_arn #=> String
|
7535
|
+
# resp.knowledge_base.storage_configuration.type #=> String, one of "OPENSEARCH_SERVERLESS", "PINECONE", "REDIS_ENTERPRISE_CLOUD", "RDS", "MONGO_DB_ATLAS", "NEPTUNE_ANALYTICS", "OPENSEARCH_MANAGED_CLUSTER", "S3_VECTORS"
|
7507
7536
|
# resp.knowledge_base.updated_at #=> Time
|
7508
7537
|
#
|
7509
7538
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/UpdateKnowledgeBase AWS API Documentation
|
@@ -8077,7 +8106,7 @@ module Aws::BedrockAgent
|
|
8077
8106
|
tracer: tracer
|
8078
8107
|
)
|
8079
8108
|
context[:gem_name] = 'aws-sdk-bedrockagent'
|
8080
|
-
context[:gem_version] = '1.
|
8109
|
+
context[:gem_version] = '1.60.0'
|
8081
8110
|
Seahorse::Client::Request.new(handlers, context)
|
8082
8111
|
end
|
8083
8112
|
|
@@ -298,6 +298,8 @@ module Aws::BedrockAgent
|
|
298
298
|
IncludeExclude = Shapes::StringShape.new(name: 'IncludeExclude')
|
299
299
|
IncompatibleConnectionDataTypeFlowValidationDetails = Shapes::StructureShape.new(name: 'IncompatibleConnectionDataTypeFlowValidationDetails')
|
300
300
|
IncompatibleLoopNodeType = Shapes::StringShape.new(name: 'IncompatibleLoopNodeType')
|
301
|
+
IndexArn = Shapes::StringShape.new(name: 'IndexArn')
|
302
|
+
IndexName = Shapes::StringShape.new(name: 'IndexName')
|
301
303
|
InferenceConfiguration = Shapes::StructureShape.new(name: 'InferenceConfiguration')
|
302
304
|
IngestKnowledgeBaseDocumentsRequest = Shapes::StructureShape.new(name: 'IngestKnowledgeBaseDocumentsRequest')
|
303
305
|
IngestKnowledgeBaseDocumentsResponse = Shapes::StructureShape.new(name: 'IngestKnowledgeBaseDocumentsResponse')
|
@@ -561,6 +563,7 @@ module Aws::BedrockAgent
|
|
561
563
|
S3ObjectUri = Shapes::StringShape.new(name: 'S3ObjectUri')
|
562
564
|
S3Prefix = Shapes::StringShape.new(name: 'S3Prefix')
|
563
565
|
S3Prefixes = Shapes::ListShape.new(name: 'S3Prefixes')
|
566
|
+
S3VectorsConfiguration = Shapes::StructureShape.new(name: 'S3VectorsConfiguration')
|
564
567
|
SalesforceAuthType = Shapes::StringShape.new(name: 'SalesforceAuthType')
|
565
568
|
SalesforceCrawlerConfiguration = Shapes::StructureShape.new(name: 'SalesforceCrawlerConfiguration')
|
566
569
|
SalesforceDataSourceConfiguration = Shapes::StructureShape.new(name: 'SalesforceDataSourceConfiguration')
|
@@ -675,6 +678,7 @@ module Aws::BedrockAgent
|
|
675
678
|
ValidationException = Shapes::StructureShape.new(name: 'ValidationException')
|
676
679
|
ValidationExceptionField = Shapes::StructureShape.new(name: 'ValidationExceptionField')
|
677
680
|
ValidationExceptionFieldList = Shapes::ListShape.new(name: 'ValidationExceptionFieldList')
|
681
|
+
VectorBucketArn = Shapes::StringShape.new(name: 'VectorBucketArn')
|
678
682
|
VectorIngestionConfiguration = Shapes::StructureShape.new(name: 'VectorIngestionConfiguration')
|
679
683
|
VectorKnowledgeBaseConfiguration = Shapes::StructureShape.new(name: 'VectorKnowledgeBaseConfiguration')
|
680
684
|
VectorSearchBedrockRerankingConfiguration = Shapes::StructureShape.new(name: 'VectorSearchBedrockRerankingConfiguration')
|
@@ -2497,6 +2501,11 @@ module Aws::BedrockAgent
|
|
2497
2501
|
|
2498
2502
|
S3Prefixes.member = Shapes::ShapeRef.new(shape: S3Prefix)
|
2499
2503
|
|
2504
|
+
S3VectorsConfiguration.add_member(:index_arn, Shapes::ShapeRef.new(shape: IndexArn, location_name: "indexArn"))
|
2505
|
+
S3VectorsConfiguration.add_member(:index_name, Shapes::ShapeRef.new(shape: IndexName, location_name: "indexName"))
|
2506
|
+
S3VectorsConfiguration.add_member(:vector_bucket_arn, Shapes::ShapeRef.new(shape: VectorBucketArn, location_name: "vectorBucketArn"))
|
2507
|
+
S3VectorsConfiguration.struct_class = Types::S3VectorsConfiguration
|
2508
|
+
|
2500
2509
|
SalesforceCrawlerConfiguration.add_member(:filter_configuration, Shapes::ShapeRef.new(shape: CrawlFilterConfiguration, location_name: "filterConfiguration"))
|
2501
2510
|
SalesforceCrawlerConfiguration.struct_class = Types::SalesforceCrawlerConfiguration
|
2502
2511
|
|
@@ -2578,6 +2587,7 @@ module Aws::BedrockAgent
|
|
2578
2587
|
StorageConfiguration.add_member(:pinecone_configuration, Shapes::ShapeRef.new(shape: PineconeConfiguration, location_name: "pineconeConfiguration"))
|
2579
2588
|
StorageConfiguration.add_member(:rds_configuration, Shapes::ShapeRef.new(shape: RdsConfiguration, location_name: "rdsConfiguration"))
|
2580
2589
|
StorageConfiguration.add_member(:redis_enterprise_cloud_configuration, Shapes::ShapeRef.new(shape: RedisEnterpriseCloudConfiguration, location_name: "redisEnterpriseCloudConfiguration"))
|
2590
|
+
StorageConfiguration.add_member(:s3_vectors_configuration, Shapes::ShapeRef.new(shape: S3VectorsConfiguration, location_name: "s3VectorsConfiguration"))
|
2581
2591
|
StorageConfiguration.add_member(:type, Shapes::ShapeRef.new(shape: KnowledgeBaseStorageType, required: true, location_name: "type"))
|
2582
2592
|
StorageConfiguration.struct_class = Types::StorageConfiguration
|
2583
2593
|
|
@@ -9412,6 +9412,36 @@ module Aws::BedrockAgent
|
|
9412
9412
|
include Aws::Structure
|
9413
9413
|
end
|
9414
9414
|
|
9415
|
+
# Contains the storage configuration of the knowledge base for S3
|
9416
|
+
# vectors.
|
9417
|
+
#
|
9418
|
+
# @!attribute [rw] index_arn
|
9419
|
+
# The Amazon Resource Name (ARN) of the vector index used for the
|
9420
|
+
# knowledge base. This ARN identifies the specific vector index
|
9421
|
+
# resource within Amazon Bedrock.
|
9422
|
+
# @return [String]
|
9423
|
+
#
|
9424
|
+
# @!attribute [rw] index_name
|
9425
|
+
# The name of the vector index used for the knowledge base. This name
|
9426
|
+
# identifies the vector index within the Amazon Bedrock service.
|
9427
|
+
# @return [String]
|
9428
|
+
#
|
9429
|
+
# @!attribute [rw] vector_bucket_arn
|
9430
|
+
# The Amazon Resource Name (ARN) of the S3 bucket where vector
|
9431
|
+
# embeddings are stored. This bucket contains the vector data used by
|
9432
|
+
# the knowledge base.
|
9433
|
+
# @return [String]
|
9434
|
+
#
|
9435
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/S3VectorsConfiguration AWS API Documentation
|
9436
|
+
#
|
9437
|
+
class S3VectorsConfiguration < Struct.new(
|
9438
|
+
:index_arn,
|
9439
|
+
:index_name,
|
9440
|
+
:vector_bucket_arn)
|
9441
|
+
SENSITIVE = [:index_arn, :index_name, :vector_bucket_arn]
|
9442
|
+
include Aws::Structure
|
9443
|
+
end
|
9444
|
+
|
9415
9445
|
# The configuration of the Salesforce content. For example, configuring
|
9416
9446
|
# specific types of Salesforce content.
|
9417
9447
|
#
|
@@ -9859,6 +9889,12 @@ module Aws::BedrockAgent
|
|
9859
9889
|
# Enterprise Cloud.
|
9860
9890
|
# @return [Types::RedisEnterpriseCloudConfiguration]
|
9861
9891
|
#
|
9892
|
+
# @!attribute [rw] s3_vectors_configuration
|
9893
|
+
# The configuration settings for storing knowledge base data using S3
|
9894
|
+
# vectors. This includes vector index information and S3 bucket
|
9895
|
+
# details for vector storage.
|
9896
|
+
# @return [Types::S3VectorsConfiguration]
|
9897
|
+
#
|
9862
9898
|
# @!attribute [rw] type
|
9863
9899
|
# The vector store service in which the knowledge base is stored.
|
9864
9900
|
# @return [String]
|
@@ -9873,6 +9909,7 @@ module Aws::BedrockAgent
|
|
9873
9909
|
:pinecone_configuration,
|
9874
9910
|
:rds_configuration,
|
9875
9911
|
:redis_enterprise_cloud_configuration,
|
9912
|
+
:s3_vectors_configuration,
|
9876
9913
|
:type)
|
9877
9914
|
SENSITIVE = []
|
9878
9915
|
include Aws::Structure
|
data/lib/aws-sdk-bedrockagent.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
@@ -901,7 +902,12 @@ module Aws
|
|
901
902
|
},
|
902
903
|
vector_index_name: ::String
|
903
904
|
}?,
|
904
|
-
|
905
|
+
s3_vectors_configuration: {
|
906
|
+
index_arn: ::String?,
|
907
|
+
index_name: ::String?,
|
908
|
+
vector_bucket_arn: ::String?
|
909
|
+
}?,
|
910
|
+
type: ("OPENSEARCH_SERVERLESS" | "PINECONE" | "REDIS_ENTERPRISE_CLOUD" | "RDS" | "MONGO_DB_ATLAS" | "NEPTUNE_ANALYTICS" | "OPENSEARCH_MANAGED_CLUSTER" | "S3_VECTORS")
|
905
911
|
},
|
906
912
|
?tags: Hash[::String, ::String]
|
907
913
|
) -> _CreateKnowledgeBaseResponseSuccess
|
@@ -2556,7 +2562,12 @@ module Aws
|
|
2556
2562
|
},
|
2557
2563
|
vector_index_name: ::String
|
2558
2564
|
}?,
|
2559
|
-
|
2565
|
+
s3_vectors_configuration: {
|
2566
|
+
index_arn: ::String?,
|
2567
|
+
index_name: ::String?,
|
2568
|
+
vector_bucket_arn: ::String?
|
2569
|
+
}?,
|
2570
|
+
type: ("OPENSEARCH_SERVERLESS" | "PINECONE" | "REDIS_ENTERPRISE_CLOUD" | "RDS" | "MONGO_DB_ATLAS" | "NEPTUNE_ANALYTICS" | "OPENSEARCH_MANAGED_CLUSTER" | "S3_VECTORS")
|
2560
2571
|
}
|
2561
2572
|
) -> _UpdateKnowledgeBaseResponseSuccess
|
2562
2573
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateKnowledgeBaseResponseSuccess
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
data/sig/types.rbs
CHANGED
@@ -2394,6 +2394,13 @@ module Aws::BedrockAgent
|
|
2394
2394
|
SENSITIVE: []
|
2395
2395
|
end
|
2396
2396
|
|
2397
|
+
class S3VectorsConfiguration
|
2398
|
+
attr_accessor index_arn: ::String
|
2399
|
+
attr_accessor index_name: ::String
|
2400
|
+
attr_accessor vector_bucket_arn: ::String
|
2401
|
+
SENSITIVE: [:index_arn, :index_name, :vector_bucket_arn]
|
2402
|
+
end
|
2403
|
+
|
2397
2404
|
class SalesforceCrawlerConfiguration
|
2398
2405
|
attr_accessor filter_configuration: Types::CrawlFilterConfiguration
|
2399
2406
|
SENSITIVE: []
|
@@ -2504,7 +2511,8 @@ module Aws::BedrockAgent
|
|
2504
2511
|
attr_accessor pinecone_configuration: Types::PineconeConfiguration
|
2505
2512
|
attr_accessor rds_configuration: Types::RdsConfiguration
|
2506
2513
|
attr_accessor redis_enterprise_cloud_configuration: Types::RedisEnterpriseCloudConfiguration
|
2507
|
-
attr_accessor
|
2514
|
+
attr_accessor s3_vectors_configuration: Types::S3VectorsConfiguration
|
2515
|
+
attr_accessor type: ("OPENSEARCH_SERVERLESS" | "PINECONE" | "REDIS_ENTERPRISE_CLOUD" | "RDS" | "MONGO_DB_ATLAS" | "NEPTUNE_ANALYTICS" | "OPENSEARCH_MANAGED_CLUSTER" | "S3_VECTORS")
|
2508
2516
|
SENSITIVE: []
|
2509
2517
|
end
|
2510
2518
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.60.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.227.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.227.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|