aws-sdk-opensearchservice 1.80.0 → 1.81.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-opensearchservice/client.rb +14 -1
- data/lib/aws-sdk-opensearchservice/client_api.rb +6 -0
- data/lib/aws-sdk-opensearchservice/types.rb +40 -2
- data/lib/aws-sdk-opensearchservice.rb +1 -1
- data/sig/client.rbs +6 -0
- data/sig/types.rbs +7 -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: bf7081abdb04c2b6eb9868932d5e8b6302e5d5db6adc99311060dd22f1a317b6
|
|
4
|
+
data.tar.gz: 2170fbee3b9c64ab995a02fed1165f42586aac153111bbd5380e46346034fe44
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0a8d920ca3f2ef6df6c8acc8bf36218aec9162f3d84d2438356edb639bec5d7ffaedbd64a1d802853f509053a554508cd2b259328f795199efbf598f29262c16
|
|
7
|
+
data.tar.gz: a62ffae09502a773d16378cdd169c8334dd6ef04b515f7f663ff4a928f8da8e802091f61f45550249dd6dd77243b5c5f7b916bec3ffa86aa9d52e2746bcf9f42
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.81.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.80.0 (2025-11-21)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.81.0
|
|
@@ -1323,6 +1323,9 @@ module Aws::OpenSearchService
|
|
|
1323
1323
|
# s3_vectors_engine: {
|
|
1324
1324
|
# enabled: false,
|
|
1325
1325
|
# },
|
|
1326
|
+
# serverless_vector_acceleration: {
|
|
1327
|
+
# enabled: false,
|
|
1328
|
+
# },
|
|
1326
1329
|
# },
|
|
1327
1330
|
# })
|
|
1328
1331
|
#
|
|
@@ -1443,6 +1446,7 @@ module Aws::OpenSearchService
|
|
|
1443
1446
|
# resp.domain_status.aiml_options.natural_language_query_generation_options.desired_state #=> String, one of "ENABLED", "DISABLED"
|
|
1444
1447
|
# resp.domain_status.aiml_options.natural_language_query_generation_options.current_state #=> String, one of "NOT_ENABLED", "ENABLE_COMPLETE", "ENABLE_IN_PROGRESS", "ENABLE_FAILED", "DISABLE_COMPLETE", "DISABLE_IN_PROGRESS", "DISABLE_FAILED"
|
|
1445
1448
|
# resp.domain_status.aiml_options.s3_vectors_engine.enabled #=> Boolean
|
|
1449
|
+
# resp.domain_status.aiml_options.serverless_vector_acceleration.enabled #=> Boolean
|
|
1446
1450
|
#
|
|
1447
1451
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/CreateDomain AWS API Documentation
|
|
1448
1452
|
#
|
|
@@ -1970,6 +1974,7 @@ module Aws::OpenSearchService
|
|
|
1970
1974
|
# resp.domain_status.aiml_options.natural_language_query_generation_options.desired_state #=> String, one of "ENABLED", "DISABLED"
|
|
1971
1975
|
# resp.domain_status.aiml_options.natural_language_query_generation_options.current_state #=> String, one of "NOT_ENABLED", "ENABLE_COMPLETE", "ENABLE_IN_PROGRESS", "ENABLE_FAILED", "DISABLE_COMPLETE", "DISABLE_IN_PROGRESS", "DISABLE_FAILED"
|
|
1972
1976
|
# resp.domain_status.aiml_options.s3_vectors_engine.enabled #=> Boolean
|
|
1977
|
+
# resp.domain_status.aiml_options.serverless_vector_acceleration.enabled #=> Boolean
|
|
1973
1978
|
#
|
|
1974
1979
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DeleteDomain AWS API Documentation
|
|
1975
1980
|
#
|
|
@@ -2330,6 +2335,7 @@ module Aws::OpenSearchService
|
|
|
2330
2335
|
# resp.domain_status.aiml_options.natural_language_query_generation_options.desired_state #=> String, one of "ENABLED", "DISABLED"
|
|
2331
2336
|
# resp.domain_status.aiml_options.natural_language_query_generation_options.current_state #=> String, one of "NOT_ENABLED", "ENABLE_COMPLETE", "ENABLE_IN_PROGRESS", "ENABLE_FAILED", "DISABLE_COMPLETE", "DISABLE_IN_PROGRESS", "DISABLE_FAILED"
|
|
2332
2337
|
# resp.domain_status.aiml_options.s3_vectors_engine.enabled #=> Boolean
|
|
2338
|
+
# resp.domain_status.aiml_options.serverless_vector_acceleration.enabled #=> Boolean
|
|
2333
2339
|
#
|
|
2334
2340
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDomain AWS API Documentation
|
|
2335
2341
|
#
|
|
@@ -2658,6 +2664,7 @@ module Aws::OpenSearchService
|
|
|
2658
2664
|
# resp.domain_config.aiml_options.options.natural_language_query_generation_options.desired_state #=> String, one of "ENABLED", "DISABLED"
|
|
2659
2665
|
# resp.domain_config.aiml_options.options.natural_language_query_generation_options.current_state #=> String, one of "NOT_ENABLED", "ENABLE_COMPLETE", "ENABLE_IN_PROGRESS", "ENABLE_FAILED", "DISABLE_COMPLETE", "DISABLE_IN_PROGRESS", "DISABLE_FAILED"
|
|
2660
2666
|
# resp.domain_config.aiml_options.options.s3_vectors_engine.enabled #=> Boolean
|
|
2667
|
+
# resp.domain_config.aiml_options.options.serverless_vector_acceleration.enabled #=> Boolean
|
|
2661
2668
|
# resp.domain_config.aiml_options.status.creation_date #=> Time
|
|
2662
2669
|
# resp.domain_config.aiml_options.status.update_date #=> Time
|
|
2663
2670
|
# resp.domain_config.aiml_options.status.update_version #=> Integer
|
|
@@ -2907,6 +2914,7 @@ module Aws::OpenSearchService
|
|
|
2907
2914
|
# resp.domain_status_list[0].aiml_options.natural_language_query_generation_options.desired_state #=> String, one of "ENABLED", "DISABLED"
|
|
2908
2915
|
# resp.domain_status_list[0].aiml_options.natural_language_query_generation_options.current_state #=> String, one of "NOT_ENABLED", "ENABLE_COMPLETE", "ENABLE_IN_PROGRESS", "ENABLE_FAILED", "DISABLE_COMPLETE", "DISABLE_IN_PROGRESS", "DISABLE_FAILED"
|
|
2909
2916
|
# resp.domain_status_list[0].aiml_options.s3_vectors_engine.enabled #=> Boolean
|
|
2917
|
+
# resp.domain_status_list[0].aiml_options.serverless_vector_acceleration.enabled #=> Boolean
|
|
2910
2918
|
#
|
|
2911
2919
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDomains AWS API Documentation
|
|
2912
2920
|
#
|
|
@@ -3074,6 +3082,7 @@ module Aws::OpenSearchService
|
|
|
3074
3082
|
# resp.dry_run_config.aiml_options.natural_language_query_generation_options.desired_state #=> String, one of "ENABLED", "DISABLED"
|
|
3075
3083
|
# resp.dry_run_config.aiml_options.natural_language_query_generation_options.current_state #=> String, one of "NOT_ENABLED", "ENABLE_COMPLETE", "ENABLE_IN_PROGRESS", "ENABLE_FAILED", "DISABLE_COMPLETE", "DISABLE_IN_PROGRESS", "DISABLE_FAILED"
|
|
3076
3084
|
# resp.dry_run_config.aiml_options.s3_vectors_engine.enabled #=> Boolean
|
|
3085
|
+
# resp.dry_run_config.aiml_options.serverless_vector_acceleration.enabled #=> Boolean
|
|
3077
3086
|
# resp.dry_run_results.deployment_type #=> String
|
|
3078
3087
|
# resp.dry_run_results.message #=> String
|
|
3079
3088
|
#
|
|
@@ -5474,6 +5483,9 @@ module Aws::OpenSearchService
|
|
|
5474
5483
|
# s3_vectors_engine: {
|
|
5475
5484
|
# enabled: false,
|
|
5476
5485
|
# },
|
|
5486
|
+
# serverless_vector_acceleration: {
|
|
5487
|
+
# enabled: false,
|
|
5488
|
+
# },
|
|
5477
5489
|
# },
|
|
5478
5490
|
# })
|
|
5479
5491
|
#
|
|
@@ -5669,6 +5681,7 @@ module Aws::OpenSearchService
|
|
|
5669
5681
|
# resp.domain_config.aiml_options.options.natural_language_query_generation_options.desired_state #=> String, one of "ENABLED", "DISABLED"
|
|
5670
5682
|
# resp.domain_config.aiml_options.options.natural_language_query_generation_options.current_state #=> String, one of "NOT_ENABLED", "ENABLE_COMPLETE", "ENABLE_IN_PROGRESS", "ENABLE_FAILED", "DISABLE_COMPLETE", "DISABLE_IN_PROGRESS", "DISABLE_FAILED"
|
|
5671
5683
|
# resp.domain_config.aiml_options.options.s3_vectors_engine.enabled #=> Boolean
|
|
5684
|
+
# resp.domain_config.aiml_options.options.serverless_vector_acceleration.enabled #=> Boolean
|
|
5672
5685
|
# resp.domain_config.aiml_options.status.creation_date #=> Time
|
|
5673
5686
|
# resp.domain_config.aiml_options.status.update_date #=> Time
|
|
5674
5687
|
# resp.domain_config.aiml_options.status.update_version #=> Integer
|
|
@@ -6089,7 +6102,7 @@ module Aws::OpenSearchService
|
|
|
6089
6102
|
tracer: tracer
|
|
6090
6103
|
)
|
|
6091
6104
|
context[:gem_name] = 'aws-sdk-opensearchservice'
|
|
6092
|
-
context[:gem_version] = '1.
|
|
6105
|
+
context[:gem_version] = '1.81.0'
|
|
6093
6106
|
Seahorse::Client::Request.new(handlers, context)
|
|
6094
6107
|
end
|
|
6095
6108
|
|
|
@@ -470,6 +470,7 @@ module Aws::OpenSearchService
|
|
|
470
470
|
ScheduledAutoTuneSeverityType = Shapes::StringShape.new(name: 'ScheduledAutoTuneSeverityType')
|
|
471
471
|
ScheduledBy = Shapes::StringShape.new(name: 'ScheduledBy')
|
|
472
472
|
SecurityLakeDirectQueryDataSource = Shapes::StructureShape.new(name: 'SecurityLakeDirectQueryDataSource')
|
|
473
|
+
ServerlessVectorAcceleration = Shapes::StructureShape.new(name: 'ServerlessVectorAcceleration')
|
|
473
474
|
ServiceSoftwareOptions = Shapes::StructureShape.new(name: 'ServiceSoftwareOptions')
|
|
474
475
|
ServiceUrl = Shapes::StringShape.new(name: 'ServiceUrl')
|
|
475
476
|
SkipUnavailableStatus = Shapes::StringShape.new(name: 'SkipUnavailableStatus')
|
|
@@ -566,10 +567,12 @@ module Aws::OpenSearchService
|
|
|
566
567
|
|
|
567
568
|
AIMLOptionsInput.add_member(:natural_language_query_generation_options, Shapes::ShapeRef.new(shape: NaturalLanguageQueryGenerationOptionsInput, location_name: "NaturalLanguageQueryGenerationOptions"))
|
|
568
569
|
AIMLOptionsInput.add_member(:s3_vectors_engine, Shapes::ShapeRef.new(shape: S3VectorsEngine, location_name: "S3VectorsEngine"))
|
|
570
|
+
AIMLOptionsInput.add_member(:serverless_vector_acceleration, Shapes::ShapeRef.new(shape: ServerlessVectorAcceleration, location_name: "ServerlessVectorAcceleration"))
|
|
569
571
|
AIMLOptionsInput.struct_class = Types::AIMLOptionsInput
|
|
570
572
|
|
|
571
573
|
AIMLOptionsOutput.add_member(:natural_language_query_generation_options, Shapes::ShapeRef.new(shape: NaturalLanguageQueryGenerationOptionsOutput, location_name: "NaturalLanguageQueryGenerationOptions"))
|
|
572
574
|
AIMLOptionsOutput.add_member(:s3_vectors_engine, Shapes::ShapeRef.new(shape: S3VectorsEngine, location_name: "S3VectorsEngine"))
|
|
575
|
+
AIMLOptionsOutput.add_member(:serverless_vector_acceleration, Shapes::ShapeRef.new(shape: ServerlessVectorAcceleration, location_name: "ServerlessVectorAcceleration"))
|
|
573
576
|
AIMLOptionsOutput.struct_class = Types::AIMLOptionsOutput
|
|
574
577
|
|
|
575
578
|
AIMLOptionsStatus.add_member(:options, Shapes::ShapeRef.new(shape: AIMLOptionsOutput, location_name: "Options"))
|
|
@@ -1960,6 +1963,9 @@ module Aws::OpenSearchService
|
|
|
1960
1963
|
SecurityLakeDirectQueryDataSource.add_member(:role_arn, Shapes::ShapeRef.new(shape: DirectQueryDataSourceRoleArn, required: true, location_name: "RoleArn"))
|
|
1961
1964
|
SecurityLakeDirectQueryDataSource.struct_class = Types::SecurityLakeDirectQueryDataSource
|
|
1962
1965
|
|
|
1966
|
+
ServerlessVectorAcceleration.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Enabled"))
|
|
1967
|
+
ServerlessVectorAcceleration.struct_class = Types::ServerlessVectorAcceleration
|
|
1968
|
+
|
|
1963
1969
|
ServiceSoftwareOptions.add_member(:current_version, Shapes::ShapeRef.new(shape: String, location_name: "CurrentVersion"))
|
|
1964
1970
|
ServiceSoftwareOptions.add_member(:new_version, Shapes::ShapeRef.new(shape: String, location_name: "NewVersion"))
|
|
1965
1971
|
ServiceSoftwareOptions.add_member(:update_available, Shapes::ShapeRef.new(shape: Boolean, location_name: "UpdateAvailable"))
|
|
@@ -23,11 +23,22 @@ module Aws::OpenSearchService
|
|
|
23
23
|
# features on the specified domain.
|
|
24
24
|
# @return [Types::S3VectorsEngine]
|
|
25
25
|
#
|
|
26
|
+
# @!attribute [rw] serverless_vector_acceleration
|
|
27
|
+
# Specifies whether to enable serverless vector acceleration for the
|
|
28
|
+
# domain. When enabled, provides [GPU-accelerated][1] vector search
|
|
29
|
+
# capabilities for improved performance on vector workloads.
|
|
30
|
+
#
|
|
31
|
+
#
|
|
32
|
+
#
|
|
33
|
+
# [1]: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/gpu-acceleration-vector-index.html
|
|
34
|
+
# @return [Types::ServerlessVectorAcceleration]
|
|
35
|
+
#
|
|
26
36
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/AIMLOptionsInput AWS API Documentation
|
|
27
37
|
#
|
|
28
38
|
class AIMLOptionsInput < Struct.new(
|
|
29
39
|
:natural_language_query_generation_options,
|
|
30
|
-
:s3_vectors_engine
|
|
40
|
+
:s3_vectors_engine,
|
|
41
|
+
:serverless_vector_acceleration)
|
|
31
42
|
SENSITIVE = []
|
|
32
43
|
include Aws::Structure
|
|
33
44
|
end
|
|
@@ -45,11 +56,17 @@ module Aws::OpenSearchService
|
|
|
45
56
|
# features on the specified domain.
|
|
46
57
|
# @return [Types::S3VectorsEngine]
|
|
47
58
|
#
|
|
59
|
+
# @!attribute [rw] serverless_vector_acceleration
|
|
60
|
+
# The current serverless vector acceleration configuration for the
|
|
61
|
+
# domain.
|
|
62
|
+
# @return [Types::ServerlessVectorAcceleration]
|
|
63
|
+
#
|
|
48
64
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/AIMLOptionsOutput AWS API Documentation
|
|
49
65
|
#
|
|
50
66
|
class AIMLOptionsOutput < Struct.new(
|
|
51
67
|
:natural_language_query_generation_options,
|
|
52
|
-
:s3_vectors_engine
|
|
68
|
+
:s3_vectors_engine,
|
|
69
|
+
:serverless_vector_acceleration)
|
|
53
70
|
SENSITIVE = []
|
|
54
71
|
include Aws::Structure
|
|
55
72
|
end
|
|
@@ -7102,6 +7119,27 @@ module Aws::OpenSearchService
|
|
|
7102
7119
|
include Aws::Structure
|
|
7103
7120
|
end
|
|
7104
7121
|
|
|
7122
|
+
# Configuration for serverless vector acceleration, which provides
|
|
7123
|
+
# [GPU-accelerated][1] vector search capabilities for improved
|
|
7124
|
+
# performance on vector workloads.
|
|
7125
|
+
#
|
|
7126
|
+
#
|
|
7127
|
+
#
|
|
7128
|
+
# [1]: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/gpu-acceleration-vector-index.html
|
|
7129
|
+
#
|
|
7130
|
+
# @!attribute [rw] enabled
|
|
7131
|
+
# Specifies whether serverless vector acceleration is enabled for the
|
|
7132
|
+
# domain.
|
|
7133
|
+
# @return [Boolean]
|
|
7134
|
+
#
|
|
7135
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/ServerlessVectorAcceleration AWS API Documentation
|
|
7136
|
+
#
|
|
7137
|
+
class ServerlessVectorAcceleration < Struct.new(
|
|
7138
|
+
:enabled)
|
|
7139
|
+
SENSITIVE = []
|
|
7140
|
+
include Aws::Structure
|
|
7141
|
+
end
|
|
7142
|
+
|
|
7105
7143
|
# The current status of the service software for an Amazon OpenSearch
|
|
7106
7144
|
# Service domain. For more information, see [Service software updates in
|
|
7107
7145
|
# Amazon OpenSearch Service][1].
|
data/sig/client.rbs
CHANGED
|
@@ -413,6 +413,9 @@ module Aws
|
|
|
413
413
|
}?,
|
|
414
414
|
s3_vectors_engine: {
|
|
415
415
|
enabled: bool?
|
|
416
|
+
}?,
|
|
417
|
+
serverless_vector_acceleration: {
|
|
418
|
+
enabled: bool?
|
|
416
419
|
}?
|
|
417
420
|
}
|
|
418
421
|
) -> _CreateDomainResponseSuccess
|
|
@@ -1423,6 +1426,9 @@ module Aws
|
|
|
1423
1426
|
}?,
|
|
1424
1427
|
s3_vectors_engine: {
|
|
1425
1428
|
enabled: bool?
|
|
1429
|
+
}?,
|
|
1430
|
+
serverless_vector_acceleration: {
|
|
1431
|
+
enabled: bool?
|
|
1426
1432
|
}?
|
|
1427
1433
|
}
|
|
1428
1434
|
) -> _UpdateDomainConfigResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -11,12 +11,14 @@ module Aws::OpenSearchService
|
|
|
11
11
|
class AIMLOptionsInput
|
|
12
12
|
attr_accessor natural_language_query_generation_options: Types::NaturalLanguageQueryGenerationOptionsInput
|
|
13
13
|
attr_accessor s3_vectors_engine: Types::S3VectorsEngine
|
|
14
|
+
attr_accessor serverless_vector_acceleration: Types::ServerlessVectorAcceleration
|
|
14
15
|
SENSITIVE: []
|
|
15
16
|
end
|
|
16
17
|
|
|
17
18
|
class AIMLOptionsOutput
|
|
18
19
|
attr_accessor natural_language_query_generation_options: Types::NaturalLanguageQueryGenerationOptionsOutput
|
|
19
20
|
attr_accessor s3_vectors_engine: Types::S3VectorsEngine
|
|
21
|
+
attr_accessor serverless_vector_acceleration: Types::ServerlessVectorAcceleration
|
|
20
22
|
SENSITIVE: []
|
|
21
23
|
end
|
|
22
24
|
|
|
@@ -1820,6 +1822,11 @@ module Aws::OpenSearchService
|
|
|
1820
1822
|
SENSITIVE: []
|
|
1821
1823
|
end
|
|
1822
1824
|
|
|
1825
|
+
class ServerlessVectorAcceleration
|
|
1826
|
+
attr_accessor enabled: bool
|
|
1827
|
+
SENSITIVE: []
|
|
1828
|
+
end
|
|
1829
|
+
|
|
1823
1830
|
class ServiceSoftwareOptions
|
|
1824
1831
|
attr_accessor current_version: ::String
|
|
1825
1832
|
attr_accessor new_version: ::String
|