aws-sdk-opensearchservice 1.69.0 → 1.71.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 +32 -9
- data/lib/aws-sdk-opensearchservice/client_api.rb +6 -0
- data/lib/aws-sdk-opensearchservice/types.rb +33 -6
- data/lib/aws-sdk-opensearchservice.rb +1 -1
- data/sig/client.rbs +7 -0
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +7 -0
- 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: 8a0840e68243a282edfe4d82c33a7b284da8ea9cbc1d8fad18881b4c16bec260
|
4
|
+
data.tar.gz: 870f8dacde8679c0926f53ab5fb005d072183250df959516f82bbd0a167f735e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: edbe791f9578b8b4d15a1a54bdee511121d713df89f0a77754892e72bc0c35e24cceee52cfaabd2887bdc5782003bb2df376f9cfa249a995e32d35ef3c46e08a
|
7
|
+
data.tar.gz: e6e26e56ac8d985f6b085a87c26142d4acf3f448942b99ea7d4d443aff522f2dd7db133113856040e6b64ee348b3357020cf478a9ad258e0e7305160604a811b
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.71.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.70.0 (2025-07-15)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - AWS Opensearch adds support for enabling s3 vector engine options. After enabling this option, customers will be able to create indices with s3 vector engine.
|
13
|
+
|
4
14
|
1.69.0 (2025-06-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.71.0
|
@@ -95,7 +95,7 @@ module Aws::OpenSearchService
|
|
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::OpenSearchService
|
|
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::OpenSearchService
|
|
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::OpenSearchService
|
|
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::OpenSearchService
|
|
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
|
@@ -1308,6 +1318,9 @@ module Aws::OpenSearchService
|
|
1308
1318
|
# natural_language_query_generation_options: {
|
1309
1319
|
# desired_state: "ENABLED", # accepts ENABLED, DISABLED
|
1310
1320
|
# },
|
1321
|
+
# s3_vectors_engine: {
|
1322
|
+
# enabled: false,
|
1323
|
+
# },
|
1311
1324
|
# },
|
1312
1325
|
# })
|
1313
1326
|
#
|
@@ -1424,6 +1437,7 @@ module Aws::OpenSearchService
|
|
1424
1437
|
# resp.domain_status.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
|
1425
1438
|
# resp.domain_status.aiml_options.natural_language_query_generation_options.desired_state #=> String, one of "ENABLED", "DISABLED"
|
1426
1439
|
# 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"
|
1440
|
+
# resp.domain_status.aiml_options.s3_vectors_engine.enabled #=> Boolean
|
1427
1441
|
#
|
1428
1442
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/CreateDomain AWS API Documentation
|
1429
1443
|
#
|
@@ -1887,6 +1901,7 @@ module Aws::OpenSearchService
|
|
1887
1901
|
# resp.domain_status.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
|
1888
1902
|
# resp.domain_status.aiml_options.natural_language_query_generation_options.desired_state #=> String, one of "ENABLED", "DISABLED"
|
1889
1903
|
# 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"
|
1904
|
+
# resp.domain_status.aiml_options.s3_vectors_engine.enabled #=> Boolean
|
1890
1905
|
#
|
1891
1906
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DeleteDomain AWS API Documentation
|
1892
1907
|
#
|
@@ -2208,6 +2223,7 @@ module Aws::OpenSearchService
|
|
2208
2223
|
# resp.domain_status.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
|
2209
2224
|
# resp.domain_status.aiml_options.natural_language_query_generation_options.desired_state #=> String, one of "ENABLED", "DISABLED"
|
2210
2225
|
# 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"
|
2226
|
+
# resp.domain_status.aiml_options.s3_vectors_engine.enabled #=> Boolean
|
2211
2227
|
#
|
2212
2228
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDomain AWS API Documentation
|
2213
2229
|
#
|
@@ -2532,6 +2548,7 @@ module Aws::OpenSearchService
|
|
2532
2548
|
# resp.domain_config.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
|
2533
2549
|
# resp.domain_config.aiml_options.options.natural_language_query_generation_options.desired_state #=> String, one of "ENABLED", "DISABLED"
|
2534
2550
|
# 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"
|
2551
|
+
# resp.domain_config.aiml_options.options.s3_vectors_engine.enabled #=> Boolean
|
2535
2552
|
# resp.domain_config.aiml_options.status.creation_date #=> Time
|
2536
2553
|
# resp.domain_config.aiml_options.status.update_date #=> Time
|
2537
2554
|
# resp.domain_config.aiml_options.status.update_version #=> Integer
|
@@ -2777,6 +2794,7 @@ module Aws::OpenSearchService
|
|
2777
2794
|
# resp.domain_status_list[0].modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
|
2778
2795
|
# resp.domain_status_list[0].aiml_options.natural_language_query_generation_options.desired_state #=> String, one of "ENABLED", "DISABLED"
|
2779
2796
|
# 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"
|
2797
|
+
# resp.domain_status_list[0].aiml_options.s3_vectors_engine.enabled #=> Boolean
|
2780
2798
|
#
|
2781
2799
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDomains AWS API Documentation
|
2782
2800
|
#
|
@@ -2940,6 +2958,7 @@ module Aws::OpenSearchService
|
|
2940
2958
|
# resp.dry_run_config.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
|
2941
2959
|
# resp.dry_run_config.aiml_options.natural_language_query_generation_options.desired_state #=> String, one of "ENABLED", "DISABLED"
|
2942
2960
|
# 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"
|
2961
|
+
# resp.dry_run_config.aiml_options.s3_vectors_engine.enabled #=> Boolean
|
2943
2962
|
# resp.dry_run_results.deployment_type #=> String
|
2944
2963
|
# resp.dry_run_results.message #=> String
|
2945
2964
|
#
|
@@ -5229,6 +5248,9 @@ module Aws::OpenSearchService
|
|
5229
5248
|
# natural_language_query_generation_options: {
|
5230
5249
|
# desired_state: "ENABLED", # accepts ENABLED, DISABLED
|
5231
5250
|
# },
|
5251
|
+
# s3_vectors_engine: {
|
5252
|
+
# enabled: false,
|
5253
|
+
# },
|
5232
5254
|
# },
|
5233
5255
|
# })
|
5234
5256
|
#
|
@@ -5420,6 +5442,7 @@ module Aws::OpenSearchService
|
|
5420
5442
|
# resp.domain_config.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
|
5421
5443
|
# resp.domain_config.aiml_options.options.natural_language_query_generation_options.desired_state #=> String, one of "ENABLED", "DISABLED"
|
5422
5444
|
# 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"
|
5445
|
+
# resp.domain_config.aiml_options.options.s3_vectors_engine.enabled #=> Boolean
|
5423
5446
|
# resp.domain_config.aiml_options.status.creation_date #=> Time
|
5424
5447
|
# resp.domain_config.aiml_options.status.update_date #=> Time
|
5425
5448
|
# resp.domain_config.aiml_options.status.update_version #=> Integer
|
@@ -5792,7 +5815,7 @@ module Aws::OpenSearchService
|
|
5792
5815
|
tracer: tracer
|
5793
5816
|
)
|
5794
5817
|
context[:gem_name] = 'aws-sdk-opensearchservice'
|
5795
|
-
context[:gem_version] = '1.
|
5818
|
+
context[:gem_version] = '1.71.0'
|
5796
5819
|
Seahorse::Client::Request.new(handlers, context)
|
5797
5820
|
end
|
5798
5821
|
|
@@ -438,6 +438,7 @@ module Aws::OpenSearchService
|
|
438
438
|
S3BucketName = Shapes::StringShape.new(name: 'S3BucketName')
|
439
439
|
S3GlueDataCatalog = Shapes::StructureShape.new(name: 'S3GlueDataCatalog')
|
440
440
|
S3Key = Shapes::StringShape.new(name: 'S3Key')
|
441
|
+
S3VectorsEngine = Shapes::StructureShape.new(name: 'S3VectorsEngine')
|
441
442
|
SAMLEntityId = Shapes::StringShape.new(name: 'SAMLEntityId')
|
442
443
|
SAMLIdp = Shapes::StructureShape.new(name: 'SAMLIdp')
|
443
444
|
SAMLMetadata = Shapes::StringShape.new(name: 'SAMLMetadata')
|
@@ -544,9 +545,11 @@ module Aws::OpenSearchService
|
|
544
545
|
ZoneStatus = Shapes::StringShape.new(name: 'ZoneStatus')
|
545
546
|
|
546
547
|
AIMLOptionsInput.add_member(:natural_language_query_generation_options, Shapes::ShapeRef.new(shape: NaturalLanguageQueryGenerationOptionsInput, location_name: "NaturalLanguageQueryGenerationOptions"))
|
548
|
+
AIMLOptionsInput.add_member(:s3_vectors_engine, Shapes::ShapeRef.new(shape: S3VectorsEngine, location_name: "S3VectorsEngine"))
|
547
549
|
AIMLOptionsInput.struct_class = Types::AIMLOptionsInput
|
548
550
|
|
549
551
|
AIMLOptionsOutput.add_member(:natural_language_query_generation_options, Shapes::ShapeRef.new(shape: NaturalLanguageQueryGenerationOptionsOutput, location_name: "NaturalLanguageQueryGenerationOptions"))
|
552
|
+
AIMLOptionsOutput.add_member(:s3_vectors_engine, Shapes::ShapeRef.new(shape: S3VectorsEngine, location_name: "S3VectorsEngine"))
|
550
553
|
AIMLOptionsOutput.struct_class = Types::AIMLOptionsOutput
|
551
554
|
|
552
555
|
AIMLOptionsStatus.add_member(:options, Shapes::ShapeRef.new(shape: AIMLOptionsOutput, location_name: "Options"))
|
@@ -1846,6 +1849,9 @@ module Aws::OpenSearchService
|
|
1846
1849
|
S3GlueDataCatalog.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RoleArn"))
|
1847
1850
|
S3GlueDataCatalog.struct_class = Types::S3GlueDataCatalog
|
1848
1851
|
|
1852
|
+
S3VectorsEngine.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Enabled"))
|
1853
|
+
S3VectorsEngine.struct_class = Types::S3VectorsEngine
|
1854
|
+
|
1849
1855
|
SAMLIdp.add_member(:metadata_content, Shapes::ShapeRef.new(shape: SAMLMetadata, required: true, location_name: "MetadataContent"))
|
1850
1856
|
SAMLIdp.add_member(:entity_id, Shapes::ShapeRef.new(shape: SAMLEntityId, required: true, location_name: "EntityId"))
|
1851
1857
|
SAMLIdp.struct_class = Types::SAMLIdp
|
@@ -18,10 +18,16 @@ module Aws::OpenSearchService
|
|
18
18
|
# generation on the specified domain.
|
19
19
|
# @return [Types::NaturalLanguageQueryGenerationOptionsInput]
|
20
20
|
#
|
21
|
+
# @!attribute [rw] s3_vectors_engine
|
22
|
+
# Container for parameters required to enable S3 vectors engine
|
23
|
+
# features on the specified domain.
|
24
|
+
# @return [Types::S3VectorsEngine]
|
25
|
+
#
|
21
26
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/AIMLOptionsInput AWS API Documentation
|
22
27
|
#
|
23
28
|
class AIMLOptionsInput < Struct.new(
|
24
|
-
:natural_language_query_generation_options
|
29
|
+
:natural_language_query_generation_options,
|
30
|
+
:s3_vectors_engine)
|
25
31
|
SENSITIVE = []
|
26
32
|
include Aws::Structure
|
27
33
|
end
|
@@ -34,10 +40,16 @@ module Aws::OpenSearchService
|
|
34
40
|
# generation on the specified domain.
|
35
41
|
# @return [Types::NaturalLanguageQueryGenerationOptionsOutput]
|
36
42
|
#
|
43
|
+
# @!attribute [rw] s3_vectors_engine
|
44
|
+
# Container for parameters representing the state of S3 vectors engine
|
45
|
+
# features on the specified domain.
|
46
|
+
# @return [Types::S3VectorsEngine]
|
47
|
+
#
|
37
48
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/AIMLOptionsOutput AWS API Documentation
|
38
49
|
#
|
39
50
|
class AIMLOptionsOutput < Struct.new(
|
40
|
-
:natural_language_query_generation_options
|
51
|
+
:natural_language_query_generation_options,
|
52
|
+
:s3_vectors_engine)
|
41
53
|
SENSITIVE = []
|
42
54
|
include Aws::Structure
|
43
55
|
end
|
@@ -1996,7 +2008,7 @@ module Aws::OpenSearchService
|
|
1996
2008
|
include Aws::Structure
|
1997
2009
|
end
|
1998
2010
|
|
1999
|
-
# Data sources that are associated with an OpenSearch
|
2011
|
+
# Data sources that are associated with an OpenSearch application.
|
2000
2012
|
#
|
2001
2013
|
# @!attribute [rw] data_source_arn
|
2002
2014
|
# The Amazon Resource Name (ARN) of the domain. See [Identifiers for
|
@@ -4477,11 +4489,11 @@ module Aws::OpenSearchService
|
|
4477
4489
|
end
|
4478
4490
|
|
4479
4491
|
# Configuration settings for IAM Identity Center in an OpenSearch
|
4480
|
-
#
|
4492
|
+
# application.
|
4481
4493
|
#
|
4482
4494
|
# @!attribute [rw] enabled
|
4483
4495
|
# Indicates whether IAM Identity Center is enabled for the OpenSearch
|
4484
|
-
#
|
4496
|
+
# application.
|
4485
4497
|
# @return [Boolean]
|
4486
4498
|
#
|
4487
4499
|
# @!attribute [rw] iam_identity_center_instance_arn
|
@@ -4496,7 +4508,7 @@ module Aws::OpenSearchService
|
|
4496
4508
|
#
|
4497
4509
|
# @!attribute [rw] iam_role_for_identity_center_application_arn
|
4498
4510
|
# The Amazon Resource Name (ARN) of the IAM role assigned to the IAM
|
4499
|
-
# Identity Center application for the OpenSearch
|
4511
|
+
# Identity Center application for the OpenSearch application.
|
4500
4512
|
# @return [String]
|
4501
4513
|
#
|
4502
4514
|
# @!attribute [rw] iam_identity_center_application_arn
|
@@ -6620,6 +6632,21 @@ module Aws::OpenSearchService
|
|
6620
6632
|
include Aws::Structure
|
6621
6633
|
end
|
6622
6634
|
|
6635
|
+
# Options for enabling S3 vectors engine features on the specified
|
6636
|
+
# domain.
|
6637
|
+
#
|
6638
|
+
# @!attribute [rw] enabled
|
6639
|
+
# Enables S3 vectors engine features.
|
6640
|
+
# @return [Boolean]
|
6641
|
+
#
|
6642
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/S3VectorsEngine AWS API Documentation
|
6643
|
+
#
|
6644
|
+
class S3VectorsEngine < Struct.new(
|
6645
|
+
:enabled)
|
6646
|
+
SENSITIVE = []
|
6647
|
+
include Aws::Structure
|
6648
|
+
end
|
6649
|
+
|
6623
6650
|
# The SAML identity povider information.
|
6624
6651
|
#
|
6625
6652
|
# @!attribute [rw] metadata_content
|
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,
|
@@ -404,6 +405,9 @@ module Aws
|
|
404
405
|
?aiml_options: {
|
405
406
|
natural_language_query_generation_options: {
|
406
407
|
desired_state: ("ENABLED" | "DISABLED")?
|
408
|
+
}?,
|
409
|
+
s3_vectors_engine: {
|
410
|
+
enabled: bool?
|
407
411
|
}?
|
408
412
|
}
|
409
413
|
) -> _CreateDomainResponseSuccess
|
@@ -1351,6 +1355,9 @@ module Aws
|
|
1351
1355
|
?aiml_options: {
|
1352
1356
|
natural_language_query_generation_options: {
|
1353
1357
|
desired_state: ("ENABLED" | "DISABLED")?
|
1358
|
+
}?,
|
1359
|
+
s3_vectors_engine: {
|
1360
|
+
enabled: bool?
|
1354
1361
|
}?
|
1355
1362
|
}
|
1356
1363
|
) -> _UpdateDomainConfigResponseSuccess
|
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
@@ -10,11 +10,13 @@ module Aws::OpenSearchService
|
|
10
10
|
|
11
11
|
class AIMLOptionsInput
|
12
12
|
attr_accessor natural_language_query_generation_options: Types::NaturalLanguageQueryGenerationOptionsInput
|
13
|
+
attr_accessor s3_vectors_engine: Types::S3VectorsEngine
|
13
14
|
SENSITIVE: []
|
14
15
|
end
|
15
16
|
|
16
17
|
class AIMLOptionsOutput
|
17
18
|
attr_accessor natural_language_query_generation_options: Types::NaturalLanguageQueryGenerationOptionsOutput
|
19
|
+
attr_accessor s3_vectors_engine: Types::S3VectorsEngine
|
18
20
|
SENSITIVE: []
|
19
21
|
end
|
20
22
|
|
@@ -1692,6 +1694,11 @@ module Aws::OpenSearchService
|
|
1692
1694
|
SENSITIVE: []
|
1693
1695
|
end
|
1694
1696
|
|
1697
|
+
class S3VectorsEngine
|
1698
|
+
attr_accessor enabled: bool
|
1699
|
+
SENSITIVE: []
|
1700
|
+
end
|
1701
|
+
|
1695
1702
|
class SAMLIdp
|
1696
1703
|
attr_accessor metadata_content: ::String
|
1697
1704
|
attr_accessor entity_id: ::String
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-opensearchservice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.71.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
|