aws-sdk-opensearchservice 1.69.0 → 1.70.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 +33 -6
- 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: e68b6651aa4db5667b659b31b0c5dfe8c6d1b3d2db8961df8eaf6e60c68f6e7b
|
4
|
+
data.tar.gz: 49ed46c58924e0c0dbcfda312ffa16d42b791f28fd189c441a268defc17fe8d5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 35072b3d83acb1e4dac158007937b3dfdeeed69d2469f11186e8074607ce7af1bedacc1e41a09dd79c5e793ff5e032bd16096847cc752f71b3f15c142b9b4f3e
|
7
|
+
data.tar.gz: 54067aeba6cc393efb518719c3975203ca8639121fd4b2748e7c095b52643844879679a33237837a2006465e752adfee3f00eed97724237651a0cfcea827f034
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.70.0 (2025-07-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* 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.
|
8
|
+
|
4
9
|
1.69.0 (2025-06-02)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.70.0
|
@@ -1308,6 +1308,9 @@ module Aws::OpenSearchService
|
|
1308
1308
|
# natural_language_query_generation_options: {
|
1309
1309
|
# desired_state: "ENABLED", # accepts ENABLED, DISABLED
|
1310
1310
|
# },
|
1311
|
+
# s3_vectors_engine: {
|
1312
|
+
# enabled: false,
|
1313
|
+
# },
|
1311
1314
|
# },
|
1312
1315
|
# })
|
1313
1316
|
#
|
@@ -1424,6 +1427,7 @@ module Aws::OpenSearchService
|
|
1424
1427
|
# resp.domain_status.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
|
1425
1428
|
# resp.domain_status.aiml_options.natural_language_query_generation_options.desired_state #=> String, one of "ENABLED", "DISABLED"
|
1426
1429
|
# 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"
|
1430
|
+
# resp.domain_status.aiml_options.s3_vectors_engine.enabled #=> Boolean
|
1427
1431
|
#
|
1428
1432
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/CreateDomain AWS API Documentation
|
1429
1433
|
#
|
@@ -1887,6 +1891,7 @@ module Aws::OpenSearchService
|
|
1887
1891
|
# resp.domain_status.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
|
1888
1892
|
# resp.domain_status.aiml_options.natural_language_query_generation_options.desired_state #=> String, one of "ENABLED", "DISABLED"
|
1889
1893
|
# 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"
|
1894
|
+
# resp.domain_status.aiml_options.s3_vectors_engine.enabled #=> Boolean
|
1890
1895
|
#
|
1891
1896
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DeleteDomain AWS API Documentation
|
1892
1897
|
#
|
@@ -2208,6 +2213,7 @@ module Aws::OpenSearchService
|
|
2208
2213
|
# resp.domain_status.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
|
2209
2214
|
# resp.domain_status.aiml_options.natural_language_query_generation_options.desired_state #=> String, one of "ENABLED", "DISABLED"
|
2210
2215
|
# 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"
|
2216
|
+
# resp.domain_status.aiml_options.s3_vectors_engine.enabled #=> Boolean
|
2211
2217
|
#
|
2212
2218
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDomain AWS API Documentation
|
2213
2219
|
#
|
@@ -2532,6 +2538,7 @@ module Aws::OpenSearchService
|
|
2532
2538
|
# resp.domain_config.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
|
2533
2539
|
# resp.domain_config.aiml_options.options.natural_language_query_generation_options.desired_state #=> String, one of "ENABLED", "DISABLED"
|
2534
2540
|
# 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"
|
2541
|
+
# resp.domain_config.aiml_options.options.s3_vectors_engine.enabled #=> Boolean
|
2535
2542
|
# resp.domain_config.aiml_options.status.creation_date #=> Time
|
2536
2543
|
# resp.domain_config.aiml_options.status.update_date #=> Time
|
2537
2544
|
# resp.domain_config.aiml_options.status.update_version #=> Integer
|
@@ -2777,6 +2784,7 @@ module Aws::OpenSearchService
|
|
2777
2784
|
# resp.domain_status_list[0].modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
|
2778
2785
|
# resp.domain_status_list[0].aiml_options.natural_language_query_generation_options.desired_state #=> String, one of "ENABLED", "DISABLED"
|
2779
2786
|
# 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"
|
2787
|
+
# resp.domain_status_list[0].aiml_options.s3_vectors_engine.enabled #=> Boolean
|
2780
2788
|
#
|
2781
2789
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDomains AWS API Documentation
|
2782
2790
|
#
|
@@ -2940,6 +2948,7 @@ module Aws::OpenSearchService
|
|
2940
2948
|
# resp.dry_run_config.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
|
2941
2949
|
# resp.dry_run_config.aiml_options.natural_language_query_generation_options.desired_state #=> String, one of "ENABLED", "DISABLED"
|
2942
2950
|
# 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"
|
2951
|
+
# resp.dry_run_config.aiml_options.s3_vectors_engine.enabled #=> Boolean
|
2943
2952
|
# resp.dry_run_results.deployment_type #=> String
|
2944
2953
|
# resp.dry_run_results.message #=> String
|
2945
2954
|
#
|
@@ -5229,6 +5238,9 @@ module Aws::OpenSearchService
|
|
5229
5238
|
# natural_language_query_generation_options: {
|
5230
5239
|
# desired_state: "ENABLED", # accepts ENABLED, DISABLED
|
5231
5240
|
# },
|
5241
|
+
# s3_vectors_engine: {
|
5242
|
+
# enabled: false,
|
5243
|
+
# },
|
5232
5244
|
# },
|
5233
5245
|
# })
|
5234
5246
|
#
|
@@ -5420,6 +5432,7 @@ module Aws::OpenSearchService
|
|
5420
5432
|
# resp.domain_config.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
|
5421
5433
|
# resp.domain_config.aiml_options.options.natural_language_query_generation_options.desired_state #=> String, one of "ENABLED", "DISABLED"
|
5422
5434
|
# 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"
|
5435
|
+
# resp.domain_config.aiml_options.options.s3_vectors_engine.enabled #=> Boolean
|
5423
5436
|
# resp.domain_config.aiml_options.status.creation_date #=> Time
|
5424
5437
|
# resp.domain_config.aiml_options.status.update_date #=> Time
|
5425
5438
|
# resp.domain_config.aiml_options.status.update_version #=> Integer
|
@@ -5792,7 +5805,7 @@ module Aws::OpenSearchService
|
|
5792
5805
|
tracer: tracer
|
5793
5806
|
)
|
5794
5807
|
context[:gem_name] = 'aws-sdk-opensearchservice'
|
5795
|
-
context[:gem_version] = '1.
|
5808
|
+
context[:gem_version] = '1.70.0'
|
5796
5809
|
Seahorse::Client::Request.new(handlers, context)
|
5797
5810
|
end
|
5798
5811
|
|
@@ -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
@@ -404,6 +404,9 @@ module Aws
|
|
404
404
|
?aiml_options: {
|
405
405
|
natural_language_query_generation_options: {
|
406
406
|
desired_state: ("ENABLED" | "DISABLED")?
|
407
|
+
}?,
|
408
|
+
s3_vectors_engine: {
|
409
|
+
enabled: bool?
|
407
410
|
}?
|
408
411
|
}
|
409
412
|
) -> _CreateDomainResponseSuccess
|
@@ -1351,6 +1354,9 @@ module Aws
|
|
1351
1354
|
?aiml_options: {
|
1352
1355
|
natural_language_query_generation_options: {
|
1353
1356
|
desired_state: ("ENABLED" | "DISABLED")?
|
1357
|
+
}?,
|
1358
|
+
s3_vectors_engine: {
|
1359
|
+
enabled: bool?
|
1354
1360
|
}?
|
1355
1361
|
}
|
1356
1362
|
) -> _UpdateDomainConfigResponseSuccess
|
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
|