aws-sdk-elasticsearchservice 1.81.0 → 1.83.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3aa9896af1747e8eaef45e99247b28163373d0bf2305609c1d19e2f86d035b79
4
- data.tar.gz: 793aa1789875f2813b044fc9740497ad289a6b1fd8fe0cf457a0d3c60dd3f093
3
+ metadata.gz: 702827e0957d2a3e516b9e72aada64345a6d8393ae887651cd22938a9a476d27
4
+ data.tar.gz: 4432f4d3c12e96d633aa90caa827834d7e1eb11d372e0ae7ad887c970703f1de
5
5
  SHA512:
6
- metadata.gz: bf7c81258641686b1fe1da01a5b9b4933357124a8cf1f98c1e309d5c992c52bdc26a46a6f7aece52e3653ba16df769ea534f1d39173a90fe79b357df777dea6e
7
- data.tar.gz: 726bea750cb59e3ea1ea49d4308a62e1354a2523f81c1c92bc7884c8d1c83866bee419d04cdafcf6298c84b895842e961000c958b9229fd29ec3b75bc7533a67
6
+ metadata.gz: c639100e71d2b141b4994d5a56b4d53792ef8a9e628ec576279191713ea7d2492a438a8a4b353e630201344b1ee67c0dd4a37878940e84de03cc8479e8929120
7
+ data.tar.gz: 5b0f48b2a5a11a259dbb3e0fcd1dc9cb5e617f9f523c2fe6bbfee4d76673406ba15f92058bca20204c8a39a5709b4ffded2e06ff2258b1c2b9f98e772ada3c94
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.83.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.82.0 (2024-02-06)
10
+ ------------------
11
+
12
+ * Feature - This release adds clear visibility to the customers on the changes that they make on the domain.
13
+
4
14
  1.81.0 (2024-01-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.81.0
1
+ 1.83.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::ElasticsearchService
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::ElasticsearchService
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -337,50 +346,65 @@ module Aws::ElasticsearchService
337
346
  # @option options [Aws::ElasticsearchService::EndpointProvider] :endpoint_provider
338
347
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::ElasticsearchService::EndpointParameters`
339
348
  #
340
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
341
- # requests through. Formatted like 'http://proxy.com:123'.
342
- #
343
- # @option options [Float] :http_open_timeout (15) The number of
344
- # seconds to wait when opening a HTTP session before raising a
345
- # `Timeout::Error`.
346
- #
347
- # @option options [Float] :http_read_timeout (60) The default
348
- # number of seconds to wait for response data. This value can
349
- # safely be set per-request on the session.
350
- #
351
- # @option options [Float] :http_idle_timeout (5) The number of
352
- # seconds a connection is allowed to sit idle before it is
353
- # considered stale. Stale connections are closed and removed
354
- # from the pool before making a request.
355
- #
356
- # @option options [Float] :http_continue_timeout (1) The number of
357
- # seconds to wait for a 100-continue response before sending the
358
- # request body. This option has no effect unless the request has
359
- # "Expect" header set to "100-continue". Defaults to `nil` which
360
- # disables this behaviour. This value can safely be set per
361
- # request on the session.
362
- #
363
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
364
- # in seconds.
365
- #
366
- # @option options [Boolean] :http_wire_trace (false) When `true`,
367
- # HTTP debug output will be sent to the `:logger`.
349
+ # @option options [Float] :http_continue_timeout (1)
350
+ # The number of seconds to wait for a 100-continue response before sending the
351
+ # request body. This option has no effect unless the request has "Expect"
352
+ # header set to "100-continue". Defaults to `nil` which disables this
353
+ # behaviour. This value can safely be set per request on the session.
354
+ #
355
+ # @option options [Float] :http_idle_timeout (5)
356
+ # The number of seconds a connection is allowed to sit idle before it
357
+ # is considered stale. Stale connections are closed and removed from the
358
+ # pool before making a request.
359
+ #
360
+ # @option options [Float] :http_open_timeout (15)
361
+ # The default number of seconds to wait for response data.
362
+ # This value can safely be set per-request on the session.
363
+ #
364
+ # @option options [URI::HTTP,String] :http_proxy
365
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
366
+ #
367
+ # @option options [Float] :http_read_timeout (60)
368
+ # The default number of seconds to wait for response data.
369
+ # This value can safely be set per-request on the session.
370
+ #
371
+ # @option options [Boolean] :http_wire_trace (false)
372
+ # When `true`, HTTP debug output will be sent to the `:logger`.
373
+ #
374
+ # @option options [Proc] :on_chunk_received
375
+ # When a Proc object is provided, it will be used as callback when each chunk
376
+ # of the response body is received. It provides three arguments: the chunk,
377
+ # the number of bytes received, and the total number of
378
+ # bytes in the response (or nil if the server did not send a `content-length`).
379
+ #
380
+ # @option options [Proc] :on_chunk_sent
381
+ # When a Proc object is provided, it will be used as callback when each chunk
382
+ # of the request body is sent. It provides three arguments: the chunk,
383
+ # the number of bytes read from the body, and the total number of
384
+ # bytes in the body.
385
+ #
386
+ # @option options [Boolean] :raise_response_errors (true)
387
+ # When `true`, response errors are raised.
388
+ #
389
+ # @option options [String] :ssl_ca_bundle
390
+ # Full path to the SSL certificate authority bundle file that should be used when
391
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
392
+ # `:ssl_ca_directory` the the system default will be used if available.
393
+ #
394
+ # @option options [String] :ssl_ca_directory
395
+ # Full path of the directory that contains the unbundled SSL certificate
396
+ # authority files for verifying peer certificates. If you do
397
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
398
+ # default will be used if available.
368
399
  #
369
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
370
- # SSL peer certificates are verified when establishing a
371
- # connection.
400
+ # @option options [String] :ssl_ca_store
401
+ # Sets the X509::Store to verify peer certificate.
372
402
  #
373
- # @option options [String] :ssl_ca_bundle Full path to the SSL
374
- # certificate authority bundle file that should be used when
375
- # verifying peer certificates. If you do not pass
376
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
377
- # will be used if available.
403
+ # @option options [Float] :ssl_timeout
404
+ # Sets the SSL timeout in seconds
378
405
  #
379
- # @option options [String] :ssl_ca_directory Full path of the
380
- # directory that contains the unbundled SSL certificate
381
- # authority files for verifying peer certificates. If you do
382
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
383
- # system default will be used if available.
406
+ # @option options [Boolean] :ssl_verify_peer (true)
407
+ # When `true`, SSL peer certificates are verified when establishing a connection.
384
408
  #
385
409
  def initialize(*args)
386
410
  super
@@ -531,6 +555,46 @@ module Aws::ElasticsearchService
531
555
  req.send_request(options)
532
556
  end
533
557
 
558
+ # Cancels a pending configuration change on an Amazon OpenSearch Service
559
+ # domain.
560
+ #
561
+ # @option params [required, String] :domain_name
562
+ # Name of the OpenSearch Service domain configuration request to cancel.
563
+ #
564
+ # @option params [Boolean] :dry_run
565
+ # When set to **True**, returns the list of change IDs and properties
566
+ # that will be cancelled without actually cancelling the change.
567
+ #
568
+ # @return [Types::CancelDomainConfigChangeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
569
+ #
570
+ # * {Types::CancelDomainConfigChangeResponse#dry_run #dry_run} => Boolean
571
+ # * {Types::CancelDomainConfigChangeResponse#cancelled_change_ids #cancelled_change_ids} => Array<String>
572
+ # * {Types::CancelDomainConfigChangeResponse#cancelled_change_properties #cancelled_change_properties} => Array<Types::CancelledChangeProperty>
573
+ #
574
+ # @example Request syntax with placeholder values
575
+ #
576
+ # resp = client.cancel_domain_config_change({
577
+ # domain_name: "DomainName", # required
578
+ # dry_run: false,
579
+ # })
580
+ #
581
+ # @example Response structure
582
+ #
583
+ # resp.dry_run #=> Boolean
584
+ # resp.cancelled_change_ids #=> Array
585
+ # resp.cancelled_change_ids[0] #=> String
586
+ # resp.cancelled_change_properties #=> Array
587
+ # resp.cancelled_change_properties[0].property_name #=> String
588
+ # resp.cancelled_change_properties[0].cancelled_value #=> String
589
+ # resp.cancelled_change_properties[0].active_value #=> String
590
+ #
591
+ # @overload cancel_domain_config_change(params = {})
592
+ # @param [Hash] params ({})
593
+ def cancel_domain_config_change(params = {}, options = {})
594
+ req = build_request(:cancel_domain_config_change, params)
595
+ req.send_request(options)
596
+ end
597
+
534
598
  # Cancels a scheduled service software update for an Amazon ES domain.
535
599
  # You can only perform this operation before the `AutomatedUpdateDate`
536
600
  # and when the `UpdateStatus` is in the `PENDING_UPDATE` state.
@@ -848,6 +912,16 @@ module Aws::ElasticsearchService
848
912
  # resp.domain_status.auto_tune_options.error_message #=> String
849
913
  # resp.domain_status.change_progress_details.change_id #=> String
850
914
  # resp.domain_status.change_progress_details.message #=> String
915
+ # resp.domain_status.change_progress_details.config_change_status #=> String, one of "Pending", "Initializing", "Validating", "ValidationFailed", "ApplyingChanges", "Completed", "PendingUserInput", "Cancelled"
916
+ # resp.domain_status.change_progress_details.start_time #=> Time
917
+ # resp.domain_status.change_progress_details.last_updated_time #=> Time
918
+ # resp.domain_status.change_progress_details.initiated_by #=> String, one of "CUSTOMER", "SERVICE"
919
+ # resp.domain_status.domain_processing_status #=> String, one of "Creating", "Active", "Modifying", "UpgradingEngineVersion", "UpdatingServiceSoftware", "Isolated", "Deleting"
920
+ # resp.domain_status.modifying_properties #=> Array
921
+ # resp.domain_status.modifying_properties[0].name #=> String
922
+ # resp.domain_status.modifying_properties[0].active_value #=> String
923
+ # resp.domain_status.modifying_properties[0].pending_value #=> String
924
+ # resp.domain_status.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
851
925
  #
852
926
  # @overload create_elasticsearch_domain(params = {})
853
927
  # @param [Hash] params ({})
@@ -1107,6 +1181,16 @@ module Aws::ElasticsearchService
1107
1181
  # resp.domain_status.auto_tune_options.error_message #=> String
1108
1182
  # resp.domain_status.change_progress_details.change_id #=> String
1109
1183
  # resp.domain_status.change_progress_details.message #=> String
1184
+ # resp.domain_status.change_progress_details.config_change_status #=> String, one of "Pending", "Initializing", "Validating", "ValidationFailed", "ApplyingChanges", "Completed", "PendingUserInput", "Cancelled"
1185
+ # resp.domain_status.change_progress_details.start_time #=> Time
1186
+ # resp.domain_status.change_progress_details.last_updated_time #=> Time
1187
+ # resp.domain_status.change_progress_details.initiated_by #=> String, one of "CUSTOMER", "SERVICE"
1188
+ # resp.domain_status.domain_processing_status #=> String, one of "Creating", "Active", "Modifying", "UpgradingEngineVersion", "UpdatingServiceSoftware", "Isolated", "Deleting"
1189
+ # resp.domain_status.modifying_properties #=> Array
1190
+ # resp.domain_status.modifying_properties[0].name #=> String
1191
+ # resp.domain_status.modifying_properties[0].active_value #=> String
1192
+ # resp.domain_status.modifying_properties[0].pending_value #=> String
1193
+ # resp.domain_status.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
1110
1194
  #
1111
1195
  # @overload delete_elasticsearch_domain(params = {})
1112
1196
  # @param [Hash] params ({})
@@ -1355,6 +1439,9 @@ module Aws::ElasticsearchService
1355
1439
  # resp.change_progress_status.change_progress_stages[0].status #=> String
1356
1440
  # resp.change_progress_status.change_progress_stages[0].description #=> String
1357
1441
  # resp.change_progress_status.change_progress_stages[0].last_updated #=> Time
1442
+ # resp.change_progress_status.config_change_status #=> String, one of "Pending", "Initializing", "Validating", "ValidationFailed", "ApplyingChanges", "Completed", "PendingUserInput", "Cancelled"
1443
+ # resp.change_progress_status.last_updated_time #=> Time
1444
+ # resp.change_progress_status.initiated_by #=> String, one of "CUSTOMER", "SERVICE"
1358
1445
  #
1359
1446
  # @overload describe_domain_change_progress(params = {})
1360
1447
  # @param [Hash] params ({})
@@ -1457,6 +1544,16 @@ module Aws::ElasticsearchService
1457
1544
  # resp.domain_status.auto_tune_options.error_message #=> String
1458
1545
  # resp.domain_status.change_progress_details.change_id #=> String
1459
1546
  # resp.domain_status.change_progress_details.message #=> String
1547
+ # resp.domain_status.change_progress_details.config_change_status #=> String, one of "Pending", "Initializing", "Validating", "ValidationFailed", "ApplyingChanges", "Completed", "PendingUserInput", "Cancelled"
1548
+ # resp.domain_status.change_progress_details.start_time #=> Time
1549
+ # resp.domain_status.change_progress_details.last_updated_time #=> Time
1550
+ # resp.domain_status.change_progress_details.initiated_by #=> String, one of "CUSTOMER", "SERVICE"
1551
+ # resp.domain_status.domain_processing_status #=> String, one of "Creating", "Active", "Modifying", "UpgradingEngineVersion", "UpdatingServiceSoftware", "Isolated", "Deleting"
1552
+ # resp.domain_status.modifying_properties #=> Array
1553
+ # resp.domain_status.modifying_properties[0].name #=> String
1554
+ # resp.domain_status.modifying_properties[0].active_value #=> String
1555
+ # resp.domain_status.modifying_properties[0].pending_value #=> String
1556
+ # resp.domain_status.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
1460
1557
  #
1461
1558
  # @overload describe_elasticsearch_domain(params = {})
1462
1559
  # @param [Hash] params ({})
@@ -1617,6 +1714,15 @@ module Aws::ElasticsearchService
1617
1714
  # resp.domain_config.auto_tune_options.status.pending_deletion #=> Boolean
1618
1715
  # resp.domain_config.change_progress_details.change_id #=> String
1619
1716
  # resp.domain_config.change_progress_details.message #=> String
1717
+ # resp.domain_config.change_progress_details.config_change_status #=> String, one of "Pending", "Initializing", "Validating", "ValidationFailed", "ApplyingChanges", "Completed", "PendingUserInput", "Cancelled"
1718
+ # resp.domain_config.change_progress_details.start_time #=> Time
1719
+ # resp.domain_config.change_progress_details.last_updated_time #=> Time
1720
+ # resp.domain_config.change_progress_details.initiated_by #=> String, one of "CUSTOMER", "SERVICE"
1721
+ # resp.domain_config.modifying_properties #=> Array
1722
+ # resp.domain_config.modifying_properties[0].name #=> String
1723
+ # resp.domain_config.modifying_properties[0].active_value #=> String
1724
+ # resp.domain_config.modifying_properties[0].pending_value #=> String
1725
+ # resp.domain_config.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
1620
1726
  #
1621
1727
  # @overload describe_elasticsearch_domain_config(params = {})
1622
1728
  # @param [Hash] params ({})
@@ -1720,6 +1826,16 @@ module Aws::ElasticsearchService
1720
1826
  # resp.domain_status_list[0].auto_tune_options.error_message #=> String
1721
1827
  # resp.domain_status_list[0].change_progress_details.change_id #=> String
1722
1828
  # resp.domain_status_list[0].change_progress_details.message #=> String
1829
+ # resp.domain_status_list[0].change_progress_details.config_change_status #=> String, one of "Pending", "Initializing", "Validating", "ValidationFailed", "ApplyingChanges", "Completed", "PendingUserInput", "Cancelled"
1830
+ # resp.domain_status_list[0].change_progress_details.start_time #=> Time
1831
+ # resp.domain_status_list[0].change_progress_details.last_updated_time #=> Time
1832
+ # resp.domain_status_list[0].change_progress_details.initiated_by #=> String, one of "CUSTOMER", "SERVICE"
1833
+ # resp.domain_status_list[0].domain_processing_status #=> String, one of "Creating", "Active", "Modifying", "UpgradingEngineVersion", "UpdatingServiceSoftware", "Isolated", "Deleting"
1834
+ # resp.domain_status_list[0].modifying_properties #=> Array
1835
+ # resp.domain_status_list[0].modifying_properties[0].name #=> String
1836
+ # resp.domain_status_list[0].modifying_properties[0].active_value #=> String
1837
+ # resp.domain_status_list[0].modifying_properties[0].pending_value #=> String
1838
+ # resp.domain_status_list[0].modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
1723
1839
  #
1724
1840
  # @overload describe_elasticsearch_domains(params = {})
1725
1841
  # @param [Hash] params ({})
@@ -3151,6 +3267,15 @@ module Aws::ElasticsearchService
3151
3267
  # resp.domain_config.auto_tune_options.status.pending_deletion #=> Boolean
3152
3268
  # resp.domain_config.change_progress_details.change_id #=> String
3153
3269
  # resp.domain_config.change_progress_details.message #=> String
3270
+ # resp.domain_config.change_progress_details.config_change_status #=> String, one of "Pending", "Initializing", "Validating", "ValidationFailed", "ApplyingChanges", "Completed", "PendingUserInput", "Cancelled"
3271
+ # resp.domain_config.change_progress_details.start_time #=> Time
3272
+ # resp.domain_config.change_progress_details.last_updated_time #=> Time
3273
+ # resp.domain_config.change_progress_details.initiated_by #=> String, one of "CUSTOMER", "SERVICE"
3274
+ # resp.domain_config.modifying_properties #=> Array
3275
+ # resp.domain_config.modifying_properties[0].name #=> String
3276
+ # resp.domain_config.modifying_properties[0].active_value #=> String
3277
+ # resp.domain_config.modifying_properties[0].pending_value #=> String
3278
+ # resp.domain_config.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
3154
3279
  # resp.dry_run_results.deployment_type #=> String
3155
3280
  # resp.dry_run_results.message #=> String
3156
3281
  #
@@ -3296,6 +3421,10 @@ module Aws::ElasticsearchService
3296
3421
  # resp.perform_check_only #=> Boolean
3297
3422
  # resp.change_progress_details.change_id #=> String
3298
3423
  # resp.change_progress_details.message #=> String
3424
+ # resp.change_progress_details.config_change_status #=> String, one of "Pending", "Initializing", "Validating", "ValidationFailed", "ApplyingChanges", "Completed", "PendingUserInput", "Cancelled"
3425
+ # resp.change_progress_details.start_time #=> Time
3426
+ # resp.change_progress_details.last_updated_time #=> Time
3427
+ # resp.change_progress_details.initiated_by #=> String, one of "CUSTOMER", "SERVICE"
3299
3428
  #
3300
3429
  # @overload upgrade_elasticsearch_domain(params = {})
3301
3430
  # @param [Hash] params ({})
@@ -3317,7 +3446,7 @@ module Aws::ElasticsearchService
3317
3446
  params: params,
3318
3447
  config: config)
3319
3448
  context[:gem_name] = 'aws-sdk-elasticsearchservice'
3320
- context[:gem_version] = '1.81.0'
3449
+ context[:gem_version] = '1.83.0'
3321
3450
  Seahorse::Client::Request.new(handlers, context)
3322
3451
  end
3323
3452
 
@@ -50,8 +50,12 @@ module Aws::ElasticsearchService
50
50
  BackendRole = Shapes::StringShape.new(name: 'BackendRole')
51
51
  BaseException = Shapes::StructureShape.new(name: 'BaseException')
52
52
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
53
+ CancelDomainConfigChangeRequest = Shapes::StructureShape.new(name: 'CancelDomainConfigChangeRequest')
54
+ CancelDomainConfigChangeResponse = Shapes::StructureShape.new(name: 'CancelDomainConfigChangeResponse')
53
55
  CancelElasticsearchServiceSoftwareUpdateRequest = Shapes::StructureShape.new(name: 'CancelElasticsearchServiceSoftwareUpdateRequest')
54
56
  CancelElasticsearchServiceSoftwareUpdateResponse = Shapes::StructureShape.new(name: 'CancelElasticsearchServiceSoftwareUpdateResponse')
57
+ CancelledChangeProperty = Shapes::StructureShape.new(name: 'CancelledChangeProperty')
58
+ CancelledChangePropertyList = Shapes::ListShape.new(name: 'CancelledChangePropertyList')
55
59
  ChangeProgressDetails = Shapes::StructureShape.new(name: 'ChangeProgressDetails')
56
60
  ChangeProgressStage = Shapes::StructureShape.new(name: 'ChangeProgressStage')
57
61
  ChangeProgressStageList = Shapes::ListShape.new(name: 'ChangeProgressStageList')
@@ -66,6 +70,7 @@ module Aws::ElasticsearchService
66
70
  CommitMessage = Shapes::StringShape.new(name: 'CommitMessage')
67
71
  CompatibleElasticsearchVersionsList = Shapes::ListShape.new(name: 'CompatibleElasticsearchVersionsList')
68
72
  CompatibleVersionsMap = Shapes::StructureShape.new(name: 'CompatibleVersionsMap')
73
+ ConfigChangeStatus = Shapes::StringShape.new(name: 'ConfigChangeStatus')
69
74
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
70
75
  ConnectionAlias = Shapes::StringShape.new(name: 'ConnectionAlias')
71
76
  CreateElasticsearchDomainRequest = Shapes::StructureShape.new(name: 'CreateElasticsearchDomainRequest')
@@ -139,6 +144,7 @@ module Aws::ElasticsearchService
139
144
  DomainPackageDetails = Shapes::StructureShape.new(name: 'DomainPackageDetails')
140
145
  DomainPackageDetailsList = Shapes::ListShape.new(name: 'DomainPackageDetailsList')
141
146
  DomainPackageStatus = Shapes::StringShape.new(name: 'DomainPackageStatus')
147
+ DomainProcessingStatusType = Shapes::StringShape.new(name: 'DomainProcessingStatusType')
142
148
  Double = Shapes::FloatShape.new(name: 'Double')
143
149
  DryRun = Shapes::BooleanShape.new(name: 'DryRun')
144
150
  DryRunResults = Shapes::StructureShape.new(name: 'DryRunResults')
@@ -168,6 +174,7 @@ module Aws::ElasticsearchService
168
174
  Filter = Shapes::StructureShape.new(name: 'Filter')
169
175
  FilterList = Shapes::ListShape.new(name: 'FilterList')
170
176
  GUID = Shapes::StringShape.new(name: 'GUID')
177
+ GUIDList = Shapes::ListShape.new(name: 'GUIDList')
171
178
  GetCompatibleElasticsearchVersionsRequest = Shapes::StructureShape.new(name: 'GetCompatibleElasticsearchVersionsRequest')
172
179
  GetCompatibleElasticsearchVersionsResponse = Shapes::StructureShape.new(name: 'GetCompatibleElasticsearchVersionsResponse')
173
180
  GetPackageVersionHistoryRequest = Shapes::StructureShape.new(name: 'GetPackageVersionHistoryRequest')
@@ -181,6 +188,7 @@ module Aws::ElasticsearchService
181
188
  InboundCrossClusterSearchConnectionStatus = Shapes::StructureShape.new(name: 'InboundCrossClusterSearchConnectionStatus')
182
189
  InboundCrossClusterSearchConnectionStatusCode = Shapes::StringShape.new(name: 'InboundCrossClusterSearchConnectionStatusCode')
183
190
  InboundCrossClusterSearchConnections = Shapes::ListShape.new(name: 'InboundCrossClusterSearchConnections')
191
+ InitiatedBy = Shapes::StringShape.new(name: 'InitiatedBy')
184
192
  InstanceCount = Shapes::IntegerShape.new(name: 'InstanceCount')
185
193
  InstanceCountLimits = Shapes::StructureShape.new(name: 'InstanceCountLimits')
186
194
  InstanceLimits = Shapes::StructureShape.new(name: 'InstanceLimits')
@@ -227,6 +235,8 @@ module Aws::ElasticsearchService
227
235
  MaximumInstanceCount = Shapes::IntegerShape.new(name: 'MaximumInstanceCount')
228
236
  Message = Shapes::StringShape.new(name: 'Message')
229
237
  MinimumInstanceCount = Shapes::IntegerShape.new(name: 'MinimumInstanceCount')
238
+ ModifyingProperties = Shapes::StructureShape.new(name: 'ModifyingProperties')
239
+ ModifyingPropertiesList = Shapes::ListShape.new(name: 'ModifyingPropertiesList')
230
240
  NextToken = Shapes::StringShape.new(name: 'NextToken')
231
241
  NodeToNodeEncryptionOptions = Shapes::StructureShape.new(name: 'NodeToNodeEncryptionOptions')
232
242
  NodeToNodeEncryptionOptionsStatus = Shapes::StructureShape.new(name: 'NodeToNodeEncryptionOptionsStatus')
@@ -253,6 +263,7 @@ module Aws::ElasticsearchService
253
263
  Password = Shapes::StringShape.new(name: 'Password')
254
264
  PolicyDocument = Shapes::StringShape.new(name: 'PolicyDocument')
255
265
  PrincipalType = Shapes::StringShape.new(name: 'PrincipalType')
266
+ PropertyValueType = Shapes::StringShape.new(name: 'PropertyValueType')
256
267
  PurchaseReservedElasticsearchInstanceOfferingRequest = Shapes::StructureShape.new(name: 'PurchaseReservedElasticsearchInstanceOfferingRequest')
257
268
  PurchaseReservedElasticsearchInstanceOfferingResponse = Shapes::StructureShape.new(name: 'PurchaseReservedElasticsearchInstanceOfferingResponse')
258
269
  RecurringCharge = Shapes::StructureShape.new(name: 'RecurringCharge')
@@ -456,14 +467,34 @@ module Aws::ElasticsearchService
456
467
  BaseException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
457
468
  BaseException.struct_class = Types::BaseException
458
469
 
470
+ CancelDomainConfigChangeRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location: "uri", location_name: "DomainName"))
471
+ CancelDomainConfigChangeRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: DryRun, location_name: "DryRun"))
472
+ CancelDomainConfigChangeRequest.struct_class = Types::CancelDomainConfigChangeRequest
473
+
474
+ CancelDomainConfigChangeResponse.add_member(:dry_run, Shapes::ShapeRef.new(shape: DryRun, location_name: "DryRun"))
475
+ CancelDomainConfigChangeResponse.add_member(:cancelled_change_ids, Shapes::ShapeRef.new(shape: GUIDList, location_name: "CancelledChangeIds"))
476
+ CancelDomainConfigChangeResponse.add_member(:cancelled_change_properties, Shapes::ShapeRef.new(shape: CancelledChangePropertyList, location_name: "CancelledChangeProperties"))
477
+ CancelDomainConfigChangeResponse.struct_class = Types::CancelDomainConfigChangeResponse
478
+
459
479
  CancelElasticsearchServiceSoftwareUpdateRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location_name: "DomainName"))
460
480
  CancelElasticsearchServiceSoftwareUpdateRequest.struct_class = Types::CancelElasticsearchServiceSoftwareUpdateRequest
461
481
 
462
482
  CancelElasticsearchServiceSoftwareUpdateResponse.add_member(:service_software_options, Shapes::ShapeRef.new(shape: ServiceSoftwareOptions, location_name: "ServiceSoftwareOptions"))
463
483
  CancelElasticsearchServiceSoftwareUpdateResponse.struct_class = Types::CancelElasticsearchServiceSoftwareUpdateResponse
464
484
 
485
+ CancelledChangeProperty.add_member(:property_name, Shapes::ShapeRef.new(shape: String, location_name: "PropertyName"))
486
+ CancelledChangeProperty.add_member(:cancelled_value, Shapes::ShapeRef.new(shape: String, location_name: "CancelledValue"))
487
+ CancelledChangeProperty.add_member(:active_value, Shapes::ShapeRef.new(shape: String, location_name: "ActiveValue"))
488
+ CancelledChangeProperty.struct_class = Types::CancelledChangeProperty
489
+
490
+ CancelledChangePropertyList.member = Shapes::ShapeRef.new(shape: CancelledChangeProperty)
491
+
465
492
  ChangeProgressDetails.add_member(:change_id, Shapes::ShapeRef.new(shape: GUID, location_name: "ChangeId"))
466
493
  ChangeProgressDetails.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
494
+ ChangeProgressDetails.add_member(:config_change_status, Shapes::ShapeRef.new(shape: ConfigChangeStatus, location_name: "ConfigChangeStatus"))
495
+ ChangeProgressDetails.add_member(:start_time, Shapes::ShapeRef.new(shape: UpdateTimestamp, location_name: "StartTime"))
496
+ ChangeProgressDetails.add_member(:last_updated_time, Shapes::ShapeRef.new(shape: UpdateTimestamp, location_name: "LastUpdatedTime"))
497
+ ChangeProgressDetails.add_member(:initiated_by, Shapes::ShapeRef.new(shape: InitiatedBy, location_name: "InitiatedBy"))
467
498
  ChangeProgressDetails.struct_class = Types::ChangeProgressDetails
468
499
 
469
500
  ChangeProgressStage.add_member(:name, Shapes::ShapeRef.new(shape: ChangeProgressStageName, location_name: "Name"))
@@ -481,6 +512,9 @@ module Aws::ElasticsearchService
481
512
  ChangeProgressStatusDetails.add_member(:completed_properties, Shapes::ShapeRef.new(shape: StringList, location_name: "CompletedProperties"))
482
513
  ChangeProgressStatusDetails.add_member(:total_number_of_stages, Shapes::ShapeRef.new(shape: TotalNumberOfStages, location_name: "TotalNumberOfStages"))
483
514
  ChangeProgressStatusDetails.add_member(:change_progress_stages, Shapes::ShapeRef.new(shape: ChangeProgressStageList, location_name: "ChangeProgressStages"))
515
+ ChangeProgressStatusDetails.add_member(:config_change_status, Shapes::ShapeRef.new(shape: ConfigChangeStatus, location_name: "ConfigChangeStatus"))
516
+ ChangeProgressStatusDetails.add_member(:last_updated_time, Shapes::ShapeRef.new(shape: UpdateTimestamp, location_name: "LastUpdatedTime"))
517
+ ChangeProgressStatusDetails.add_member(:initiated_by, Shapes::ShapeRef.new(shape: InitiatedBy, location_name: "InitiatedBy"))
484
518
  ChangeProgressStatusDetails.struct_class = Types::ChangeProgressStatusDetails
485
519
 
486
520
  CognitoOptions.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Enabled"))
@@ -783,6 +817,7 @@ module Aws::ElasticsearchService
783
817
  ElasticsearchDomainConfig.add_member(:advanced_security_options, Shapes::ShapeRef.new(shape: AdvancedSecurityOptionsStatus, location_name: "AdvancedSecurityOptions"))
784
818
  ElasticsearchDomainConfig.add_member(:auto_tune_options, Shapes::ShapeRef.new(shape: AutoTuneOptionsStatus, location_name: "AutoTuneOptions"))
785
819
  ElasticsearchDomainConfig.add_member(:change_progress_details, Shapes::ShapeRef.new(shape: ChangeProgressDetails, location_name: "ChangeProgressDetails"))
820
+ ElasticsearchDomainConfig.add_member(:modifying_properties, Shapes::ShapeRef.new(shape: ModifyingPropertiesList, location_name: "ModifyingProperties"))
786
821
  ElasticsearchDomainConfig.struct_class = Types::ElasticsearchDomainConfig
787
822
 
788
823
  ElasticsearchDomainStatus.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, required: true, location_name: "DomainId"))
@@ -810,6 +845,8 @@ module Aws::ElasticsearchService
810
845
  ElasticsearchDomainStatus.add_member(:advanced_security_options, Shapes::ShapeRef.new(shape: AdvancedSecurityOptions, location_name: "AdvancedSecurityOptions"))
811
846
  ElasticsearchDomainStatus.add_member(:auto_tune_options, Shapes::ShapeRef.new(shape: AutoTuneOptionsOutput, location_name: "AutoTuneOptions"))
812
847
  ElasticsearchDomainStatus.add_member(:change_progress_details, Shapes::ShapeRef.new(shape: ChangeProgressDetails, location_name: "ChangeProgressDetails"))
848
+ ElasticsearchDomainStatus.add_member(:domain_processing_status, Shapes::ShapeRef.new(shape: DomainProcessingStatusType, location_name: "DomainProcessingStatus"))
849
+ ElasticsearchDomainStatus.add_member(:modifying_properties, Shapes::ShapeRef.new(shape: ModifyingPropertiesList, location_name: "ModifyingProperties"))
813
850
  ElasticsearchDomainStatus.struct_class = Types::ElasticsearchDomainStatus
814
851
 
815
852
  ElasticsearchDomainStatusList.member = Shapes::ShapeRef.new(shape: ElasticsearchDomainStatus)
@@ -843,6 +880,8 @@ module Aws::ElasticsearchService
843
880
 
844
881
  FilterList.member = Shapes::ShapeRef.new(shape: Filter)
845
882
 
883
+ GUIDList.member = Shapes::ShapeRef.new(shape: GUID)
884
+
846
885
  GetCompatibleElasticsearchVersionsRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, location: "querystring", location_name: "domainName"))
847
886
  GetCompatibleElasticsearchVersionsRequest.struct_class = Types::GetCompatibleElasticsearchVersionsRequest
848
887
 
@@ -1002,6 +1041,14 @@ module Aws::ElasticsearchService
1002
1041
  MasterUserOptions.add_member(:master_user_password, Shapes::ShapeRef.new(shape: Password, location_name: "MasterUserPassword"))
1003
1042
  MasterUserOptions.struct_class = Types::MasterUserOptions
1004
1043
 
1044
+ ModifyingProperties.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "Name"))
1045
+ ModifyingProperties.add_member(:active_value, Shapes::ShapeRef.new(shape: String, location_name: "ActiveValue"))
1046
+ ModifyingProperties.add_member(:pending_value, Shapes::ShapeRef.new(shape: String, location_name: "PendingValue"))
1047
+ ModifyingProperties.add_member(:value_type, Shapes::ShapeRef.new(shape: PropertyValueType, location_name: "ValueType"))
1048
+ ModifyingProperties.struct_class = Types::ModifyingProperties
1049
+
1050
+ ModifyingPropertiesList.member = Shapes::ShapeRef.new(shape: ModifyingProperties)
1051
+
1005
1052
  NodeToNodeEncryptionOptions.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Enabled"))
1006
1053
  NodeToNodeEncryptionOptions.struct_class = Types::NodeToNodeEncryptionOptions
1007
1054
 
@@ -1366,6 +1413,19 @@ module Aws::ElasticsearchService
1366
1413
  o.errors << Shapes::ShapeRef.new(shape: BaseException)
1367
1414
  end)
1368
1415
 
1416
+ api.add_operation(:cancel_domain_config_change, Seahorse::Model::Operation.new.tap do |o|
1417
+ o.name = "CancelDomainConfigChange"
1418
+ o.http_method = "POST"
1419
+ o.http_request_uri = "/2015-01-01/es/domain/{DomainName}/config/cancel"
1420
+ o.input = Shapes::ShapeRef.new(shape: CancelDomainConfigChangeRequest)
1421
+ o.output = Shapes::ShapeRef.new(shape: CancelDomainConfigChangeResponse)
1422
+ o.errors << Shapes::ShapeRef.new(shape: BaseException)
1423
+ o.errors << Shapes::ShapeRef.new(shape: InternalException)
1424
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1425
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1426
+ o.errors << Shapes::ShapeRef.new(shape: DisabledOperationException)
1427
+ end)
1428
+
1369
1429
  api.add_operation(:cancel_elasticsearch_service_software_update, Seahorse::Model::Operation.new.tap do |o|
1370
1430
  o.name = "CancelElasticsearchServiceSoftwareUpdate"
1371
1431
  o.http_method = "POST"
@@ -68,6 +68,20 @@ module Aws::ElasticsearchService
68
68
  end
69
69
  end
70
70
 
71
+ class CancelDomainConfigChange
72
+ def self.build(context)
73
+ unless context.config.regional_endpoint
74
+ endpoint = context.config.endpoint.to_s
75
+ end
76
+ Aws::ElasticsearchService::EndpointParameters.new(
77
+ region: context.config.region,
78
+ use_dual_stack: context.config.use_dualstack_endpoint,
79
+ use_fips: context.config.use_fips_endpoint,
80
+ endpoint: endpoint,
81
+ )
82
+ end
83
+ end
84
+
71
85
  class CancelElasticsearchServiceSoftwareUpdate
72
86
  def self.build(context)
73
87
  unless context.config.regional_endpoint
@@ -66,6 +66,8 @@ module Aws::ElasticsearchService
66
66
  Aws::ElasticsearchService::Endpoints::AssociatePackage.build(context)
67
67
  when :authorize_vpc_endpoint_access
68
68
  Aws::ElasticsearchService::Endpoints::AuthorizeVpcEndpointAccess.build(context)
69
+ when :cancel_domain_config_change
70
+ Aws::ElasticsearchService::Endpoints::CancelDomainConfigChange.build(context)
69
71
  when :cancel_elasticsearch_service_software_update
70
72
  Aws::ElasticsearchService::Endpoints::CancelElasticsearchServiceSoftwareUpdate.build(context)
71
73
  when :create_elasticsearch_domain
@@ -541,6 +541,48 @@ module Aws::ElasticsearchService
541
541
  include Aws::Structure
542
542
  end
543
543
 
544
+ # Container for parameters of the `CancelDomainConfigChange` operation.
545
+ #
546
+ # @!attribute [rw] domain_name
547
+ # Name of the OpenSearch Service domain configuration request to
548
+ # cancel.
549
+ # @return [String]
550
+ #
551
+ # @!attribute [rw] dry_run
552
+ # When set to **True**, returns the list of change IDs and properties
553
+ # that will be cancelled without actually cancelling the change.
554
+ # @return [Boolean]
555
+ #
556
+ class CancelDomainConfigChangeRequest < Struct.new(
557
+ :domain_name,
558
+ :dry_run)
559
+ SENSITIVE = []
560
+ include Aws::Structure
561
+ end
562
+
563
+ # Contains the details of the cancelled domain config change.
564
+ #
565
+ # @!attribute [rw] dry_run
566
+ # Whether or not the request was a dry run. If **True**, the changes
567
+ # were not actually cancelled.
568
+ # @return [Boolean]
569
+ #
570
+ # @!attribute [rw] cancelled_change_ids
571
+ # The unique identifiers of the changes that were cancelled.
572
+ # @return [Array<String>]
573
+ #
574
+ # @!attribute [rw] cancelled_change_properties
575
+ # The domain change properties that were cancelled.
576
+ # @return [Array<Types::CancelledChangeProperty>]
577
+ #
578
+ class CancelDomainConfigChangeResponse < Struct.new(
579
+ :dry_run,
580
+ :cancelled_change_ids,
581
+ :cancelled_change_properties)
582
+ SENSITIVE = []
583
+ include Aws::Structure
584
+ end
585
+
544
586
  # Container for the parameters to the
545
587
  # `CancelElasticsearchServiceSoftwareUpdate` operation. Specifies the
546
588
  # name of the Elasticsearch domain that you wish to cancel a service
@@ -570,6 +612,31 @@ module Aws::ElasticsearchService
570
612
  include Aws::Structure
571
613
  end
572
614
 
615
+ # A property change that was cancelled for an Amazon OpenSearch Service
616
+ # domain.
617
+ #
618
+ # @!attribute [rw] property_name
619
+ # The name of the property whose change was cancelled.
620
+ # @return [String]
621
+ #
622
+ # @!attribute [rw] cancelled_value
623
+ # The pending value of the property that was cancelled. This would
624
+ # have been the eventual value of the property if the chance had not
625
+ # been cancelled.
626
+ # @return [String]
627
+ #
628
+ # @!attribute [rw] active_value
629
+ # The current value of the property, after the change was cancelled.
630
+ # @return [String]
631
+ #
632
+ class CancelledChangeProperty < Struct.new(
633
+ :property_name,
634
+ :cancelled_value,
635
+ :active_value)
636
+ SENSITIVE = []
637
+ include Aws::Structure
638
+ end
639
+
573
640
  # Specifies change details of the domain configuration change.
574
641
  #
575
642
  # @!attribute [rw] change_id
@@ -582,9 +649,30 @@ module Aws::ElasticsearchService
582
649
  # configuration change.
583
650
  # @return [String]
584
651
  #
652
+ # @!attribute [rw] config_change_status
653
+ # The current status of the configuration change.
654
+ # @return [String]
655
+ #
656
+ # @!attribute [rw] start_time
657
+ # The time that the configuration change was initiated, in Universal
658
+ # Coordinated Time (UTC).
659
+ # @return [Time]
660
+ #
661
+ # @!attribute [rw] last_updated_time
662
+ # The last time that the configuration change was updated.
663
+ # @return [Time]
664
+ #
665
+ # @!attribute [rw] initiated_by
666
+ # The IAM principal who initiated the configuration change.
667
+ # @return [String]
668
+ #
585
669
  class ChangeProgressDetails < Struct.new(
586
670
  :change_id,
587
- :message)
671
+ :message,
672
+ :config_change_status,
673
+ :start_time,
674
+ :last_updated_time,
675
+ :initiated_by)
588
676
  SENSITIVE = []
589
677
  include Aws::Structure
590
678
  end
@@ -652,6 +740,19 @@ module Aws::ElasticsearchService
652
740
  # configuration change.
653
741
  # @return [Array<Types::ChangeProgressStage>]
654
742
  #
743
+ # @!attribute [rw] config_change_status
744
+ # The current status of the configuration change.
745
+ # @return [String]
746
+ #
747
+ # @!attribute [rw] last_updated_time
748
+ # The last time that the status of the configuration change was
749
+ # updated.
750
+ # @return [Time]
751
+ #
752
+ # @!attribute [rw] initiated_by
753
+ # The IAM principal who initiated the configuration change.
754
+ # @return [String]
755
+ #
655
756
  class ChangeProgressStatusDetails < Struct.new(
656
757
  :change_id,
657
758
  :start_time,
@@ -659,7 +760,10 @@ module Aws::ElasticsearchService
659
760
  :pending_properties,
660
761
  :completed_properties,
661
762
  :total_number_of_stages,
662
- :change_progress_stages)
763
+ :change_progress_stages,
764
+ :config_change_status,
765
+ :last_updated_time,
766
+ :initiated_by)
663
767
  SENSITIVE = []
664
768
  include Aws::Structure
665
769
  end
@@ -2136,6 +2240,11 @@ module Aws::ElasticsearchService
2136
2240
  # Specifies change details of the domain configuration change.
2137
2241
  # @return [Types::ChangeProgressDetails]
2138
2242
  #
2243
+ # @!attribute [rw] modifying_properties
2244
+ # Information about the domain properties that are currently being
2245
+ # modified.
2246
+ # @return [Array<Types::ModifyingProperties>]
2247
+ #
2139
2248
  class ElasticsearchDomainConfig < Struct.new(
2140
2249
  :elasticsearch_version,
2141
2250
  :elasticsearch_cluster_config,
@@ -2151,7 +2260,8 @@ module Aws::ElasticsearchService
2151
2260
  :domain_endpoint_options,
2152
2261
  :advanced_security_options,
2153
2262
  :auto_tune_options,
2154
- :change_progress_details)
2263
+ :change_progress_details,
2264
+ :modifying_properties)
2155
2265
  SENSITIVE = []
2156
2266
  include Aws::Structure
2157
2267
  end
@@ -2294,6 +2404,16 @@ module Aws::ElasticsearchService
2294
2404
  # Specifies change details of the domain configuration change.
2295
2405
  # @return [Types::ChangeProgressDetails]
2296
2406
  #
2407
+ # @!attribute [rw] domain_processing_status
2408
+ # The status of any changes that are currently in progress for the
2409
+ # domain.
2410
+ # @return [String]
2411
+ #
2412
+ # @!attribute [rw] modifying_properties
2413
+ # Information about the domain properties that are currently being
2414
+ # modified.
2415
+ # @return [Array<Types::ModifyingProperties>]
2416
+ #
2297
2417
  class ElasticsearchDomainStatus < Struct.new(
2298
2418
  :domain_id,
2299
2419
  :domain_name,
@@ -2319,7 +2439,9 @@ module Aws::ElasticsearchService
2319
2439
  :domain_endpoint_options,
2320
2440
  :advanced_security_options,
2321
2441
  :auto_tune_options,
2322
- :change_progress_details)
2442
+ :change_progress_details,
2443
+ :domain_processing_status,
2444
+ :modifying_properties)
2323
2445
  SENSITIVE = []
2324
2446
  include Aws::Structure
2325
2447
  end
@@ -3141,6 +3263,41 @@ module Aws::ElasticsearchService
3141
3263
  include Aws::Structure
3142
3264
  end
3143
3265
 
3266
+ # Information about the domain properties that are currently being
3267
+ # modified.
3268
+ #
3269
+ # @!attribute [rw] name
3270
+ # The name of the property that is currently being modified.
3271
+ # @return [String]
3272
+ #
3273
+ # @!attribute [rw] active_value
3274
+ # The current value of the domain property that is being modified.
3275
+ # @return [String]
3276
+ #
3277
+ # @!attribute [rw] pending_value
3278
+ # The value that the property that is currently being modified will
3279
+ # eventually have.
3280
+ # @return [String]
3281
+ #
3282
+ # @!attribute [rw] value_type
3283
+ # The type of value that is currently being modified. Properties can
3284
+ # have two types:
3285
+ #
3286
+ # * **PLAIN\_TEXT**: Contain direct values such as "1", "True", or
3287
+ # "c5.large.search".
3288
+ # * **STRINGIFIED\_JSON**: Contain content in JSON format, such as
3289
+ # \\\{"Enabled":"True"\\}".
3290
+ # @return [String]
3291
+ #
3292
+ class ModifyingProperties < Struct.new(
3293
+ :name,
3294
+ :active_value,
3295
+ :pending_value,
3296
+ :value_type)
3297
+ SENSITIVE = []
3298
+ include Aws::Structure
3299
+ end
3300
+
3144
3301
  # Specifies the node-to-node encryption options.
3145
3302
  #
3146
3303
  # @!attribute [rw] enabled
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-elasticsearchservice/customizations'
52
52
  # @!group service
53
53
  module Aws::ElasticsearchService
54
54
 
55
- GEM_VERSION = '1.81.0'
55
+ GEM_VERSION = '1.83.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -116,6 +116,19 @@ module Aws
116
116
  ) -> _AuthorizeVpcEndpointAccessResponseSuccess
117
117
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AuthorizeVpcEndpointAccessResponseSuccess
118
118
 
119
+ interface _CancelDomainConfigChangeResponseSuccess
120
+ include ::Seahorse::Client::_ResponseSuccess[Types::CancelDomainConfigChangeResponse]
121
+ def dry_run: () -> bool
122
+ def cancelled_change_ids: () -> ::Array[::String]
123
+ def cancelled_change_properties: () -> ::Array[Types::CancelledChangeProperty]
124
+ end
125
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticsearchService/Client.html#cancel_domain_config_change-instance_method
126
+ def cancel_domain_config_change: (
127
+ domain_name: ::String,
128
+ ?dry_run: bool
129
+ ) -> _CancelDomainConfigChangeResponseSuccess
130
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelDomainConfigChangeResponseSuccess
131
+
119
132
  interface _CancelElasticsearchServiceSoftwareUpdateResponseSuccess
120
133
  include ::Seahorse::Client::_ResponseSuccess[Types::CancelElasticsearchServiceSoftwareUpdateResponse]
121
134
  def service_software_options: () -> Types::ServiceSoftwareOptions
data/sig/types.rbs CHANGED
@@ -155,6 +155,19 @@ module Aws::ElasticsearchService
155
155
  SENSITIVE: []
156
156
  end
157
157
 
158
+ class CancelDomainConfigChangeRequest
159
+ attr_accessor domain_name: ::String
160
+ attr_accessor dry_run: bool
161
+ SENSITIVE: []
162
+ end
163
+
164
+ class CancelDomainConfigChangeResponse
165
+ attr_accessor dry_run: bool
166
+ attr_accessor cancelled_change_ids: ::Array[::String]
167
+ attr_accessor cancelled_change_properties: ::Array[Types::CancelledChangeProperty]
168
+ SENSITIVE: []
169
+ end
170
+
158
171
  class CancelElasticsearchServiceSoftwareUpdateRequest
159
172
  attr_accessor domain_name: ::String
160
173
  SENSITIVE: []
@@ -165,9 +178,20 @@ module Aws::ElasticsearchService
165
178
  SENSITIVE: []
166
179
  end
167
180
 
181
+ class CancelledChangeProperty
182
+ attr_accessor property_name: ::String
183
+ attr_accessor cancelled_value: ::String
184
+ attr_accessor active_value: ::String
185
+ SENSITIVE: []
186
+ end
187
+
168
188
  class ChangeProgressDetails
169
189
  attr_accessor change_id: ::String
170
190
  attr_accessor message: ::String
191
+ attr_accessor config_change_status: ("Pending" | "Initializing" | "Validating" | "ValidationFailed" | "ApplyingChanges" | "Completed" | "PendingUserInput" | "Cancelled")
192
+ attr_accessor start_time: ::Time
193
+ attr_accessor last_updated_time: ::Time
194
+ attr_accessor initiated_by: ("CUSTOMER" | "SERVICE")
171
195
  SENSITIVE: []
172
196
  end
173
197
 
@@ -187,6 +211,9 @@ module Aws::ElasticsearchService
187
211
  attr_accessor completed_properties: ::Array[::String]
188
212
  attr_accessor total_number_of_stages: ::Integer
189
213
  attr_accessor change_progress_stages: ::Array[Types::ChangeProgressStage]
214
+ attr_accessor config_change_status: ("Pending" | "Initializing" | "Validating" | "ValidationFailed" | "ApplyingChanges" | "Completed" | "PendingUserInput" | "Cancelled")
215
+ attr_accessor last_updated_time: ::Time
216
+ attr_accessor initiated_by: ("CUSTOMER" | "SERVICE")
190
217
  SENSITIVE: []
191
218
  end
192
219
 
@@ -601,6 +628,7 @@ module Aws::ElasticsearchService
601
628
  attr_accessor advanced_security_options: Types::AdvancedSecurityOptionsStatus
602
629
  attr_accessor auto_tune_options: Types::AutoTuneOptionsStatus
603
630
  attr_accessor change_progress_details: Types::ChangeProgressDetails
631
+ attr_accessor modifying_properties: ::Array[Types::ModifyingProperties]
604
632
  SENSITIVE: []
605
633
  end
606
634
 
@@ -630,6 +658,8 @@ module Aws::ElasticsearchService
630
658
  attr_accessor advanced_security_options: Types::AdvancedSecurityOptions
631
659
  attr_accessor auto_tune_options: Types::AutoTuneOptionsOutput
632
660
  attr_accessor change_progress_details: Types::ChangeProgressDetails
661
+ attr_accessor domain_processing_status: ("Creating" | "Active" | "Modifying" | "UpgradingEngineVersion" | "UpdatingServiceSoftware" | "Isolated" | "Deleting")
662
+ attr_accessor modifying_properties: ::Array[Types::ModifyingProperties]
633
663
  SENSITIVE: []
634
664
  end
635
665
 
@@ -882,6 +912,14 @@ module Aws::ElasticsearchService
882
912
  SENSITIVE: [:master_user_name, :master_user_password]
883
913
  end
884
914
 
915
+ class ModifyingProperties
916
+ attr_accessor name: ::String
917
+ attr_accessor active_value: ::String
918
+ attr_accessor pending_value: ::String
919
+ attr_accessor value_type: ("PLAIN_TEXT" | "STRINGIFIED_JSON")
920
+ SENSITIVE: []
921
+ end
922
+
885
923
  class NodeToNodeEncryptionOptions
886
924
  attr_accessor enabled: bool
887
925
  SENSITIVE: []
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.81.0
4
+ version: 1.83.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-01-26 00:00:00.000000000 Z
11
+ date: 2024-04-25 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.191.0
22
+ version: 3.193.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.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement