aws-sdk-opensearchserverless 1.49.0 → 1.50.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-opensearchserverless/client.rb +10 -1
- data/lib/aws-sdk-opensearchserverless/client_api.rb +9 -0
- data/lib/aws-sdk-opensearchserverless/types.rb +34 -0
- data/lib/aws-sdk-opensearchserverless.rb +1 -1
- data/sig/client.rbs +3 -0
- data/sig/types.rbs +8 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eb72d8f77e4dce0d52c1a78c47aa290beb736adc585db178133079753766ee5d
|
|
4
|
+
data.tar.gz: 0c5f8cd945a9153d7513d290c92c0d4014b79373818063ca989d45d4a96d9689
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7fad61efe7c213917dc99a61a7aae486cc9a53fba9a3d712b46a96be94b4f2cd1c44de8e57e0b79a198922bdc68dfe3b411c8d0cf7a53f68aac001ef155858fd
|
|
7
|
+
data.tar.gz: 91860bf5a99104d914815530479aab2421250617f072f19c506b7aeb5e8737e04d7a7d13fef588712f50ef2ce1c6298faf712ace45cb4a9ead90d982515c569f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.50.0 (2025-12-02)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - GPU-acceleration helps you build large-scale vector databases faster and more efficiently. You can enable this feature on new OpenSearch domains and OpenSearch Serverless collections. This feature uses GPU-acceleration to reduce the time needed to index data into vector indexes.
|
|
8
|
+
|
|
4
9
|
1.49.0 (2025-11-21)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.50.0
|
|
@@ -528,6 +528,7 @@ module Aws::OpenSearchServerless
|
|
|
528
528
|
# resp.collection_details[0].arn #=> String
|
|
529
529
|
# resp.collection_details[0].kms_key_arn #=> String
|
|
530
530
|
# resp.collection_details[0].standby_replicas #=> String, one of "ENABLED", "DISABLED"
|
|
531
|
+
# resp.collection_details[0].vector_options.serverless_vector_acceleration #=> String, one of "ENABLED", "DISABLED", "ALLOWED"
|
|
531
532
|
# resp.collection_details[0].created_date #=> Integer
|
|
532
533
|
# resp.collection_details[0].last_modified_date #=> Integer
|
|
533
534
|
# resp.collection_details[0].collection_endpoint #=> String
|
|
@@ -789,6 +790,10 @@ module Aws::OpenSearchServerless
|
|
|
789
790
|
# @option params [String] :standby_replicas
|
|
790
791
|
# Indicates whether standby replicas should be used for a collection.
|
|
791
792
|
#
|
|
793
|
+
# @option params [Types::VectorOptions] :vector_options
|
|
794
|
+
# Configuration options for vector search capabilities in the
|
|
795
|
+
# collection.
|
|
796
|
+
#
|
|
792
797
|
# @option params [String] :client_token
|
|
793
798
|
# Unique, case-sensitive identifier to ensure idempotency of the
|
|
794
799
|
# request.
|
|
@@ -813,6 +818,9 @@ module Aws::OpenSearchServerless
|
|
|
813
818
|
# },
|
|
814
819
|
# ],
|
|
815
820
|
# standby_replicas: "ENABLED", # accepts ENABLED, DISABLED
|
|
821
|
+
# vector_options: {
|
|
822
|
+
# serverless_vector_acceleration: "ENABLED", # required, accepts ENABLED, DISABLED, ALLOWED
|
|
823
|
+
# },
|
|
816
824
|
# client_token: "ClientToken",
|
|
817
825
|
# })
|
|
818
826
|
#
|
|
@@ -826,6 +834,7 @@ module Aws::OpenSearchServerless
|
|
|
826
834
|
# resp.create_collection_detail.arn #=> String
|
|
827
835
|
# resp.create_collection_detail.kms_key_arn #=> String
|
|
828
836
|
# resp.create_collection_detail.standby_replicas #=> String, one of "ENABLED", "DISABLED"
|
|
837
|
+
# resp.create_collection_detail.vector_options.serverless_vector_acceleration #=> String, one of "ENABLED", "DISABLED", "ALLOWED"
|
|
829
838
|
# resp.create_collection_detail.created_date #=> Integer
|
|
830
839
|
# resp.create_collection_detail.last_modified_date #=> Integer
|
|
831
840
|
#
|
|
@@ -2647,7 +2656,7 @@ module Aws::OpenSearchServerless
|
|
|
2647
2656
|
tracer: tracer
|
|
2648
2657
|
)
|
|
2649
2658
|
context[:gem_name] = 'aws-sdk-opensearchserverless'
|
|
2650
|
-
context[:gem_version] = '1.
|
|
2659
|
+
context[:gem_version] = '1.50.0'
|
|
2651
2660
|
Seahorse::Client::Request.new(handlers, context)
|
|
2652
2661
|
end
|
|
2653
2662
|
|
|
@@ -172,6 +172,7 @@ module Aws::OpenSearchServerless
|
|
|
172
172
|
SecurityPolicySummaries = Shapes::ListShape.new(name: 'SecurityPolicySummaries')
|
|
173
173
|
SecurityPolicySummary = Shapes::StructureShape.new(name: 'SecurityPolicySummary')
|
|
174
174
|
SecurityPolicyType = Shapes::StringShape.new(name: 'SecurityPolicyType')
|
|
175
|
+
ServerlessVectorAccelerationStatus = Shapes::StringShape.new(name: 'ServerlessVectorAccelerationStatus')
|
|
175
176
|
ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
|
|
176
177
|
StandbyReplicas = Shapes::StringShape.new(name: 'StandbyReplicas')
|
|
177
178
|
String = Shapes::StringShape.new(name: 'String')
|
|
@@ -207,6 +208,7 @@ module Aws::OpenSearchServerless
|
|
|
207
208
|
UpdateVpcEndpointRequest = Shapes::StructureShape.new(name: 'UpdateVpcEndpointRequest')
|
|
208
209
|
UpdateVpcEndpointResponse = Shapes::StructureShape.new(name: 'UpdateVpcEndpointResponse')
|
|
209
210
|
ValidationException = Shapes::StructureShape.new(name: 'ValidationException')
|
|
211
|
+
VectorOptions = Shapes::StructureShape.new(name: 'VectorOptions')
|
|
210
212
|
VpcEndpointDetail = Shapes::StructureShape.new(name: 'VpcEndpointDetail')
|
|
211
213
|
VpcEndpointDetails = Shapes::ListShape.new(name: 'VpcEndpointDetails')
|
|
212
214
|
VpcEndpointErrorDetail = Shapes::StructureShape.new(name: 'VpcEndpointErrorDetail')
|
|
@@ -292,6 +294,7 @@ module Aws::OpenSearchServerless
|
|
|
292
294
|
CollectionDetail.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "arn"))
|
|
293
295
|
CollectionDetail.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: String, location_name: "kmsKeyArn"))
|
|
294
296
|
CollectionDetail.add_member(:standby_replicas, Shapes::ShapeRef.new(shape: StandbyReplicas, location_name: "standbyReplicas"))
|
|
297
|
+
CollectionDetail.add_member(:vector_options, Shapes::ShapeRef.new(shape: VectorOptions, location_name: "vectorOptions"))
|
|
295
298
|
CollectionDetail.add_member(:created_date, Shapes::ShapeRef.new(shape: Long, location_name: "createdDate"))
|
|
296
299
|
CollectionDetail.add_member(:last_modified_date, Shapes::ShapeRef.new(shape: Long, location_name: "lastModifiedDate"))
|
|
297
300
|
CollectionDetail.add_member(:collection_endpoint, Shapes::ShapeRef.new(shape: String, location_name: "collectionEndpoint"))
|
|
@@ -348,6 +351,7 @@ module Aws::OpenSearchServerless
|
|
|
348
351
|
CreateCollectionDetail.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "arn"))
|
|
349
352
|
CreateCollectionDetail.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: String, location_name: "kmsKeyArn"))
|
|
350
353
|
CreateCollectionDetail.add_member(:standby_replicas, Shapes::ShapeRef.new(shape: StandbyReplicas, location_name: "standbyReplicas"))
|
|
354
|
+
CreateCollectionDetail.add_member(:vector_options, Shapes::ShapeRef.new(shape: VectorOptions, location_name: "vectorOptions"))
|
|
351
355
|
CreateCollectionDetail.add_member(:created_date, Shapes::ShapeRef.new(shape: Long, location_name: "createdDate"))
|
|
352
356
|
CreateCollectionDetail.add_member(:last_modified_date, Shapes::ShapeRef.new(shape: Long, location_name: "lastModifiedDate"))
|
|
353
357
|
CreateCollectionDetail.struct_class = Types::CreateCollectionDetail
|
|
@@ -357,6 +361,7 @@ module Aws::OpenSearchServerless
|
|
|
357
361
|
CreateCollectionRequest.add_member(:description, Shapes::ShapeRef.new(shape: CreateCollectionRequestDescriptionString, location_name: "description"))
|
|
358
362
|
CreateCollectionRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
|
359
363
|
CreateCollectionRequest.add_member(:standby_replicas, Shapes::ShapeRef.new(shape: StandbyReplicas, location_name: "standbyReplicas"))
|
|
364
|
+
CreateCollectionRequest.add_member(:vector_options, Shapes::ShapeRef.new(shape: VectorOptions, location_name: "vectorOptions"))
|
|
360
365
|
CreateCollectionRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
361
366
|
CreateCollectionRequest.struct_class = Types::CreateCollectionRequest
|
|
362
367
|
|
|
@@ -863,6 +868,9 @@ module Aws::OpenSearchServerless
|
|
|
863
868
|
ValidationException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
|
864
869
|
ValidationException.struct_class = Types::ValidationException
|
|
865
870
|
|
|
871
|
+
VectorOptions.add_member(:serverless_vector_acceleration, Shapes::ShapeRef.new(shape: ServerlessVectorAccelerationStatus, required: true, location_name: "ServerlessVectorAcceleration"))
|
|
872
|
+
VectorOptions.struct_class = Types::VectorOptions
|
|
873
|
+
|
|
866
874
|
VpcEndpointDetail.add_member(:id, Shapes::ShapeRef.new(shape: VpcEndpointId, location_name: "id"))
|
|
867
875
|
VpcEndpointDetail.add_member(:name, Shapes::ShapeRef.new(shape: VpcEndpointName, location_name: "name"))
|
|
868
876
|
VpcEndpointDetail.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, location_name: "vpcId"))
|
|
@@ -1339,6 +1347,7 @@ module Aws::OpenSearchServerless
|
|
|
1339
1347
|
o.output = Shapes::ShapeRef.new(shape: UpdateAccountSettingsResponse)
|
|
1340
1348
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
1341
1349
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
1350
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
1342
1351
|
end)
|
|
1343
1352
|
|
|
1344
1353
|
api.add_operation(:update_collection, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -324,6 +324,11 @@ module Aws::OpenSearchServerless
|
|
|
324
324
|
# Details about an OpenSearch Serverless collection.
|
|
325
325
|
# @return [String]
|
|
326
326
|
#
|
|
327
|
+
# @!attribute [rw] vector_options
|
|
328
|
+
# Configuration options for vector search capabilities in the
|
|
329
|
+
# collection.
|
|
330
|
+
# @return [Types::VectorOptions]
|
|
331
|
+
#
|
|
327
332
|
# @!attribute [rw] created_date
|
|
328
333
|
# The Epoch time when the collection was created.
|
|
329
334
|
# @return [Integer]
|
|
@@ -367,6 +372,7 @@ module Aws::OpenSearchServerless
|
|
|
367
372
|
:arn,
|
|
368
373
|
:kms_key_arn,
|
|
369
374
|
:standby_replicas,
|
|
375
|
+
:vector_options,
|
|
370
376
|
:created_date,
|
|
371
377
|
:last_modified_date,
|
|
372
378
|
:collection_endpoint,
|
|
@@ -558,6 +564,11 @@ module Aws::OpenSearchServerless
|
|
|
558
564
|
# Creates details about an OpenSearch Serverless collection.
|
|
559
565
|
# @return [String]
|
|
560
566
|
#
|
|
567
|
+
# @!attribute [rw] vector_options
|
|
568
|
+
# Configuration options for vector search capabilities in the
|
|
569
|
+
# collection.
|
|
570
|
+
# @return [Types::VectorOptions]
|
|
571
|
+
#
|
|
561
572
|
# @!attribute [rw] created_date
|
|
562
573
|
# The Epoch time when the collection was created.
|
|
563
574
|
# @return [Integer]
|
|
@@ -577,6 +588,7 @@ module Aws::OpenSearchServerless
|
|
|
577
588
|
:arn,
|
|
578
589
|
:kms_key_arn,
|
|
579
590
|
:standby_replicas,
|
|
591
|
+
:vector_options,
|
|
580
592
|
:created_date,
|
|
581
593
|
:last_modified_date)
|
|
582
594
|
SENSITIVE = []
|
|
@@ -604,6 +616,11 @@ module Aws::OpenSearchServerless
|
|
|
604
616
|
# Indicates whether standby replicas should be used for a collection.
|
|
605
617
|
# @return [String]
|
|
606
618
|
#
|
|
619
|
+
# @!attribute [rw] vector_options
|
|
620
|
+
# Configuration options for vector search capabilities in the
|
|
621
|
+
# collection.
|
|
622
|
+
# @return [Types::VectorOptions]
|
|
623
|
+
#
|
|
607
624
|
# @!attribute [rw] client_token
|
|
608
625
|
# Unique, case-sensitive identifier to ensure idempotency of the
|
|
609
626
|
# request.
|
|
@@ -620,6 +637,7 @@ module Aws::OpenSearchServerless
|
|
|
620
637
|
:description,
|
|
621
638
|
:tags,
|
|
622
639
|
:standby_replicas,
|
|
640
|
+
:vector_options,
|
|
623
641
|
:client_token)
|
|
624
642
|
SENSITIVE = []
|
|
625
643
|
include Aws::Structure
|
|
@@ -2934,6 +2952,22 @@ module Aws::OpenSearchServerless
|
|
|
2934
2952
|
include Aws::Structure
|
|
2935
2953
|
end
|
|
2936
2954
|
|
|
2955
|
+
# Configuration options for vector search capabilities in an OpenSearch
|
|
2956
|
+
# Serverless collection.
|
|
2957
|
+
#
|
|
2958
|
+
# @!attribute [rw] serverless_vector_acceleration
|
|
2959
|
+
# Specifies whether serverless vector acceleration is enabled for the
|
|
2960
|
+
# collection.
|
|
2961
|
+
# @return [String]
|
|
2962
|
+
#
|
|
2963
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearchserverless-2021-11-01/VectorOptions AWS API Documentation
|
|
2964
|
+
#
|
|
2965
|
+
class VectorOptions < Struct.new(
|
|
2966
|
+
:serverless_vector_acceleration)
|
|
2967
|
+
SENSITIVE = []
|
|
2968
|
+
include Aws::Structure
|
|
2969
|
+
end
|
|
2970
|
+
|
|
2937
2971
|
# Details about an OpenSearch Serverless-managed interface endpoint.
|
|
2938
2972
|
#
|
|
2939
2973
|
# @!attribute [rw] id
|
data/sig/client.rbs
CHANGED
|
@@ -164,6 +164,9 @@ module Aws
|
|
|
164
164
|
},
|
|
165
165
|
],
|
|
166
166
|
?standby_replicas: ("ENABLED" | "DISABLED"),
|
|
167
|
+
?vector_options: {
|
|
168
|
+
serverless_vector_acceleration: ("ENABLED" | "DISABLED" | "ALLOWED")
|
|
169
|
+
},
|
|
167
170
|
?client_token: ::String
|
|
168
171
|
) -> _CreateCollectionResponseSuccess
|
|
169
172
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCollectionResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -99,6 +99,7 @@ module Aws::OpenSearchServerless
|
|
|
99
99
|
attr_accessor arn: ::String
|
|
100
100
|
attr_accessor kms_key_arn: ::String
|
|
101
101
|
attr_accessor standby_replicas: ("ENABLED" | "DISABLED")
|
|
102
|
+
attr_accessor vector_options: Types::VectorOptions
|
|
102
103
|
attr_accessor created_date: ::Integer
|
|
103
104
|
attr_accessor last_modified_date: ::Integer
|
|
104
105
|
attr_accessor collection_endpoint: ::String
|
|
@@ -159,6 +160,7 @@ module Aws::OpenSearchServerless
|
|
|
159
160
|
attr_accessor arn: ::String
|
|
160
161
|
attr_accessor kms_key_arn: ::String
|
|
161
162
|
attr_accessor standby_replicas: ("ENABLED" | "DISABLED")
|
|
163
|
+
attr_accessor vector_options: Types::VectorOptions
|
|
162
164
|
attr_accessor created_date: ::Integer
|
|
163
165
|
attr_accessor last_modified_date: ::Integer
|
|
164
166
|
SENSITIVE: []
|
|
@@ -170,6 +172,7 @@ module Aws::OpenSearchServerless
|
|
|
170
172
|
attr_accessor description: ::String
|
|
171
173
|
attr_accessor tags: ::Array[Types::Tag]
|
|
172
174
|
attr_accessor standby_replicas: ("ENABLED" | "DISABLED")
|
|
175
|
+
attr_accessor vector_options: Types::VectorOptions
|
|
173
176
|
attr_accessor client_token: ::String
|
|
174
177
|
SENSITIVE: []
|
|
175
178
|
end
|
|
@@ -838,6 +841,11 @@ module Aws::OpenSearchServerless
|
|
|
838
841
|
SENSITIVE: []
|
|
839
842
|
end
|
|
840
843
|
|
|
844
|
+
class VectorOptions
|
|
845
|
+
attr_accessor serverless_vector_acceleration: ("ENABLED" | "DISABLED" | "ALLOWED")
|
|
846
|
+
SENSITIVE: []
|
|
847
|
+
end
|
|
848
|
+
|
|
841
849
|
class VpcEndpointDetail
|
|
842
850
|
attr_accessor id: ::String
|
|
843
851
|
attr_accessor name: ::String
|