aws-sdk-elasticsearchservice 1.58.0 → 1.62.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-elasticsearchservice/client.rb +40 -3
- data/lib/aws-sdk-elasticsearchservice/client_api.rb +14 -0
- data/lib/aws-sdk-elasticsearchservice/types.rb +63 -4
- data/lib/aws-sdk-elasticsearchservice.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 319d6f8d92c78a7edbbbaaa9c80f358233db91ee1bb619d5ff273634b163b301
|
4
|
+
data.tar.gz: 5305385d93328dd748aea66adba7ba472f1fd3dcc382fcd9a481ead60fd15c0f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2c2f5cc2b051a78cda973c2db3abba5a101654b9f3f73ec5e16189545e68593a76df47041d8d9078db71e989535458cb95ec05abd955c719b505b756806c285c
|
7
|
+
data.tar.gz: 5ea2eabe3e5fc873092a3cfc91078f5f59dd190301eb2d11b5520c4b7995819615674df766a024267dbcb9c16d6f08c5c5ed0a1d1c973b098065150a2e4985e8
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.62.0 (2022-01-06)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Amazon OpenSearch Service adds support for Fine Grained Access Control for existing domains running Elasticsearch version 6.7 and above
|
8
|
+
|
9
|
+
1.61.0 (2021-12-21)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.60.0 (2021-11-30)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.59.0 (2021-11-22)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - This release adds an optional parameter dry-run for the UpdateElasticsearchDomainConfig API to perform basic validation checks, and detect the deployment type that will be required for the configuration change, without actually applying the change.
|
23
|
+
|
4
24
|
1.58.0 (2021-11-04)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.62.0
|
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
30
31
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
32
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
32
33
|
|
@@ -73,6 +74,7 @@ module Aws::ElasticsearchService
|
|
73
74
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
74
75
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
76
|
add_plugin(Aws::Plugins::HttpChecksum)
|
77
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
76
78
|
add_plugin(Aws::Plugins::SignatureV4)
|
77
79
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
78
80
|
|
@@ -119,7 +121,9 @@ module Aws::ElasticsearchService
|
|
119
121
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
122
|
# are very aggressive. Construct and pass an instance of
|
121
123
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
-
# enable retries and extended timeouts.
|
124
|
+
# enable retries and extended timeouts. Instance profile credential
|
125
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
126
|
+
# to true.
|
123
127
|
#
|
124
128
|
# @option options [required, String] :region
|
125
129
|
# The AWS region to connect to. The configured `:region` is
|
@@ -173,6 +177,10 @@ module Aws::ElasticsearchService
|
|
173
177
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
174
178
|
# a clock skew correction and retry requests with skewed client clocks.
|
175
179
|
#
|
180
|
+
# @option options [String] :defaults_mode ("legacy")
|
181
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
182
|
+
# accepted modes and the configuration defaults that are included.
|
183
|
+
#
|
176
184
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
177
185
|
# Set to true to disable SDK automatically adding host prefix
|
178
186
|
# to default service endpoint when available.
|
@@ -295,7 +303,7 @@ module Aws::ElasticsearchService
|
|
295
303
|
# seconds to wait when opening a HTTP session before raising a
|
296
304
|
# `Timeout::Error`.
|
297
305
|
#
|
298
|
-
# @option options [
|
306
|
+
# @option options [Float] :http_read_timeout (60) The default
|
299
307
|
# number of seconds to wait for response data. This value can
|
300
308
|
# safely be set per-request on the session.
|
301
309
|
#
|
@@ -311,6 +319,9 @@ module Aws::ElasticsearchService
|
|
311
319
|
# disables this behaviour. This value can safely be set per
|
312
320
|
# request on the session.
|
313
321
|
#
|
322
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
323
|
+
# in seconds.
|
324
|
+
#
|
314
325
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
315
326
|
# HTTP debug output will be sent to the `:logger`.
|
316
327
|
#
|
@@ -663,6 +674,7 @@ module Aws::ElasticsearchService
|
|
663
674
|
# roles_key: "String",
|
664
675
|
# session_timeout_minutes: 1,
|
665
676
|
# },
|
677
|
+
# anonymous_auth_enabled: false,
|
666
678
|
# },
|
667
679
|
# auto_tune_options: {
|
668
680
|
# desired_state: "ENABLED", # accepts ENABLED, DISABLED
|
@@ -755,6 +767,8 @@ module Aws::ElasticsearchService
|
|
755
767
|
# resp.domain_status.advanced_security_options.saml_options.subject_key #=> String
|
756
768
|
# resp.domain_status.advanced_security_options.saml_options.roles_key #=> String
|
757
769
|
# resp.domain_status.advanced_security_options.saml_options.session_timeout_minutes #=> Integer
|
770
|
+
# resp.domain_status.advanced_security_options.anonymous_auth_disable_date #=> Time
|
771
|
+
# resp.domain_status.advanced_security_options.anonymous_auth_enabled #=> Boolean
|
758
772
|
# resp.domain_status.auto_tune_options.state #=> String, one of "ENABLED", "DISABLED", "ENABLE_IN_PROGRESS", "DISABLE_IN_PROGRESS", "DISABLED_AND_ROLLBACK_SCHEDULED", "DISABLED_AND_ROLLBACK_IN_PROGRESS", "DISABLED_AND_ROLLBACK_COMPLETE", "DISABLED_AND_ROLLBACK_ERROR", "ERROR"
|
759
773
|
# resp.domain_status.auto_tune_options.error_message #=> String
|
760
774
|
#
|
@@ -960,6 +974,8 @@ module Aws::ElasticsearchService
|
|
960
974
|
# resp.domain_status.advanced_security_options.saml_options.subject_key #=> String
|
961
975
|
# resp.domain_status.advanced_security_options.saml_options.roles_key #=> String
|
962
976
|
# resp.domain_status.advanced_security_options.saml_options.session_timeout_minutes #=> Integer
|
977
|
+
# resp.domain_status.advanced_security_options.anonymous_auth_disable_date #=> Time
|
978
|
+
# resp.domain_status.advanced_security_options.anonymous_auth_enabled #=> Boolean
|
963
979
|
# resp.domain_status.auto_tune_options.state #=> String, one of "ENABLED", "DISABLED", "ENABLE_IN_PROGRESS", "DISABLE_IN_PROGRESS", "DISABLED_AND_ROLLBACK_SCHEDULED", "DISABLED_AND_ROLLBACK_IN_PROGRESS", "DISABLED_AND_ROLLBACK_COMPLETE", "DISABLED_AND_ROLLBACK_ERROR", "ERROR"
|
964
980
|
# resp.domain_status.auto_tune_options.error_message #=> String
|
965
981
|
#
|
@@ -1231,6 +1247,8 @@ module Aws::ElasticsearchService
|
|
1231
1247
|
# resp.domain_status.advanced_security_options.saml_options.subject_key #=> String
|
1232
1248
|
# resp.domain_status.advanced_security_options.saml_options.roles_key #=> String
|
1233
1249
|
# resp.domain_status.advanced_security_options.saml_options.session_timeout_minutes #=> Integer
|
1250
|
+
# resp.domain_status.advanced_security_options.anonymous_auth_disable_date #=> Time
|
1251
|
+
# resp.domain_status.advanced_security_options.anonymous_auth_enabled #=> Boolean
|
1234
1252
|
# resp.domain_status.auto_tune_options.state #=> String, one of "ENABLED", "DISABLED", "ENABLE_IN_PROGRESS", "DISABLE_IN_PROGRESS", "DISABLED_AND_ROLLBACK_SCHEDULED", "DISABLED_AND_ROLLBACK_IN_PROGRESS", "DISABLED_AND_ROLLBACK_COMPLETE", "DISABLED_AND_ROLLBACK_ERROR", "ERROR"
|
1235
1253
|
# resp.domain_status.auto_tune_options.error_message #=> String
|
1236
1254
|
#
|
@@ -1370,6 +1388,8 @@ module Aws::ElasticsearchService
|
|
1370
1388
|
# resp.domain_config.advanced_security_options.options.saml_options.subject_key #=> String
|
1371
1389
|
# resp.domain_config.advanced_security_options.options.saml_options.roles_key #=> String
|
1372
1390
|
# resp.domain_config.advanced_security_options.options.saml_options.session_timeout_minutes #=> Integer
|
1391
|
+
# resp.domain_config.advanced_security_options.options.anonymous_auth_disable_date #=> Time
|
1392
|
+
# resp.domain_config.advanced_security_options.options.anonymous_auth_enabled #=> Boolean
|
1373
1393
|
# resp.domain_config.advanced_security_options.status.creation_date #=> Time
|
1374
1394
|
# resp.domain_config.advanced_security_options.status.update_date #=> Time
|
1375
1395
|
# resp.domain_config.advanced_security_options.status.update_version #=> Integer
|
@@ -1484,6 +1504,8 @@ module Aws::ElasticsearchService
|
|
1484
1504
|
# resp.domain_status_list[0].advanced_security_options.saml_options.subject_key #=> String
|
1485
1505
|
# resp.domain_status_list[0].advanced_security_options.saml_options.roles_key #=> String
|
1486
1506
|
# resp.domain_status_list[0].advanced_security_options.saml_options.session_timeout_minutes #=> Integer
|
1507
|
+
# resp.domain_status_list[0].advanced_security_options.anonymous_auth_disable_date #=> Time
|
1508
|
+
# resp.domain_status_list[0].advanced_security_options.anonymous_auth_enabled #=> Boolean
|
1487
1509
|
# resp.domain_status_list[0].auto_tune_options.state #=> String, one of "ENABLED", "DISABLED", "ENABLE_IN_PROGRESS", "DISABLE_IN_PROGRESS", "DISABLED_AND_ROLLBACK_SCHEDULED", "DISABLED_AND_ROLLBACK_IN_PROGRESS", "DISABLED_AND_ROLLBACK_COMPLETE", "DISABLED_AND_ROLLBACK_ERROR", "ERROR"
|
1488
1510
|
# resp.domain_status_list[0].auto_tune_options.error_message #=> String
|
1489
1511
|
#
|
@@ -2490,9 +2512,18 @@ module Aws::ElasticsearchService
|
|
2490
2512
|
# @option params [Types::AutoTuneOptions] :auto_tune_options
|
2491
2513
|
# Specifies Auto-Tune options.
|
2492
2514
|
#
|
2515
|
+
# @option params [Boolean] :dry_run
|
2516
|
+
# This flag, when set to True, specifies whether the
|
2517
|
+
# `UpdateElasticsearchDomain` request should return the results of
|
2518
|
+
# validation checks without actually applying the change. This flag,
|
2519
|
+
# when set to True, specifies the deployment mechanism through which the
|
2520
|
+
# update shall be applied on the domain. This will not actually perform
|
2521
|
+
# the Update.
|
2522
|
+
#
|
2493
2523
|
# @return [Types::UpdateElasticsearchDomainConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2494
2524
|
#
|
2495
2525
|
# * {Types::UpdateElasticsearchDomainConfigResponse#domain_config #domain_config} => Types::ElasticsearchDomainConfig
|
2526
|
+
# * {Types::UpdateElasticsearchDomainConfigResponse#dry_run_results #dry_run_results} => Types::DryRunResults
|
2496
2527
|
#
|
2497
2528
|
# @example Request syntax with placeholder values
|
2498
2529
|
#
|
@@ -2571,6 +2602,7 @@ module Aws::ElasticsearchService
|
|
2571
2602
|
# roles_key: "String",
|
2572
2603
|
# session_timeout_minutes: 1,
|
2573
2604
|
# },
|
2605
|
+
# anonymous_auth_enabled: false,
|
2574
2606
|
# },
|
2575
2607
|
# node_to_node_encryption_options: {
|
2576
2608
|
# enabled: false,
|
@@ -2593,6 +2625,7 @@ module Aws::ElasticsearchService
|
|
2593
2625
|
# },
|
2594
2626
|
# ],
|
2595
2627
|
# },
|
2628
|
+
# dry_run: false,
|
2596
2629
|
# })
|
2597
2630
|
#
|
2598
2631
|
# @example Response structure
|
@@ -2707,6 +2740,8 @@ module Aws::ElasticsearchService
|
|
2707
2740
|
# resp.domain_config.advanced_security_options.options.saml_options.subject_key #=> String
|
2708
2741
|
# resp.domain_config.advanced_security_options.options.saml_options.roles_key #=> String
|
2709
2742
|
# resp.domain_config.advanced_security_options.options.saml_options.session_timeout_minutes #=> Integer
|
2743
|
+
# resp.domain_config.advanced_security_options.options.anonymous_auth_disable_date #=> Time
|
2744
|
+
# resp.domain_config.advanced_security_options.options.anonymous_auth_enabled #=> Boolean
|
2710
2745
|
# resp.domain_config.advanced_security_options.status.creation_date #=> Time
|
2711
2746
|
# resp.domain_config.advanced_security_options.status.update_date #=> Time
|
2712
2747
|
# resp.domain_config.advanced_security_options.status.update_version #=> Integer
|
@@ -2725,6 +2760,8 @@ module Aws::ElasticsearchService
|
|
2725
2760
|
# resp.domain_config.auto_tune_options.status.state #=> String, one of "ENABLED", "DISABLED", "ENABLE_IN_PROGRESS", "DISABLE_IN_PROGRESS", "DISABLED_AND_ROLLBACK_SCHEDULED", "DISABLED_AND_ROLLBACK_IN_PROGRESS", "DISABLED_AND_ROLLBACK_COMPLETE", "DISABLED_AND_ROLLBACK_ERROR", "ERROR"
|
2726
2761
|
# resp.domain_config.auto_tune_options.status.error_message #=> String
|
2727
2762
|
# resp.domain_config.auto_tune_options.status.pending_deletion #=> Boolean
|
2763
|
+
# resp.dry_run_results.deployment_type #=> String
|
2764
|
+
# resp.dry_run_results.message #=> String
|
2728
2765
|
#
|
2729
2766
|
# @overload update_elasticsearch_domain_config(params = {})
|
2730
2767
|
# @param [Hash] params ({})
|
@@ -2842,7 +2879,7 @@ module Aws::ElasticsearchService
|
|
2842
2879
|
params: params,
|
2843
2880
|
config: config)
|
2844
2881
|
context[:gem_name] = 'aws-sdk-elasticsearchservice'
|
2845
|
-
context[:gem_version] = '1.
|
2882
|
+
context[:gem_version] = '1.62.0'
|
2846
2883
|
Seahorse::Client::Request.new(handlers, context)
|
2847
2884
|
end
|
2848
2885
|
|
@@ -75,6 +75,7 @@ module Aws::ElasticsearchService
|
|
75
75
|
DeletePackageResponse = Shapes::StructureShape.new(name: 'DeletePackageResponse')
|
76
76
|
DeploymentCloseDateTimeStamp = Shapes::TimestampShape.new(name: 'DeploymentCloseDateTimeStamp')
|
77
77
|
DeploymentStatus = Shapes::StringShape.new(name: 'DeploymentStatus')
|
78
|
+
DeploymentType = Shapes::StringShape.new(name: 'DeploymentType')
|
78
79
|
DescribeDomainAutoTunesRequest = Shapes::StructureShape.new(name: 'DescribeDomainAutoTunesRequest')
|
79
80
|
DescribeDomainAutoTunesResponse = Shapes::StructureShape.new(name: 'DescribeDomainAutoTunesResponse')
|
80
81
|
DescribeElasticsearchDomainConfigRequest = Shapes::StructureShape.new(name: 'DescribeElasticsearchDomainConfigRequest')
|
@@ -100,6 +101,7 @@ module Aws::ElasticsearchService
|
|
100
101
|
DescribeReservedElasticsearchInstanceOfferingsResponse = Shapes::StructureShape.new(name: 'DescribeReservedElasticsearchInstanceOfferingsResponse')
|
101
102
|
DescribeReservedElasticsearchInstancesRequest = Shapes::StructureShape.new(name: 'DescribeReservedElasticsearchInstancesRequest')
|
102
103
|
DescribeReservedElasticsearchInstancesResponse = Shapes::StructureShape.new(name: 'DescribeReservedElasticsearchInstancesResponse')
|
104
|
+
DisableTimestamp = Shapes::TimestampShape.new(name: 'DisableTimestamp')
|
103
105
|
DisabledOperationException = Shapes::StructureShape.new(name: 'DisabledOperationException')
|
104
106
|
DissociatePackageRequest = Shapes::StructureShape.new(name: 'DissociatePackageRequest')
|
105
107
|
DissociatePackageResponse = Shapes::StructureShape.new(name: 'DissociatePackageResponse')
|
@@ -116,6 +118,8 @@ module Aws::ElasticsearchService
|
|
116
118
|
DomainPackageDetailsList = Shapes::ListShape.new(name: 'DomainPackageDetailsList')
|
117
119
|
DomainPackageStatus = Shapes::StringShape.new(name: 'DomainPackageStatus')
|
118
120
|
Double = Shapes::FloatShape.new(name: 'Double')
|
121
|
+
DryRun = Shapes::BooleanShape.new(name: 'DryRun')
|
122
|
+
DryRunResults = Shapes::StructureShape.new(name: 'DryRunResults')
|
119
123
|
Duration = Shapes::StructureShape.new(name: 'Duration')
|
120
124
|
DurationValue = Shapes::IntegerShape.new(name: 'DurationValue')
|
121
125
|
EBSOptions = Shapes::StructureShape.new(name: 'EBSOptions')
|
@@ -192,6 +196,7 @@ module Aws::ElasticsearchService
|
|
192
196
|
MasterUserOptions = Shapes::StructureShape.new(name: 'MasterUserOptions')
|
193
197
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
194
198
|
MaximumInstanceCount = Shapes::IntegerShape.new(name: 'MaximumInstanceCount')
|
199
|
+
Message = Shapes::StringShape.new(name: 'Message')
|
195
200
|
MinimumInstanceCount = Shapes::IntegerShape.new(name: 'MinimumInstanceCount')
|
196
201
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
197
202
|
NodeToNodeEncryptionOptions = Shapes::StructureShape.new(name: 'NodeToNodeEncryptionOptions')
|
@@ -326,12 +331,15 @@ module Aws::ElasticsearchService
|
|
326
331
|
AdvancedSecurityOptions.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Enabled"))
|
327
332
|
AdvancedSecurityOptions.add_member(:internal_user_database_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "InternalUserDatabaseEnabled"))
|
328
333
|
AdvancedSecurityOptions.add_member(:saml_options, Shapes::ShapeRef.new(shape: SAMLOptionsOutput, location_name: "SAMLOptions"))
|
334
|
+
AdvancedSecurityOptions.add_member(:anonymous_auth_disable_date, Shapes::ShapeRef.new(shape: DisableTimestamp, location_name: "AnonymousAuthDisableDate"))
|
335
|
+
AdvancedSecurityOptions.add_member(:anonymous_auth_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "AnonymousAuthEnabled"))
|
329
336
|
AdvancedSecurityOptions.struct_class = Types::AdvancedSecurityOptions
|
330
337
|
|
331
338
|
AdvancedSecurityOptionsInput.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Enabled"))
|
332
339
|
AdvancedSecurityOptionsInput.add_member(:internal_user_database_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "InternalUserDatabaseEnabled"))
|
333
340
|
AdvancedSecurityOptionsInput.add_member(:master_user_options, Shapes::ShapeRef.new(shape: MasterUserOptions, location_name: "MasterUserOptions"))
|
334
341
|
AdvancedSecurityOptionsInput.add_member(:saml_options, Shapes::ShapeRef.new(shape: SAMLOptionsInput, location_name: "SAMLOptions"))
|
342
|
+
AdvancedSecurityOptionsInput.add_member(:anonymous_auth_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "AnonymousAuthEnabled"))
|
335
343
|
AdvancedSecurityOptionsInput.struct_class = Types::AdvancedSecurityOptionsInput
|
336
344
|
|
337
345
|
AdvancedSecurityOptionsStatus.add_member(:options, Shapes::ShapeRef.new(shape: AdvancedSecurityOptions, required: true, location_name: "Options"))
|
@@ -616,6 +624,10 @@ module Aws::ElasticsearchService
|
|
616
624
|
|
617
625
|
DomainPackageDetailsList.member = Shapes::ShapeRef.new(shape: DomainPackageDetails)
|
618
626
|
|
627
|
+
DryRunResults.add_member(:deployment_type, Shapes::ShapeRef.new(shape: DeploymentType, location_name: "DeploymentType"))
|
628
|
+
DryRunResults.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
|
629
|
+
DryRunResults.struct_class = Types::DryRunResults
|
630
|
+
|
619
631
|
Duration.add_member(:value, Shapes::ShapeRef.new(shape: DurationValue, location_name: "Value"))
|
620
632
|
Duration.add_member(:unit, Shapes::ShapeRef.new(shape: TimeUnit, location_name: "Unit"))
|
621
633
|
Duration.struct_class = Types::Duration
|
@@ -1049,9 +1061,11 @@ module Aws::ElasticsearchService
|
|
1049
1061
|
UpdateElasticsearchDomainConfigRequest.add_member(:node_to_node_encryption_options, Shapes::ShapeRef.new(shape: NodeToNodeEncryptionOptions, location_name: "NodeToNodeEncryptionOptions"))
|
1050
1062
|
UpdateElasticsearchDomainConfigRequest.add_member(:encryption_at_rest_options, Shapes::ShapeRef.new(shape: EncryptionAtRestOptions, location_name: "EncryptionAtRestOptions"))
|
1051
1063
|
UpdateElasticsearchDomainConfigRequest.add_member(:auto_tune_options, Shapes::ShapeRef.new(shape: AutoTuneOptions, location_name: "AutoTuneOptions"))
|
1064
|
+
UpdateElasticsearchDomainConfigRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: DryRun, location_name: "DryRun"))
|
1052
1065
|
UpdateElasticsearchDomainConfigRequest.struct_class = Types::UpdateElasticsearchDomainConfigRequest
|
1053
1066
|
|
1054
1067
|
UpdateElasticsearchDomainConfigResponse.add_member(:domain_config, Shapes::ShapeRef.new(shape: ElasticsearchDomainConfig, required: true, location_name: "DomainConfig"))
|
1068
|
+
UpdateElasticsearchDomainConfigResponse.add_member(:dry_run_results, Shapes::ShapeRef.new(shape: DryRunResults, location_name: "DryRunResults"))
|
1055
1069
|
UpdateElasticsearchDomainConfigResponse.struct_class = Types::UpdateElasticsearchDomainConfigResponse
|
1056
1070
|
|
1057
1071
|
UpdatePackageRequest.add_member(:package_id, Shapes::ShapeRef.new(shape: PackageID, required: true, location_name: "PackageID"))
|
@@ -177,10 +177,22 @@ module Aws::ElasticsearchService
|
|
177
177
|
# Describes the SAML application configured for a domain.
|
178
178
|
# @return [Types::SAMLOptionsOutput]
|
179
179
|
#
|
180
|
+
# @!attribute [rw] anonymous_auth_disable_date
|
181
|
+
# Specifies the Anonymous Auth Disable Date when Anonymous Auth is
|
182
|
+
# enabled.
|
183
|
+
# @return [Time]
|
184
|
+
#
|
185
|
+
# @!attribute [rw] anonymous_auth_enabled
|
186
|
+
# True if Anonymous auth is enabled. Anonymous auth can be enabled
|
187
|
+
# only when AdvancedSecurity is enabled on existing domains.
|
188
|
+
# @return [Boolean]
|
189
|
+
#
|
180
190
|
class AdvancedSecurityOptions < Struct.new(
|
181
191
|
:enabled,
|
182
192
|
:internal_user_database_enabled,
|
183
|
-
:saml_options
|
193
|
+
:saml_options,
|
194
|
+
:anonymous_auth_disable_date,
|
195
|
+
:anonymous_auth_enabled)
|
184
196
|
SENSITIVE = []
|
185
197
|
include Aws::Structure
|
186
198
|
end
|
@@ -213,6 +225,7 @@ module Aws::ElasticsearchService
|
|
213
225
|
# roles_key: "String",
|
214
226
|
# session_timeout_minutes: 1,
|
215
227
|
# },
|
228
|
+
# anonymous_auth_enabled: false,
|
216
229
|
# }
|
217
230
|
#
|
218
231
|
# @!attribute [rw] enabled
|
@@ -232,11 +245,17 @@ module Aws::ElasticsearchService
|
|
232
245
|
# Specifies the SAML application configuration for the domain.
|
233
246
|
# @return [Types::SAMLOptionsInput]
|
234
247
|
#
|
248
|
+
# @!attribute [rw] anonymous_auth_enabled
|
249
|
+
# True if Anonymous auth is enabled. Anonymous auth can be enabled
|
250
|
+
# only when AdvancedSecurity is enabled on existing domains.
|
251
|
+
# @return [Boolean]
|
252
|
+
#
|
235
253
|
class AdvancedSecurityOptionsInput < Struct.new(
|
236
254
|
:enabled,
|
237
255
|
:internal_user_database_enabled,
|
238
256
|
:master_user_options,
|
239
|
-
:saml_options
|
257
|
+
:saml_options,
|
258
|
+
:anonymous_auth_enabled)
|
240
259
|
SENSITIVE = []
|
241
260
|
include Aws::Structure
|
242
261
|
end
|
@@ -797,6 +816,7 @@ module Aws::ElasticsearchService
|
|
797
816
|
# roles_key: "String",
|
798
817
|
# session_timeout_minutes: 1,
|
799
818
|
# },
|
819
|
+
# anonymous_auth_enabled: false,
|
800
820
|
# },
|
801
821
|
# auto_tune_options: {
|
802
822
|
# desired_state: "ENABLED", # accepts ENABLED, DISABLED
|
@@ -1973,6 +1993,28 @@ module Aws::ElasticsearchService
|
|
1973
1993
|
include Aws::Structure
|
1974
1994
|
end
|
1975
1995
|
|
1996
|
+
# @!attribute [rw] deployment_type
|
1997
|
+
# Specifies the deployment mechanism through which the update shall be
|
1998
|
+
# applied on the domain. Possible responses are `Blue/Green` (The
|
1999
|
+
# update will require a blue/green deployment.) `DynamicUpdate` (The
|
2000
|
+
# update can be applied in-place without a Blue/Green deployment
|
2001
|
+
# required.) `Undetermined` (The domain is undergoing an update which
|
2002
|
+
# needs to complete before the deployment type can be predicted.)
|
2003
|
+
# `None` (The configuration change matches the current configuration
|
2004
|
+
# and will not result in any update.)
|
2005
|
+
# @return [String]
|
2006
|
+
#
|
2007
|
+
# @!attribute [rw] message
|
2008
|
+
# Contains an optional message associated with the DryRunResults.
|
2009
|
+
# @return [String]
|
2010
|
+
#
|
2011
|
+
class DryRunResults < Struct.new(
|
2012
|
+
:deployment_type,
|
2013
|
+
:message)
|
2014
|
+
SENSITIVE = []
|
2015
|
+
include Aws::Structure
|
2016
|
+
end
|
2017
|
+
|
1976
2018
|
# Specifies maintenance schedule duration: duration value and duration
|
1977
2019
|
# unit. See the [Developer Guide][1] for more information.
|
1978
2020
|
#
|
@@ -4237,6 +4279,7 @@ module Aws::ElasticsearchService
|
|
4237
4279
|
# roles_key: "String",
|
4238
4280
|
# session_timeout_minutes: 1,
|
4239
4281
|
# },
|
4282
|
+
# anonymous_auth_enabled: false,
|
4240
4283
|
# },
|
4241
4284
|
# node_to_node_encryption_options: {
|
4242
4285
|
# enabled: false,
|
@@ -4259,6 +4302,7 @@ module Aws::ElasticsearchService
|
|
4259
4302
|
# },
|
4260
4303
|
# ],
|
4261
4304
|
# },
|
4305
|
+
# dry_run: false,
|
4262
4306
|
# }
|
4263
4307
|
#
|
4264
4308
|
# @!attribute [rw] domain_name
|
@@ -4340,6 +4384,15 @@ module Aws::ElasticsearchService
|
|
4340
4384
|
# Specifies Auto-Tune options.
|
4341
4385
|
# @return [Types::AutoTuneOptions]
|
4342
4386
|
#
|
4387
|
+
# @!attribute [rw] dry_run
|
4388
|
+
# This flag, when set to True, specifies whether the
|
4389
|
+
# `UpdateElasticsearchDomain` request should return the results of
|
4390
|
+
# validation checks without actually applying the change. This flag,
|
4391
|
+
# when set to True, specifies the deployment mechanism through which
|
4392
|
+
# the update shall be applied on the domain. This will not actually
|
4393
|
+
# perform the Update.
|
4394
|
+
# @return [Boolean]
|
4395
|
+
#
|
4343
4396
|
class UpdateElasticsearchDomainConfigRequest < Struct.new(
|
4344
4397
|
:domain_name,
|
4345
4398
|
:elasticsearch_cluster_config,
|
@@ -4354,7 +4407,8 @@ module Aws::ElasticsearchService
|
|
4354
4407
|
:advanced_security_options,
|
4355
4408
|
:node_to_node_encryption_options,
|
4356
4409
|
:encryption_at_rest_options,
|
4357
|
-
:auto_tune_options
|
4410
|
+
:auto_tune_options,
|
4411
|
+
:dry_run)
|
4358
4412
|
SENSITIVE = []
|
4359
4413
|
include Aws::Structure
|
4360
4414
|
end
|
@@ -4366,8 +4420,13 @@ module Aws::ElasticsearchService
|
|
4366
4420
|
# The status of the updated Elasticsearch domain.
|
4367
4421
|
# @return [Types::ElasticsearchDomainConfig]
|
4368
4422
|
#
|
4423
|
+
# @!attribute [rw] dry_run_results
|
4424
|
+
# Contains result of DryRun.
|
4425
|
+
# @return [Types::DryRunResults]
|
4426
|
+
#
|
4369
4427
|
class UpdateElasticsearchDomainConfigResponse < Struct.new(
|
4370
|
-
:domain_config
|
4428
|
+
:domain_config,
|
4429
|
+
:dry_run_results)
|
4371
4430
|
SENSITIVE = []
|
4372
4431
|
include Aws::Structure
|
4373
4432
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-elasticsearchservice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.62.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:
|
11
|
+
date: 2022-01-06 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.125.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.125.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|