aws-sdk-opensearchservice 1.80.0 → 1.82.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-opensearchservice/client.rb +26 -1
- data/lib/aws-sdk-opensearchservice/client_api.rb +10 -0
- data/lib/aws-sdk-opensearchservice/types.rb +64 -5
- data/lib/aws-sdk-opensearchservice.rb +1 -1
- data/sig/client.rbs +10 -1
- data/sig/types.rbs +10 -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: 151337a5855f60f4b982c8d0824a5ca3d841bb276066671568f03ad7da3aad7c
|
|
4
|
+
data.tar.gz: 432916cc0ec16e3b71c92f14af2095dde1a0467ec25e5df08165e802313c5edc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ffddddec7e9f180aa07bb894a95dfd18014cee246edd1d667753dc1260bdf59c447c92053ac3c5b4fd934b59a4288bbc9378a2db8e0d457c220bc2c8ee4af1e2
|
|
7
|
+
data.tar.gz: 9ed945b40a2b2b67d0f9ffb3f06f5b3c5960be8a43f01f98b26d24df39334596a1a1132592f281eb67fdbe92109373e0241d62a0fcfeac74ff90015df1933459
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.82.0 (2025-12-10)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - The CreateApplication API now supports an optional kms key arn parameter to allow customers to specify a CMK for application encryption.
|
|
8
|
+
|
|
9
|
+
1.81.0 (2025-12-02)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* 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.
|
|
13
|
+
|
|
4
14
|
1.80.0 (2025-11-21)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.82.0
|
|
@@ -958,6 +958,13 @@ module Aws::OpenSearchService
|
|
|
958
958
|
# @option params [Array<Types::Tag>] :tag_list
|
|
959
959
|
# A list of tags attached to a domain.
|
|
960
960
|
#
|
|
961
|
+
# @option params [String] :kms_key_arn
|
|
962
|
+
# The Amazon Resource Name (ARN) of the KMS key used to encrypt the
|
|
963
|
+
# application's data at rest. If provided, the application uses your
|
|
964
|
+
# customer-managed key for encryption. If omitted, the application uses
|
|
965
|
+
# an AWS-managed key. The KMS key must be in the same region as the
|
|
966
|
+
# application.
|
|
967
|
+
#
|
|
961
968
|
# @return [Types::CreateApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
962
969
|
#
|
|
963
970
|
# * {Types::CreateApplicationResponse#id #id} => String
|
|
@@ -968,6 +975,7 @@ module Aws::OpenSearchService
|
|
|
968
975
|
# * {Types::CreateApplicationResponse#app_configs #app_configs} => Array<Types::AppConfig>
|
|
969
976
|
# * {Types::CreateApplicationResponse#tag_list #tag_list} => Array<Types::Tag>
|
|
970
977
|
# * {Types::CreateApplicationResponse#created_at #created_at} => Time
|
|
978
|
+
# * {Types::CreateApplicationResponse#kms_key_arn #kms_key_arn} => String
|
|
971
979
|
#
|
|
972
980
|
# @example Request syntax with placeholder values
|
|
973
981
|
#
|
|
@@ -997,6 +1005,7 @@ module Aws::OpenSearchService
|
|
|
997
1005
|
# value: "TagValue", # required
|
|
998
1006
|
# },
|
|
999
1007
|
# ],
|
|
1008
|
+
# kms_key_arn: "KmsKeyArn",
|
|
1000
1009
|
# })
|
|
1001
1010
|
#
|
|
1002
1011
|
# @example Response structure
|
|
@@ -1018,6 +1027,7 @@ module Aws::OpenSearchService
|
|
|
1018
1027
|
# resp.tag_list[0].key #=> String
|
|
1019
1028
|
# resp.tag_list[0].value #=> String
|
|
1020
1029
|
# resp.created_at #=> Time
|
|
1030
|
+
# resp.kms_key_arn #=> String
|
|
1021
1031
|
#
|
|
1022
1032
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/CreateApplication AWS API Documentation
|
|
1023
1033
|
#
|
|
@@ -1323,6 +1333,9 @@ module Aws::OpenSearchService
|
|
|
1323
1333
|
# s3_vectors_engine: {
|
|
1324
1334
|
# enabled: false,
|
|
1325
1335
|
# },
|
|
1336
|
+
# serverless_vector_acceleration: {
|
|
1337
|
+
# enabled: false,
|
|
1338
|
+
# },
|
|
1326
1339
|
# },
|
|
1327
1340
|
# })
|
|
1328
1341
|
#
|
|
@@ -1443,6 +1456,7 @@ module Aws::OpenSearchService
|
|
|
1443
1456
|
# resp.domain_status.aiml_options.natural_language_query_generation_options.desired_state #=> String, one of "ENABLED", "DISABLED"
|
|
1444
1457
|
# 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
1458
|
# resp.domain_status.aiml_options.s3_vectors_engine.enabled #=> Boolean
|
|
1459
|
+
# resp.domain_status.aiml_options.serverless_vector_acceleration.enabled #=> Boolean
|
|
1446
1460
|
#
|
|
1447
1461
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/CreateDomain AWS API Documentation
|
|
1448
1462
|
#
|
|
@@ -1970,6 +1984,7 @@ module Aws::OpenSearchService
|
|
|
1970
1984
|
# resp.domain_status.aiml_options.natural_language_query_generation_options.desired_state #=> String, one of "ENABLED", "DISABLED"
|
|
1971
1985
|
# 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
1986
|
# resp.domain_status.aiml_options.s3_vectors_engine.enabled #=> Boolean
|
|
1987
|
+
# resp.domain_status.aiml_options.serverless_vector_acceleration.enabled #=> Boolean
|
|
1973
1988
|
#
|
|
1974
1989
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DeleteDomain AWS API Documentation
|
|
1975
1990
|
#
|
|
@@ -2330,6 +2345,7 @@ module Aws::OpenSearchService
|
|
|
2330
2345
|
# resp.domain_status.aiml_options.natural_language_query_generation_options.desired_state #=> String, one of "ENABLED", "DISABLED"
|
|
2331
2346
|
# 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
2347
|
# resp.domain_status.aiml_options.s3_vectors_engine.enabled #=> Boolean
|
|
2348
|
+
# resp.domain_status.aiml_options.serverless_vector_acceleration.enabled #=> Boolean
|
|
2333
2349
|
#
|
|
2334
2350
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDomain AWS API Documentation
|
|
2335
2351
|
#
|
|
@@ -2658,6 +2674,7 @@ module Aws::OpenSearchService
|
|
|
2658
2674
|
# resp.domain_config.aiml_options.options.natural_language_query_generation_options.desired_state #=> String, one of "ENABLED", "DISABLED"
|
|
2659
2675
|
# 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
2676
|
# resp.domain_config.aiml_options.options.s3_vectors_engine.enabled #=> Boolean
|
|
2677
|
+
# resp.domain_config.aiml_options.options.serverless_vector_acceleration.enabled #=> Boolean
|
|
2661
2678
|
# resp.domain_config.aiml_options.status.creation_date #=> Time
|
|
2662
2679
|
# resp.domain_config.aiml_options.status.update_date #=> Time
|
|
2663
2680
|
# resp.domain_config.aiml_options.status.update_version #=> Integer
|
|
@@ -2907,6 +2924,7 @@ module Aws::OpenSearchService
|
|
|
2907
2924
|
# resp.domain_status_list[0].aiml_options.natural_language_query_generation_options.desired_state #=> String, one of "ENABLED", "DISABLED"
|
|
2908
2925
|
# 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
2926
|
# resp.domain_status_list[0].aiml_options.s3_vectors_engine.enabled #=> Boolean
|
|
2927
|
+
# resp.domain_status_list[0].aiml_options.serverless_vector_acceleration.enabled #=> Boolean
|
|
2910
2928
|
#
|
|
2911
2929
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDomains AWS API Documentation
|
|
2912
2930
|
#
|
|
@@ -3074,6 +3092,7 @@ module Aws::OpenSearchService
|
|
|
3074
3092
|
# resp.dry_run_config.aiml_options.natural_language_query_generation_options.desired_state #=> String, one of "ENABLED", "DISABLED"
|
|
3075
3093
|
# 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
3094
|
# resp.dry_run_config.aiml_options.s3_vectors_engine.enabled #=> Boolean
|
|
3095
|
+
# resp.dry_run_config.aiml_options.serverless_vector_acceleration.enabled #=> Boolean
|
|
3077
3096
|
# resp.dry_run_results.deployment_type #=> String
|
|
3078
3097
|
# resp.dry_run_results.message #=> String
|
|
3079
3098
|
#
|
|
@@ -3651,6 +3670,7 @@ module Aws::OpenSearchService
|
|
|
3651
3670
|
# * {Types::GetApplicationResponse#app_configs #app_configs} => Array<Types::AppConfig>
|
|
3652
3671
|
# * {Types::GetApplicationResponse#created_at #created_at} => Time
|
|
3653
3672
|
# * {Types::GetApplicationResponse#last_updated_at #last_updated_at} => Time
|
|
3673
|
+
# * {Types::GetApplicationResponse#kms_key_arn #kms_key_arn} => String
|
|
3654
3674
|
#
|
|
3655
3675
|
# @example Request syntax with placeholder values
|
|
3656
3676
|
#
|
|
@@ -3677,6 +3697,7 @@ module Aws::OpenSearchService
|
|
|
3677
3697
|
# resp.app_configs[0].value #=> String
|
|
3678
3698
|
# resp.created_at #=> Time
|
|
3679
3699
|
# resp.last_updated_at #=> Time
|
|
3700
|
+
# resp.kms_key_arn #=> String
|
|
3680
3701
|
#
|
|
3681
3702
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/GetApplication AWS API Documentation
|
|
3682
3703
|
#
|
|
@@ -5474,6 +5495,9 @@ module Aws::OpenSearchService
|
|
|
5474
5495
|
# s3_vectors_engine: {
|
|
5475
5496
|
# enabled: false,
|
|
5476
5497
|
# },
|
|
5498
|
+
# serverless_vector_acceleration: {
|
|
5499
|
+
# enabled: false,
|
|
5500
|
+
# },
|
|
5477
5501
|
# },
|
|
5478
5502
|
# })
|
|
5479
5503
|
#
|
|
@@ -5669,6 +5693,7 @@ module Aws::OpenSearchService
|
|
|
5669
5693
|
# resp.domain_config.aiml_options.options.natural_language_query_generation_options.desired_state #=> String, one of "ENABLED", "DISABLED"
|
|
5670
5694
|
# 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
5695
|
# resp.domain_config.aiml_options.options.s3_vectors_engine.enabled #=> Boolean
|
|
5696
|
+
# resp.domain_config.aiml_options.options.serverless_vector_acceleration.enabled #=> Boolean
|
|
5672
5697
|
# resp.domain_config.aiml_options.status.creation_date #=> Time
|
|
5673
5698
|
# resp.domain_config.aiml_options.status.update_date #=> Time
|
|
5674
5699
|
# resp.domain_config.aiml_options.status.update_version #=> Integer
|
|
@@ -6089,7 +6114,7 @@ module Aws::OpenSearchService
|
|
|
6089
6114
|
tracer: tracer
|
|
6090
6115
|
)
|
|
6091
6116
|
context[:gem_name] = 'aws-sdk-opensearchservice'
|
|
6092
|
-
context[:gem_version] = '1.
|
|
6117
|
+
context[:gem_version] = '1.82.0'
|
|
6093
6118
|
Seahorse::Client::Request.new(handlers, context)
|
|
6094
6119
|
end
|
|
6095
6120
|
|
|
@@ -310,6 +310,7 @@ module Aws::OpenSearchService
|
|
|
310
310
|
JWTOptionsInput = Shapes::StructureShape.new(name: 'JWTOptionsInput')
|
|
311
311
|
JWTOptionsOutput = Shapes::StructureShape.new(name: 'JWTOptionsOutput')
|
|
312
312
|
KeyStoreAccessOption = Shapes::StructureShape.new(name: 'KeyStoreAccessOption')
|
|
313
|
+
KmsKeyArn = Shapes::StringShape.new(name: 'KmsKeyArn')
|
|
313
314
|
KmsKeyId = Shapes::StringShape.new(name: 'KmsKeyId')
|
|
314
315
|
LastUpdated = Shapes::TimestampShape.new(name: 'LastUpdated')
|
|
315
316
|
LicenseFilepath = Shapes::StringShape.new(name: 'LicenseFilepath')
|
|
@@ -470,6 +471,7 @@ module Aws::OpenSearchService
|
|
|
470
471
|
ScheduledAutoTuneSeverityType = Shapes::StringShape.new(name: 'ScheduledAutoTuneSeverityType')
|
|
471
472
|
ScheduledBy = Shapes::StringShape.new(name: 'ScheduledBy')
|
|
472
473
|
SecurityLakeDirectQueryDataSource = Shapes::StructureShape.new(name: 'SecurityLakeDirectQueryDataSource')
|
|
474
|
+
ServerlessVectorAcceleration = Shapes::StructureShape.new(name: 'ServerlessVectorAcceleration')
|
|
473
475
|
ServiceSoftwareOptions = Shapes::StructureShape.new(name: 'ServiceSoftwareOptions')
|
|
474
476
|
ServiceUrl = Shapes::StringShape.new(name: 'ServiceUrl')
|
|
475
477
|
SkipUnavailableStatus = Shapes::StringShape.new(name: 'SkipUnavailableStatus')
|
|
@@ -566,10 +568,12 @@ module Aws::OpenSearchService
|
|
|
566
568
|
|
|
567
569
|
AIMLOptionsInput.add_member(:natural_language_query_generation_options, Shapes::ShapeRef.new(shape: NaturalLanguageQueryGenerationOptionsInput, location_name: "NaturalLanguageQueryGenerationOptions"))
|
|
568
570
|
AIMLOptionsInput.add_member(:s3_vectors_engine, Shapes::ShapeRef.new(shape: S3VectorsEngine, location_name: "S3VectorsEngine"))
|
|
571
|
+
AIMLOptionsInput.add_member(:serverless_vector_acceleration, Shapes::ShapeRef.new(shape: ServerlessVectorAcceleration, location_name: "ServerlessVectorAcceleration"))
|
|
569
572
|
AIMLOptionsInput.struct_class = Types::AIMLOptionsInput
|
|
570
573
|
|
|
571
574
|
AIMLOptionsOutput.add_member(:natural_language_query_generation_options, Shapes::ShapeRef.new(shape: NaturalLanguageQueryGenerationOptionsOutput, location_name: "NaturalLanguageQueryGenerationOptions"))
|
|
572
575
|
AIMLOptionsOutput.add_member(:s3_vectors_engine, Shapes::ShapeRef.new(shape: S3VectorsEngine, location_name: "S3VectorsEngine"))
|
|
576
|
+
AIMLOptionsOutput.add_member(:serverless_vector_acceleration, Shapes::ShapeRef.new(shape: ServerlessVectorAcceleration, location_name: "ServerlessVectorAcceleration"))
|
|
573
577
|
AIMLOptionsOutput.struct_class = Types::AIMLOptionsOutput
|
|
574
578
|
|
|
575
579
|
AIMLOptionsStatus.add_member(:options, Shapes::ShapeRef.new(shape: AIMLOptionsOutput, location_name: "Options"))
|
|
@@ -862,6 +866,7 @@ module Aws::OpenSearchService
|
|
|
862
866
|
CreateApplicationRequest.add_member(:iam_identity_center_options, Shapes::ShapeRef.new(shape: IamIdentityCenterOptionsInput, location_name: "iamIdentityCenterOptions"))
|
|
863
867
|
CreateApplicationRequest.add_member(:app_configs, Shapes::ShapeRef.new(shape: AppConfigs, location_name: "appConfigs"))
|
|
864
868
|
CreateApplicationRequest.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "tagList"))
|
|
869
|
+
CreateApplicationRequest.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
|
|
865
870
|
CreateApplicationRequest.struct_class = Types::CreateApplicationRequest
|
|
866
871
|
|
|
867
872
|
CreateApplicationResponse.add_member(:id, Shapes::ShapeRef.new(shape: Id, location_name: "id"))
|
|
@@ -872,6 +877,7 @@ module Aws::OpenSearchService
|
|
|
872
877
|
CreateApplicationResponse.add_member(:app_configs, Shapes::ShapeRef.new(shape: AppConfigs, location_name: "appConfigs"))
|
|
873
878
|
CreateApplicationResponse.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "tagList"))
|
|
874
879
|
CreateApplicationResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
|
|
880
|
+
CreateApplicationResponse.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
|
|
875
881
|
CreateApplicationResponse.struct_class = Types::CreateApplicationResponse
|
|
876
882
|
|
|
877
883
|
CreateDomainRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location_name: "DomainName"))
|
|
@@ -1383,6 +1389,7 @@ module Aws::OpenSearchService
|
|
|
1383
1389
|
GetApplicationResponse.add_member(:app_configs, Shapes::ShapeRef.new(shape: AppConfigs, location_name: "appConfigs"))
|
|
1384
1390
|
GetApplicationResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
|
|
1385
1391
|
GetApplicationResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastUpdatedAt"))
|
|
1392
|
+
GetApplicationResponse.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
|
|
1386
1393
|
GetApplicationResponse.struct_class = Types::GetApplicationResponse
|
|
1387
1394
|
|
|
1388
1395
|
GetCompatibleVersionsRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, location: "querystring", location_name: "domainName"))
|
|
@@ -1960,6 +1967,9 @@ module Aws::OpenSearchService
|
|
|
1960
1967
|
SecurityLakeDirectQueryDataSource.add_member(:role_arn, Shapes::ShapeRef.new(shape: DirectQueryDataSourceRoleArn, required: true, location_name: "RoleArn"))
|
|
1961
1968
|
SecurityLakeDirectQueryDataSource.struct_class = Types::SecurityLakeDirectQueryDataSource
|
|
1962
1969
|
|
|
1970
|
+
ServerlessVectorAcceleration.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Enabled"))
|
|
1971
|
+
ServerlessVectorAcceleration.struct_class = Types::ServerlessVectorAcceleration
|
|
1972
|
+
|
|
1963
1973
|
ServiceSoftwareOptions.add_member(:current_version, Shapes::ShapeRef.new(shape: String, location_name: "CurrentVersion"))
|
|
1964
1974
|
ServiceSoftwareOptions.add_member(:new_version, Shapes::ShapeRef.new(shape: String, location_name: "NewVersion"))
|
|
1965
1975
|
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
|
|
@@ -1558,6 +1575,14 @@ module Aws::OpenSearchService
|
|
|
1558
1575
|
# A list of tags attached to a domain.
|
|
1559
1576
|
# @return [Array<Types::Tag>]
|
|
1560
1577
|
#
|
|
1578
|
+
# @!attribute [rw] kms_key_arn
|
|
1579
|
+
# The Amazon Resource Name (ARN) of the KMS key used to encrypt the
|
|
1580
|
+
# application's data at rest. If provided, the application uses your
|
|
1581
|
+
# customer-managed key for encryption. If omitted, the application
|
|
1582
|
+
# uses an AWS-managed key. The KMS key must be in the same region as
|
|
1583
|
+
# the application.
|
|
1584
|
+
# @return [String]
|
|
1585
|
+
#
|
|
1561
1586
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/CreateApplicationRequest AWS API Documentation
|
|
1562
1587
|
#
|
|
1563
1588
|
class CreateApplicationRequest < Struct.new(
|
|
@@ -1566,7 +1591,8 @@ module Aws::OpenSearchService
|
|
|
1566
1591
|
:data_sources,
|
|
1567
1592
|
:iam_identity_center_options,
|
|
1568
1593
|
:app_configs,
|
|
1569
|
-
:tag_list
|
|
1594
|
+
:tag_list,
|
|
1595
|
+
:kms_key_arn)
|
|
1570
1596
|
SENSITIVE = []
|
|
1571
1597
|
include Aws::Structure
|
|
1572
1598
|
end
|
|
@@ -1612,6 +1638,11 @@ module Aws::OpenSearchService
|
|
|
1612
1638
|
# created.
|
|
1613
1639
|
# @return [Time]
|
|
1614
1640
|
#
|
|
1641
|
+
# @!attribute [rw] kms_key_arn
|
|
1642
|
+
# The Amazon Resource Name (ARN) of the KMS key used to encrypt the
|
|
1643
|
+
# application's data at rest.
|
|
1644
|
+
# @return [String]
|
|
1645
|
+
#
|
|
1615
1646
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/CreateApplicationResponse AWS API Documentation
|
|
1616
1647
|
#
|
|
1617
1648
|
class CreateApplicationResponse < Struct.new(
|
|
@@ -1622,7 +1653,8 @@ module Aws::OpenSearchService
|
|
|
1622
1653
|
:iam_identity_center_options,
|
|
1623
1654
|
:app_configs,
|
|
1624
1655
|
:tag_list,
|
|
1625
|
-
:created_at
|
|
1656
|
+
:created_at,
|
|
1657
|
+
:kms_key_arn)
|
|
1626
1658
|
SENSITIVE = []
|
|
1627
1659
|
include Aws::Structure
|
|
1628
1660
|
end
|
|
@@ -4193,6 +4225,11 @@ module Aws::OpenSearchService
|
|
|
4193
4225
|
# The timestamp of the last update to the OpenSearch application.
|
|
4194
4226
|
# @return [Time]
|
|
4195
4227
|
#
|
|
4228
|
+
# @!attribute [rw] kms_key_arn
|
|
4229
|
+
# The Amazon Resource Name (ARN) of the KMS key used to encrypt the
|
|
4230
|
+
# application's data at rest.
|
|
4231
|
+
# @return [String]
|
|
4232
|
+
#
|
|
4196
4233
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/GetApplicationResponse AWS API Documentation
|
|
4197
4234
|
#
|
|
4198
4235
|
class GetApplicationResponse < Struct.new(
|
|
@@ -4205,7 +4242,8 @@ module Aws::OpenSearchService
|
|
|
4205
4242
|
:data_sources,
|
|
4206
4243
|
:app_configs,
|
|
4207
4244
|
:created_at,
|
|
4208
|
-
:last_updated_at
|
|
4245
|
+
:last_updated_at,
|
|
4246
|
+
:kms_key_arn)
|
|
4209
4247
|
SENSITIVE = []
|
|
4210
4248
|
include Aws::Structure
|
|
4211
4249
|
end
|
|
@@ -7102,6 +7140,27 @@ module Aws::OpenSearchService
|
|
|
7102
7140
|
include Aws::Structure
|
|
7103
7141
|
end
|
|
7104
7142
|
|
|
7143
|
+
# Configuration for serverless vector acceleration, which provides
|
|
7144
|
+
# [GPU-accelerated][1] vector search capabilities for improved
|
|
7145
|
+
# performance on vector workloads.
|
|
7146
|
+
#
|
|
7147
|
+
#
|
|
7148
|
+
#
|
|
7149
|
+
# [1]: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/gpu-acceleration-vector-index.html
|
|
7150
|
+
#
|
|
7151
|
+
# @!attribute [rw] enabled
|
|
7152
|
+
# Specifies whether serverless vector acceleration is enabled for the
|
|
7153
|
+
# domain.
|
|
7154
|
+
# @return [Boolean]
|
|
7155
|
+
#
|
|
7156
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/ServerlessVectorAcceleration AWS API Documentation
|
|
7157
|
+
#
|
|
7158
|
+
class ServerlessVectorAcceleration < Struct.new(
|
|
7159
|
+
:enabled)
|
|
7160
|
+
SENSITIVE = []
|
|
7161
|
+
include Aws::Structure
|
|
7162
|
+
end
|
|
7163
|
+
|
|
7105
7164
|
# The current status of the service software for an Amazon OpenSearch
|
|
7106
7165
|
# Service domain. For more information, see [Service software updates in
|
|
7107
7166
|
# Amazon OpenSearch Service][1].
|
data/sig/client.rbs
CHANGED
|
@@ -228,6 +228,7 @@ module Aws
|
|
|
228
228
|
def app_configs: () -> ::Array[Types::AppConfig]
|
|
229
229
|
def tag_list: () -> ::Array[Types::Tag]
|
|
230
230
|
def created_at: () -> ::Time
|
|
231
|
+
def kms_key_arn: () -> ::String
|
|
231
232
|
end
|
|
232
233
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpenSearchService/Client.html#create_application-instance_method
|
|
233
234
|
def create_application: (
|
|
@@ -255,7 +256,8 @@ module Aws
|
|
|
255
256
|
key: ::String,
|
|
256
257
|
value: ::String
|
|
257
258
|
},
|
|
258
|
-
]
|
|
259
|
+
],
|
|
260
|
+
?kms_key_arn: ::String
|
|
259
261
|
) -> _CreateApplicationResponseSuccess
|
|
260
262
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApplicationResponseSuccess
|
|
261
263
|
|
|
@@ -413,6 +415,9 @@ module Aws
|
|
|
413
415
|
}?,
|
|
414
416
|
s3_vectors_engine: {
|
|
415
417
|
enabled: bool?
|
|
418
|
+
}?,
|
|
419
|
+
serverless_vector_acceleration: {
|
|
420
|
+
enabled: bool?
|
|
416
421
|
}?
|
|
417
422
|
}
|
|
418
423
|
) -> _CreateDomainResponseSuccess
|
|
@@ -837,6 +842,7 @@ module Aws
|
|
|
837
842
|
def app_configs: () -> ::Array[Types::AppConfig]
|
|
838
843
|
def created_at: () -> ::Time
|
|
839
844
|
def last_updated_at: () -> ::Time
|
|
845
|
+
def kms_key_arn: () -> ::String
|
|
840
846
|
end
|
|
841
847
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpenSearchService/Client.html#get_application-instance_method
|
|
842
848
|
def get_application: (
|
|
@@ -1423,6 +1429,9 @@ module Aws
|
|
|
1423
1429
|
}?,
|
|
1424
1430
|
s3_vectors_engine: {
|
|
1425
1431
|
enabled: bool?
|
|
1432
|
+
}?,
|
|
1433
|
+
serverless_vector_acceleration: {
|
|
1434
|
+
enabled: bool?
|
|
1426
1435
|
}?
|
|
1427
1436
|
}
|
|
1428
1437
|
) -> _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
|
|
|
@@ -386,6 +388,7 @@ module Aws::OpenSearchService
|
|
|
386
388
|
attr_accessor iam_identity_center_options: Types::IamIdentityCenterOptionsInput
|
|
387
389
|
attr_accessor app_configs: ::Array[Types::AppConfig]
|
|
388
390
|
attr_accessor tag_list: ::Array[Types::Tag]
|
|
391
|
+
attr_accessor kms_key_arn: ::String
|
|
389
392
|
SENSITIVE: []
|
|
390
393
|
end
|
|
391
394
|
|
|
@@ -398,6 +401,7 @@ module Aws::OpenSearchService
|
|
|
398
401
|
attr_accessor app_configs: ::Array[Types::AppConfig]
|
|
399
402
|
attr_accessor tag_list: ::Array[Types::Tag]
|
|
400
403
|
attr_accessor created_at: ::Time
|
|
404
|
+
attr_accessor kms_key_arn: ::String
|
|
401
405
|
SENSITIVE: []
|
|
402
406
|
end
|
|
403
407
|
|
|
@@ -1062,6 +1066,7 @@ module Aws::OpenSearchService
|
|
|
1062
1066
|
attr_accessor app_configs: ::Array[Types::AppConfig]
|
|
1063
1067
|
attr_accessor created_at: ::Time
|
|
1064
1068
|
attr_accessor last_updated_at: ::Time
|
|
1069
|
+
attr_accessor kms_key_arn: ::String
|
|
1065
1070
|
SENSITIVE: []
|
|
1066
1071
|
end
|
|
1067
1072
|
|
|
@@ -1820,6 +1825,11 @@ module Aws::OpenSearchService
|
|
|
1820
1825
|
SENSITIVE: []
|
|
1821
1826
|
end
|
|
1822
1827
|
|
|
1828
|
+
class ServerlessVectorAcceleration
|
|
1829
|
+
attr_accessor enabled: bool
|
|
1830
|
+
SENSITIVE: []
|
|
1831
|
+
end
|
|
1832
|
+
|
|
1823
1833
|
class ServiceSoftwareOptions
|
|
1824
1834
|
attr_accessor current_version: ::String
|
|
1825
1835
|
attr_accessor new_version: ::String
|