aws-sdk-opensearchservice 1.48.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-opensearchservice/client.rb +50 -1
- data/lib/aws-sdk-opensearchservice/client_api.rb +28 -0
- data/lib/aws-sdk-opensearchservice/types.rb +115 -4
- data/lib/aws-sdk-opensearchservice.rb +1 -1
- data/sig/client.rbs +11 -0
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +31 -0
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2b7f1330a7c9473518f6e57301e140dff321626911dde3b2723168c57cd9a8bf
|
4
|
+
data.tar.gz: a076faad7be70e40a135f4a6b6ff8b84985e9f4f792ca5f0325da18c917ac872
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fd35ffeefe8a1139607e6f27c191cd53203b896eac093422dde0d1f1dbf011ee6d66ccac497f6e76e5c8bcedea0eb0291b6cdf07e45a4c0344c0906d80d1b8ad
|
7
|
+
data.tar.gz: 9a47c5667abe98142dab4adc1c1187eb4a47ce2c163f53d308575fc2e8bbbe52dbea9b768c65c895c38fef23afef13f7f8958e801e5300cb969a9d4e5736c574
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.50.0 (2024-07-09)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for enabling or disabling Natural Language Query Processing feature for Amazon OpenSearch Service domains, and provides visibility into the current state of the setup or tear-down.
|
8
|
+
|
9
|
+
1.49.0 (2024-07-02)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.48.0 (2024-06-28)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.50.0
|
@@ -312,6 +312,15 @@ module Aws::OpenSearchService
|
|
312
312
|
#
|
313
313
|
# @option options [String] :session_token
|
314
314
|
#
|
315
|
+
# @option options [Array] :sigv4a_signing_region_set
|
316
|
+
# A list of regions that should be signed with SigV4a signing. When
|
317
|
+
# not passed, a default `:sigv4a_signing_region_set` is searched for
|
318
|
+
# in the following locations:
|
319
|
+
#
|
320
|
+
# * `Aws.config[:sigv4a_signing_region_set]`
|
321
|
+
# * `ENV['AWS_SIGV4A_SIGNING_REGION_SET']`
|
322
|
+
# * `~/.aws/config`
|
323
|
+
#
|
315
324
|
# @option options [Boolean] :stub_responses (false)
|
316
325
|
# Causes the client to return stubbed responses. By default
|
317
326
|
# fake responses are generated and returned. You can specify
|
@@ -847,6 +856,9 @@ module Aws::OpenSearchService
|
|
847
856
|
# @option params [Types::SoftwareUpdateOptions] :software_update_options
|
848
857
|
# Software update options for the domain.
|
849
858
|
#
|
859
|
+
# @option params [Types::AIMLOptionsInput] :aiml_options
|
860
|
+
# Options for all machine learning features for the specified domain.
|
861
|
+
#
|
850
862
|
# @return [Types::CreateDomainResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
851
863
|
#
|
852
864
|
# * {Types::CreateDomainResponse#domain_status #domain_status} => Types::DomainStatus
|
@@ -979,6 +991,11 @@ module Aws::OpenSearchService
|
|
979
991
|
# software_update_options: {
|
980
992
|
# auto_software_update_enabled: false,
|
981
993
|
# },
|
994
|
+
# aiml_options: {
|
995
|
+
# natural_language_query_generation_options: {
|
996
|
+
# desired_state: "ENABLED", # accepts ENABLED, DISABLED
|
997
|
+
# },
|
998
|
+
# },
|
982
999
|
# })
|
983
1000
|
#
|
984
1001
|
# @example Response structure
|
@@ -1081,6 +1098,8 @@ module Aws::OpenSearchService
|
|
1081
1098
|
# resp.domain_status.modifying_properties[0].active_value #=> String
|
1082
1099
|
# resp.domain_status.modifying_properties[0].pending_value #=> String
|
1083
1100
|
# resp.domain_status.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
|
1101
|
+
# resp.domain_status.aiml_options.natural_language_query_generation_options.desired_state #=> String, one of "ENABLED", "DISABLED"
|
1102
|
+
# 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"
|
1084
1103
|
#
|
1085
1104
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/CreateDomain AWS API Documentation
|
1086
1105
|
#
|
@@ -1446,6 +1465,8 @@ module Aws::OpenSearchService
|
|
1446
1465
|
# resp.domain_status.modifying_properties[0].active_value #=> String
|
1447
1466
|
# resp.domain_status.modifying_properties[0].pending_value #=> String
|
1448
1467
|
# resp.domain_status.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
|
1468
|
+
# resp.domain_status.aiml_options.natural_language_query_generation_options.desired_state #=> String, one of "ENABLED", "DISABLED"
|
1469
|
+
# 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"
|
1449
1470
|
#
|
1450
1471
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DeleteDomain AWS API Documentation
|
1451
1472
|
#
|
@@ -1744,6 +1765,8 @@ module Aws::OpenSearchService
|
|
1744
1765
|
# resp.domain_status.modifying_properties[0].active_value #=> String
|
1745
1766
|
# resp.domain_status.modifying_properties[0].pending_value #=> String
|
1746
1767
|
# resp.domain_status.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
|
1768
|
+
# resp.domain_status.aiml_options.natural_language_query_generation_options.desired_state #=> String, one of "ENABLED", "DISABLED"
|
1769
|
+
# 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"
|
1747
1770
|
#
|
1748
1771
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDomain AWS API Documentation
|
1749
1772
|
#
|
@@ -2050,6 +2073,13 @@ module Aws::OpenSearchService
|
|
2050
2073
|
# resp.domain_config.modifying_properties[0].active_value #=> String
|
2051
2074
|
# resp.domain_config.modifying_properties[0].pending_value #=> String
|
2052
2075
|
# resp.domain_config.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
|
2076
|
+
# resp.domain_config.aiml_options.options.natural_language_query_generation_options.desired_state #=> String, one of "ENABLED", "DISABLED"
|
2077
|
+
# 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"
|
2078
|
+
# resp.domain_config.aiml_options.status.creation_date #=> Time
|
2079
|
+
# resp.domain_config.aiml_options.status.update_date #=> Time
|
2080
|
+
# resp.domain_config.aiml_options.status.update_version #=> Integer
|
2081
|
+
# resp.domain_config.aiml_options.status.state #=> String, one of "RequiresIndexDocuments", "Processing", "Active"
|
2082
|
+
# resp.domain_config.aiml_options.status.pending_deletion #=> Boolean
|
2053
2083
|
#
|
2054
2084
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDomainConfig AWS API Documentation
|
2055
2085
|
#
|
@@ -2277,6 +2307,8 @@ module Aws::OpenSearchService
|
|
2277
2307
|
# resp.domain_status_list[0].modifying_properties[0].active_value #=> String
|
2278
2308
|
# resp.domain_status_list[0].modifying_properties[0].pending_value #=> String
|
2279
2309
|
# resp.domain_status_list[0].modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
|
2310
|
+
# resp.domain_status_list[0].aiml_options.natural_language_query_generation_options.desired_state #=> String, one of "ENABLED", "DISABLED"
|
2311
|
+
# 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"
|
2280
2312
|
#
|
2281
2313
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDomains AWS API Documentation
|
2282
2314
|
#
|
@@ -2427,6 +2459,8 @@ module Aws::OpenSearchService
|
|
2427
2459
|
# resp.dry_run_config.modifying_properties[0].active_value #=> String
|
2428
2460
|
# resp.dry_run_config.modifying_properties[0].pending_value #=> String
|
2429
2461
|
# resp.dry_run_config.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
|
2462
|
+
# resp.dry_run_config.aiml_options.natural_language_query_generation_options.desired_state #=> String, one of "ENABLED", "DISABLED"
|
2463
|
+
# 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"
|
2430
2464
|
# resp.dry_run_results.deployment_type #=> String
|
2431
2465
|
# resp.dry_run_results.message #=> String
|
2432
2466
|
#
|
@@ -4170,6 +4204,9 @@ module Aws::OpenSearchService
|
|
4170
4204
|
# @option params [Types::SoftwareUpdateOptions] :software_update_options
|
4171
4205
|
# Service software update options for the domain.
|
4172
4206
|
#
|
4207
|
+
# @option params [Types::AIMLOptionsInput] :aiml_options
|
4208
|
+
# Options for all machine learning features for the specified domain.
|
4209
|
+
#
|
4173
4210
|
# @return [Types::UpdateDomainConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4174
4211
|
#
|
4175
4212
|
# * {Types::UpdateDomainConfigResponse#domain_config #domain_config} => Types::DomainConfig
|
@@ -4300,6 +4337,11 @@ module Aws::OpenSearchService
|
|
4300
4337
|
# software_update_options: {
|
4301
4338
|
# auto_software_update_enabled: false,
|
4302
4339
|
# },
|
4340
|
+
# aiml_options: {
|
4341
|
+
# natural_language_query_generation_options: {
|
4342
|
+
# desired_state: "ENABLED", # accepts ENABLED, DISABLED
|
4343
|
+
# },
|
4344
|
+
# },
|
4303
4345
|
# })
|
4304
4346
|
#
|
4305
4347
|
# @example Response structure
|
@@ -4472,6 +4514,13 @@ module Aws::OpenSearchService
|
|
4472
4514
|
# resp.domain_config.modifying_properties[0].active_value #=> String
|
4473
4515
|
# resp.domain_config.modifying_properties[0].pending_value #=> String
|
4474
4516
|
# resp.domain_config.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
|
4517
|
+
# resp.domain_config.aiml_options.options.natural_language_query_generation_options.desired_state #=> String, one of "ENABLED", "DISABLED"
|
4518
|
+
# 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"
|
4519
|
+
# resp.domain_config.aiml_options.status.creation_date #=> Time
|
4520
|
+
# resp.domain_config.aiml_options.status.update_date #=> Time
|
4521
|
+
# resp.domain_config.aiml_options.status.update_version #=> Integer
|
4522
|
+
# resp.domain_config.aiml_options.status.state #=> String, one of "RequiresIndexDocuments", "Processing", "Active"
|
4523
|
+
# resp.domain_config.aiml_options.status.pending_deletion #=> Boolean
|
4475
4524
|
# resp.dry_run_results.deployment_type #=> String
|
4476
4525
|
# resp.dry_run_results.message #=> String
|
4477
4526
|
# resp.dry_run_progress_status.dry_run_id #=> String
|
@@ -4765,7 +4814,7 @@ module Aws::OpenSearchService
|
|
4765
4814
|
params: params,
|
4766
4815
|
config: config)
|
4767
4816
|
context[:gem_name] = 'aws-sdk-opensearchservice'
|
4768
|
-
context[:gem_version] = '1.
|
4817
|
+
context[:gem_version] = '1.50.0'
|
4769
4818
|
Seahorse::Client::Request.new(handlers, context)
|
4770
4819
|
end
|
4771
4820
|
|
@@ -13,6 +13,9 @@ module Aws::OpenSearchService
|
|
13
13
|
|
14
14
|
include Seahorse::Model
|
15
15
|
|
16
|
+
AIMLOptionsInput = Shapes::StructureShape.new(name: 'AIMLOptionsInput')
|
17
|
+
AIMLOptionsOutput = Shapes::StructureShape.new(name: 'AIMLOptionsOutput')
|
18
|
+
AIMLOptionsStatus = Shapes::StructureShape.new(name: 'AIMLOptionsStatus')
|
16
19
|
ARN = Shapes::StringShape.new(name: 'ARN')
|
17
20
|
AWSAccount = Shapes::StringShape.new(name: 'AWSAccount')
|
18
21
|
AWSDomainInformation = Shapes::StructureShape.new(name: 'AWSDomainInformation')
|
@@ -294,6 +297,10 @@ module Aws::OpenSearchService
|
|
294
297
|
MinimumInstanceCount = Shapes::IntegerShape.new(name: 'MinimumInstanceCount')
|
295
298
|
ModifyingProperties = Shapes::StructureShape.new(name: 'ModifyingProperties')
|
296
299
|
ModifyingPropertiesList = Shapes::ListShape.new(name: 'ModifyingPropertiesList')
|
300
|
+
NaturalLanguageQueryGenerationCurrentState = Shapes::StringShape.new(name: 'NaturalLanguageQueryGenerationCurrentState')
|
301
|
+
NaturalLanguageQueryGenerationDesiredState = Shapes::StringShape.new(name: 'NaturalLanguageQueryGenerationDesiredState')
|
302
|
+
NaturalLanguageQueryGenerationOptionsInput = Shapes::StructureShape.new(name: 'NaturalLanguageQueryGenerationOptionsInput')
|
303
|
+
NaturalLanguageQueryGenerationOptionsOutput = Shapes::StructureShape.new(name: 'NaturalLanguageQueryGenerationOptionsOutput')
|
297
304
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
298
305
|
NodeId = Shapes::StringShape.new(name: 'NodeId')
|
299
306
|
NodeStatus = Shapes::StringShape.new(name: 'NodeStatus')
|
@@ -459,6 +466,16 @@ module Aws::OpenSearchService
|
|
459
466
|
ZoneAwarenessConfig = Shapes::StructureShape.new(name: 'ZoneAwarenessConfig')
|
460
467
|
ZoneStatus = Shapes::StringShape.new(name: 'ZoneStatus')
|
461
468
|
|
469
|
+
AIMLOptionsInput.add_member(:natural_language_query_generation_options, Shapes::ShapeRef.new(shape: NaturalLanguageQueryGenerationOptionsInput, location_name: "NaturalLanguageQueryGenerationOptions"))
|
470
|
+
AIMLOptionsInput.struct_class = Types::AIMLOptionsInput
|
471
|
+
|
472
|
+
AIMLOptionsOutput.add_member(:natural_language_query_generation_options, Shapes::ShapeRef.new(shape: NaturalLanguageQueryGenerationOptionsOutput, location_name: "NaturalLanguageQueryGenerationOptions"))
|
473
|
+
AIMLOptionsOutput.struct_class = Types::AIMLOptionsOutput
|
474
|
+
|
475
|
+
AIMLOptionsStatus.add_member(:options, Shapes::ShapeRef.new(shape: AIMLOptionsOutput, location_name: "Options"))
|
476
|
+
AIMLOptionsStatus.add_member(:status, Shapes::ShapeRef.new(shape: OptionStatus, location_name: "Status"))
|
477
|
+
AIMLOptionsStatus.struct_class = Types::AIMLOptionsStatus
|
478
|
+
|
462
479
|
AWSDomainInformation.add_member(:owner_id, Shapes::ShapeRef.new(shape: OwnerId, location_name: "OwnerId"))
|
463
480
|
AWSDomainInformation.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location_name: "DomainName"))
|
464
481
|
AWSDomainInformation.add_member(:region, Shapes::ShapeRef.new(shape: Region, location_name: "Region"))
|
@@ -713,6 +730,7 @@ module Aws::OpenSearchService
|
|
713
730
|
CreateDomainRequest.add_member(:auto_tune_options, Shapes::ShapeRef.new(shape: AutoTuneOptionsInput, location_name: "AutoTuneOptions"))
|
714
731
|
CreateDomainRequest.add_member(:off_peak_window_options, Shapes::ShapeRef.new(shape: OffPeakWindowOptions, location_name: "OffPeakWindowOptions"))
|
715
732
|
CreateDomainRequest.add_member(:software_update_options, Shapes::ShapeRef.new(shape: SoftwareUpdateOptions, location_name: "SoftwareUpdateOptions"))
|
733
|
+
CreateDomainRequest.add_member(:aiml_options, Shapes::ShapeRef.new(shape: AIMLOptionsInput, location_name: "AIMLOptions"))
|
716
734
|
CreateDomainRequest.struct_class = Types::CreateDomainRequest
|
717
735
|
|
718
736
|
CreateDomainResponse.add_member(:domain_status, Shapes::ShapeRef.new(shape: DomainStatus, location_name: "DomainStatus"))
|
@@ -971,6 +989,7 @@ module Aws::OpenSearchService
|
|
971
989
|
DomainConfig.add_member(:off_peak_window_options, Shapes::ShapeRef.new(shape: OffPeakWindowOptionsStatus, location_name: "OffPeakWindowOptions"))
|
972
990
|
DomainConfig.add_member(:software_update_options, Shapes::ShapeRef.new(shape: SoftwareUpdateOptionsStatus, location_name: "SoftwareUpdateOptions"))
|
973
991
|
DomainConfig.add_member(:modifying_properties, Shapes::ShapeRef.new(shape: ModifyingPropertiesList, location_name: "ModifyingProperties"))
|
992
|
+
DomainConfig.add_member(:aiml_options, Shapes::ShapeRef.new(shape: AIMLOptionsStatus, location_name: "AIMLOptions"))
|
974
993
|
DomainConfig.struct_class = Types::DomainConfig
|
975
994
|
|
976
995
|
DomainEndpointOptions.add_member(:enforce_https, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnforceHTTPS"))
|
@@ -1064,6 +1083,7 @@ module Aws::OpenSearchService
|
|
1064
1083
|
DomainStatus.add_member(:software_update_options, Shapes::ShapeRef.new(shape: SoftwareUpdateOptions, location_name: "SoftwareUpdateOptions"))
|
1065
1084
|
DomainStatus.add_member(:domain_processing_status, Shapes::ShapeRef.new(shape: DomainProcessingStatusType, location_name: "DomainProcessingStatus"))
|
1066
1085
|
DomainStatus.add_member(:modifying_properties, Shapes::ShapeRef.new(shape: ModifyingPropertiesList, location_name: "ModifyingProperties"))
|
1086
|
+
DomainStatus.add_member(:aiml_options, Shapes::ShapeRef.new(shape: AIMLOptionsOutput, location_name: "AIMLOptions"))
|
1067
1087
|
DomainStatus.struct_class = Types::DomainStatus
|
1068
1088
|
|
1069
1089
|
DomainStatusList.member = Shapes::ShapeRef.new(shape: DomainStatus)
|
@@ -1370,6 +1390,13 @@ module Aws::OpenSearchService
|
|
1370
1390
|
|
1371
1391
|
ModifyingPropertiesList.member = Shapes::ShapeRef.new(shape: ModifyingProperties)
|
1372
1392
|
|
1393
|
+
NaturalLanguageQueryGenerationOptionsInput.add_member(:desired_state, Shapes::ShapeRef.new(shape: NaturalLanguageQueryGenerationDesiredState, location_name: "DesiredState"))
|
1394
|
+
NaturalLanguageQueryGenerationOptionsInput.struct_class = Types::NaturalLanguageQueryGenerationOptionsInput
|
1395
|
+
|
1396
|
+
NaturalLanguageQueryGenerationOptionsOutput.add_member(:desired_state, Shapes::ShapeRef.new(shape: NaturalLanguageQueryGenerationDesiredState, location_name: "DesiredState"))
|
1397
|
+
NaturalLanguageQueryGenerationOptionsOutput.add_member(:current_state, Shapes::ShapeRef.new(shape: NaturalLanguageQueryGenerationCurrentState, location_name: "CurrentState"))
|
1398
|
+
NaturalLanguageQueryGenerationOptionsOutput.struct_class = Types::NaturalLanguageQueryGenerationOptionsOutput
|
1399
|
+
|
1373
1400
|
NodeToNodeEncryptionOptions.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Enabled"))
|
1374
1401
|
NodeToNodeEncryptionOptions.struct_class = Types::NodeToNodeEncryptionOptions
|
1375
1402
|
|
@@ -1646,6 +1673,7 @@ module Aws::OpenSearchService
|
|
1646
1673
|
UpdateDomainConfigRequest.add_member(:dry_run_mode, Shapes::ShapeRef.new(shape: DryRunMode, location_name: "DryRunMode"))
|
1647
1674
|
UpdateDomainConfigRequest.add_member(:off_peak_window_options, Shapes::ShapeRef.new(shape: OffPeakWindowOptions, location_name: "OffPeakWindowOptions"))
|
1648
1675
|
UpdateDomainConfigRequest.add_member(:software_update_options, Shapes::ShapeRef.new(shape: SoftwareUpdateOptions, location_name: "SoftwareUpdateOptions"))
|
1676
|
+
UpdateDomainConfigRequest.add_member(:aiml_options, Shapes::ShapeRef.new(shape: AIMLOptionsInput, location_name: "AIMLOptions"))
|
1649
1677
|
UpdateDomainConfigRequest.struct_class = Types::UpdateDomainConfigRequest
|
1650
1678
|
|
1651
1679
|
UpdateDomainConfigResponse.add_member(:domain_config, Shapes::ShapeRef.new(shape: DomainConfig, required: true, location_name: "DomainConfig"))
|
@@ -10,6 +10,57 @@
|
|
10
10
|
module Aws::OpenSearchService
|
11
11
|
module Types
|
12
12
|
|
13
|
+
# Container for parameters required to enable all machine learning
|
14
|
+
# features.
|
15
|
+
#
|
16
|
+
# @!attribute [rw] natural_language_query_generation_options
|
17
|
+
# Container for parameters required for natural language query
|
18
|
+
# generation on the specified domain.
|
19
|
+
# @return [Types::NaturalLanguageQueryGenerationOptionsInput]
|
20
|
+
#
|
21
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/AIMLOptionsInput AWS API Documentation
|
22
|
+
#
|
23
|
+
class AIMLOptionsInput < Struct.new(
|
24
|
+
:natural_language_query_generation_options)
|
25
|
+
SENSITIVE = []
|
26
|
+
include Aws::Structure
|
27
|
+
end
|
28
|
+
|
29
|
+
# Container for parameters representing the state of machine learning
|
30
|
+
# features on the specified domain.
|
31
|
+
#
|
32
|
+
# @!attribute [rw] natural_language_query_generation_options
|
33
|
+
# Container for parameters required for natural language query
|
34
|
+
# generation on the specified domain.
|
35
|
+
# @return [Types::NaturalLanguageQueryGenerationOptionsOutput]
|
36
|
+
#
|
37
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/AIMLOptionsOutput AWS API Documentation
|
38
|
+
#
|
39
|
+
class AIMLOptionsOutput < Struct.new(
|
40
|
+
:natural_language_query_generation_options)
|
41
|
+
SENSITIVE = []
|
42
|
+
include Aws::Structure
|
43
|
+
end
|
44
|
+
|
45
|
+
# The status of machine learning options on the specified domain.
|
46
|
+
#
|
47
|
+
# @!attribute [rw] options
|
48
|
+
# Machine learning options on the specified domain.
|
49
|
+
# @return [Types::AIMLOptionsOutput]
|
50
|
+
#
|
51
|
+
# @!attribute [rw] status
|
52
|
+
# Provides the current status of an entity.
|
53
|
+
# @return [Types::OptionStatus]
|
54
|
+
#
|
55
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/AIMLOptionsStatus AWS API Documentation
|
56
|
+
#
|
57
|
+
class AIMLOptionsStatus < Struct.new(
|
58
|
+
:options,
|
59
|
+
:status)
|
60
|
+
SENSITIVE = []
|
61
|
+
include Aws::Structure
|
62
|
+
end
|
63
|
+
|
13
64
|
# Information about an Amazon OpenSearch Service domain.
|
14
65
|
#
|
15
66
|
# @!attribute [rw] owner_id
|
@@ -1394,6 +1445,10 @@ module Aws::OpenSearchService
|
|
1394
1445
|
# Software update options for the domain.
|
1395
1446
|
# @return [Types::SoftwareUpdateOptions]
|
1396
1447
|
#
|
1448
|
+
# @!attribute [rw] aiml_options
|
1449
|
+
# Options for all machine learning features for the specified domain.
|
1450
|
+
# @return [Types::AIMLOptionsInput]
|
1451
|
+
#
|
1397
1452
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/CreateDomainRequest AWS API Documentation
|
1398
1453
|
#
|
1399
1454
|
class CreateDomainRequest < Struct.new(
|
@@ -1415,7 +1470,8 @@ module Aws::OpenSearchService
|
|
1415
1470
|
:tag_list,
|
1416
1471
|
:auto_tune_options,
|
1417
1472
|
:off_peak_window_options,
|
1418
|
-
:software_update_options
|
1473
|
+
:software_update_options,
|
1474
|
+
:aiml_options)
|
1419
1475
|
SENSITIVE = []
|
1420
1476
|
include Aws::Structure
|
1421
1477
|
end
|
@@ -2715,6 +2771,11 @@ module Aws::OpenSearchService
|
|
2715
2771
|
# modified.
|
2716
2772
|
# @return [Array<Types::ModifyingProperties>]
|
2717
2773
|
#
|
2774
|
+
# @!attribute [rw] aiml_options
|
2775
|
+
# Container for parameters required to enable all machine learning
|
2776
|
+
# features.
|
2777
|
+
# @return [Types::AIMLOptionsStatus]
|
2778
|
+
#
|
2718
2779
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DomainConfig AWS API Documentation
|
2719
2780
|
#
|
2720
2781
|
class DomainConfig < Struct.new(
|
@@ -2736,7 +2797,8 @@ module Aws::OpenSearchService
|
|
2736
2797
|
:change_progress_details,
|
2737
2798
|
:off_peak_window_options,
|
2738
2799
|
:software_update_options,
|
2739
|
-
:modifying_properties
|
2800
|
+
:modifying_properties,
|
2801
|
+
:aiml_options)
|
2740
2802
|
SENSITIVE = []
|
2741
2803
|
include Aws::Structure
|
2742
2804
|
end
|
@@ -3167,6 +3229,11 @@ module Aws::OpenSearchService
|
|
3167
3229
|
# modified.
|
3168
3230
|
# @return [Array<Types::ModifyingProperties>]
|
3169
3231
|
#
|
3232
|
+
# @!attribute [rw] aiml_options
|
3233
|
+
# Container for parameters required to enable all machine learning
|
3234
|
+
# features.
|
3235
|
+
# @return [Types::AIMLOptionsOutput]
|
3236
|
+
#
|
3170
3237
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DomainStatus AWS API Documentation
|
3171
3238
|
#
|
3172
3239
|
class DomainStatus < Struct.new(
|
@@ -3201,7 +3268,8 @@ module Aws::OpenSearchService
|
|
3201
3268
|
:off_peak_window_options,
|
3202
3269
|
:software_update_options,
|
3203
3270
|
:domain_processing_status,
|
3204
|
-
:modifying_properties
|
3271
|
+
:modifying_properties,
|
3272
|
+
:aiml_options)
|
3205
3273
|
SENSITIVE = []
|
3206
3274
|
include Aws::Structure
|
3207
3275
|
end
|
@@ -4696,6 +4764,44 @@ module Aws::OpenSearchService
|
|
4696
4764
|
include Aws::Structure
|
4697
4765
|
end
|
4698
4766
|
|
4767
|
+
# Container for parameters required to enable the natural language query
|
4768
|
+
# generation feature.
|
4769
|
+
#
|
4770
|
+
# @!attribute [rw] desired_state
|
4771
|
+
# The desired state of the natural language query generation feature.
|
4772
|
+
# Valid values are ENABLED and DISABLED.
|
4773
|
+
# @return [String]
|
4774
|
+
#
|
4775
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/NaturalLanguageQueryGenerationOptionsInput AWS API Documentation
|
4776
|
+
#
|
4777
|
+
class NaturalLanguageQueryGenerationOptionsInput < Struct.new(
|
4778
|
+
:desired_state)
|
4779
|
+
SENSITIVE = []
|
4780
|
+
include Aws::Structure
|
4781
|
+
end
|
4782
|
+
|
4783
|
+
# Container for parameters representing the state of the natural
|
4784
|
+
# language query generation feature on the specified domain.
|
4785
|
+
#
|
4786
|
+
# @!attribute [rw] desired_state
|
4787
|
+
# The desired state of the natural language query generation feature.
|
4788
|
+
# Valid values are ENABLED and DISABLED.
|
4789
|
+
# @return [String]
|
4790
|
+
#
|
4791
|
+
# @!attribute [rw] current_state
|
4792
|
+
# The current state of the natural language query generation feature,
|
4793
|
+
# indicating completion, in progress, or failure.
|
4794
|
+
# @return [String]
|
4795
|
+
#
|
4796
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/NaturalLanguageQueryGenerationOptionsOutput AWS API Documentation
|
4797
|
+
#
|
4798
|
+
class NaturalLanguageQueryGenerationOptionsOutput < Struct.new(
|
4799
|
+
:desired_state,
|
4800
|
+
:current_state)
|
4801
|
+
SENSITIVE = []
|
4802
|
+
include Aws::Structure
|
4803
|
+
end
|
4804
|
+
|
4699
4805
|
# Enables or disables node-to-node encryption. For more information, see
|
4700
4806
|
# [Node-to-node encryption for Amazon OpenSearch Service][1].
|
4701
4807
|
#
|
@@ -6115,6 +6221,10 @@ module Aws::OpenSearchService
|
|
6115
6221
|
# Service software update options for the domain.
|
6116
6222
|
# @return [Types::SoftwareUpdateOptions]
|
6117
6223
|
#
|
6224
|
+
# @!attribute [rw] aiml_options
|
6225
|
+
# Options for all machine learning features for the specified domain.
|
6226
|
+
# @return [Types::AIMLOptionsInput]
|
6227
|
+
#
|
6118
6228
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/UpdateDomainConfigRequest AWS API Documentation
|
6119
6229
|
#
|
6120
6230
|
class UpdateDomainConfigRequest < Struct.new(
|
@@ -6136,7 +6246,8 @@ module Aws::OpenSearchService
|
|
6136
6246
|
:dry_run,
|
6137
6247
|
:dry_run_mode,
|
6138
6248
|
:off_peak_window_options,
|
6139
|
-
:software_update_options
|
6249
|
+
:software_update_options,
|
6250
|
+
:aiml_options)
|
6140
6251
|
SENSITIVE = []
|
6141
6252
|
include Aws::Structure
|
6142
6253
|
end
|
data/sig/client.rbs
CHANGED
@@ -48,6 +48,7 @@ module Aws
|
|
48
48
|
?sdk_ua_app_id: String,
|
49
49
|
?secret_access_key: String,
|
50
50
|
?session_token: String,
|
51
|
+
?sigv4a_signing_region_set: Array[String],
|
51
52
|
?stub_responses: untyped,
|
52
53
|
?token_provider: untyped,
|
53
54
|
?use_dualstack_endpoint: bool,
|
@@ -282,6 +283,11 @@ module Aws
|
|
282
283
|
},
|
283
284
|
?software_update_options: {
|
284
285
|
auto_software_update_enabled: bool?
|
286
|
+
},
|
287
|
+
?aiml_options: {
|
288
|
+
natural_language_query_generation_options: {
|
289
|
+
desired_state: ("ENABLED" | "DISABLED")?
|
290
|
+
}?
|
285
291
|
}
|
286
292
|
) -> _CreateDomainResponseSuccess
|
287
293
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDomainResponseSuccess
|
@@ -1061,6 +1067,11 @@ module Aws
|
|
1061
1067
|
},
|
1062
1068
|
?software_update_options: {
|
1063
1069
|
auto_software_update_enabled: bool?
|
1070
|
+
},
|
1071
|
+
?aiml_options: {
|
1072
|
+
natural_language_query_generation_options: {
|
1073
|
+
desired_state: ("ENABLED" | "DISABLED")?
|
1074
|
+
}?
|
1064
1075
|
}
|
1065
1076
|
) -> _UpdateDomainConfigResponseSuccess
|
1066
1077
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDomainConfigResponseSuccess
|
data/sig/resource.rbs
CHANGED
data/sig/types.rbs
CHANGED
@@ -8,6 +8,22 @@
|
|
8
8
|
module Aws::OpenSearchService
|
9
9
|
module Types
|
10
10
|
|
11
|
+
class AIMLOptionsInput
|
12
|
+
attr_accessor natural_language_query_generation_options: Types::NaturalLanguageQueryGenerationOptionsInput
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class AIMLOptionsOutput
|
17
|
+
attr_accessor natural_language_query_generation_options: Types::NaturalLanguageQueryGenerationOptionsOutput
|
18
|
+
SENSITIVE: []
|
19
|
+
end
|
20
|
+
|
21
|
+
class AIMLOptionsStatus
|
22
|
+
attr_accessor options: Types::AIMLOptionsOutput
|
23
|
+
attr_accessor status: Types::OptionStatus
|
24
|
+
SENSITIVE: []
|
25
|
+
end
|
26
|
+
|
11
27
|
class AWSDomainInformation
|
12
28
|
attr_accessor owner_id: ::String
|
13
29
|
attr_accessor domain_name: ::String
|
@@ -328,6 +344,7 @@ module Aws::OpenSearchService
|
|
328
344
|
attr_accessor auto_tune_options: Types::AutoTuneOptionsInput
|
329
345
|
attr_accessor off_peak_window_options: Types::OffPeakWindowOptions
|
330
346
|
attr_accessor software_update_options: Types::SoftwareUpdateOptions
|
347
|
+
attr_accessor aiml_options: Types::AIMLOptionsInput
|
331
348
|
SENSITIVE: []
|
332
349
|
end
|
333
350
|
|
@@ -697,6 +714,7 @@ module Aws::OpenSearchService
|
|
697
714
|
attr_accessor off_peak_window_options: Types::OffPeakWindowOptionsStatus
|
698
715
|
attr_accessor software_update_options: Types::SoftwareUpdateOptionsStatus
|
699
716
|
attr_accessor modifying_properties: ::Array[Types::ModifyingProperties]
|
717
|
+
attr_accessor aiml_options: Types::AIMLOptionsStatus
|
700
718
|
SENSITIVE: []
|
701
719
|
end
|
702
720
|
|
@@ -796,6 +814,7 @@ module Aws::OpenSearchService
|
|
796
814
|
attr_accessor software_update_options: Types::SoftwareUpdateOptions
|
797
815
|
attr_accessor domain_processing_status: ("Creating" | "Active" | "Modifying" | "UpgradingEngineVersion" | "UpdatingServiceSoftware" | "Isolated" | "Deleting")
|
798
816
|
attr_accessor modifying_properties: ::Array[Types::ModifyingProperties]
|
817
|
+
attr_accessor aiml_options: Types::AIMLOptionsOutput
|
799
818
|
SENSITIVE: []
|
800
819
|
end
|
801
820
|
|
@@ -1196,6 +1215,17 @@ module Aws::OpenSearchService
|
|
1196
1215
|
SENSITIVE: []
|
1197
1216
|
end
|
1198
1217
|
|
1218
|
+
class NaturalLanguageQueryGenerationOptionsInput
|
1219
|
+
attr_accessor desired_state: ("ENABLED" | "DISABLED")
|
1220
|
+
SENSITIVE: []
|
1221
|
+
end
|
1222
|
+
|
1223
|
+
class NaturalLanguageQueryGenerationOptionsOutput
|
1224
|
+
attr_accessor desired_state: ("ENABLED" | "DISABLED")
|
1225
|
+
attr_accessor current_state: ("NOT_ENABLED" | "ENABLE_COMPLETE" | "ENABLE_IN_PROGRESS" | "ENABLE_FAILED" | "DISABLE_COMPLETE" | "DISABLE_IN_PROGRESS" | "DISABLE_FAILED")
|
1226
|
+
SENSITIVE: []
|
1227
|
+
end
|
1228
|
+
|
1199
1229
|
class NodeToNodeEncryptionOptions
|
1200
1230
|
attr_accessor enabled: bool
|
1201
1231
|
SENSITIVE: []
|
@@ -1536,6 +1566,7 @@ module Aws::OpenSearchService
|
|
1536
1566
|
attr_accessor dry_run_mode: ("Basic" | "Verbose")
|
1537
1567
|
attr_accessor off_peak_window_options: Types::OffPeakWindowOptions
|
1538
1568
|
attr_accessor software_update_options: Types::SoftwareUpdateOptions
|
1569
|
+
attr_accessor aiml_options: Types::AIMLOptionsInput
|
1539
1570
|
SENSITIVE: []
|
1540
1571
|
end
|
1541
1572
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.50.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-07-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.201.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,21 +29,21 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.201.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: '1.
|
39
|
+
version: '1.5'
|
40
40
|
type: :runtime
|
41
41
|
prerelease: false
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '1.
|
46
|
+
version: '1.5'
|
47
47
|
description: Official AWS Ruby gem for Amazon OpenSearch Service. This gem is part
|
48
48
|
of the AWS SDK for Ruby.
|
49
49
|
email:
|