aws-sdk-elasticsearchservice 1.81.0 → 1.82.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3aa9896af1747e8eaef45e99247b28163373d0bf2305609c1d19e2f86d035b79
4
- data.tar.gz: 793aa1789875f2813b044fc9740497ad289a6b1fd8fe0cf457a0d3c60dd3f093
3
+ metadata.gz: a1ced8069d07de401f972085486852c080fa2ec53ba202f4e3224ba98413b094
4
+ data.tar.gz: ddb7ee5327cd99a4a9fdfa65b766df43e3267b78f9d0f14382b0d1861e87b6ed
5
5
  SHA512:
6
- metadata.gz: bf7c81258641686b1fe1da01a5b9b4933357124a8cf1f98c1e309d5c992c52bdc26a46a6f7aece52e3653ba16df769ea534f1d39173a90fe79b357df777dea6e
7
- data.tar.gz: 726bea750cb59e3ea1ea49d4308a62e1354a2523f81c1c92bc7884c8d1c83866bee419d04cdafcf6298c84b895842e961000c958b9229fd29ec3b75bc7533a67
6
+ metadata.gz: 589b877bd023c2652cd43586621f1d05a1b88823efb1eabe4f27e2d768de4eb95dec73adbf4aa4a78a5164ac7fbd2a0c2930bf68587c08a4296f3746ecadef50
7
+ data.tar.gz: e58ea5e43514e28849eade0c468ffcb8596c7d28423a82970a896829f1a21cf843a511e81d45560721779f4281b4178ed9a22ad8847dd48e86165404cfc115df
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.82.0 (2024-02-06)
5
+ ------------------
6
+
7
+ * Feature - This release adds clear visibility to the customers on the changes that they make on the domain.
8
+
4
9
  1.81.0 (2024-01-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.81.0
1
+ 1.82.0
@@ -531,6 +531,46 @@ module Aws::ElasticsearchService
531
531
  req.send_request(options)
532
532
  end
533
533
 
534
+ # Cancels a pending configuration change on an Amazon OpenSearch Service
535
+ # domain.
536
+ #
537
+ # @option params [required, String] :domain_name
538
+ # Name of the OpenSearch Service domain configuration request to cancel.
539
+ #
540
+ # @option params [Boolean] :dry_run
541
+ # When set to **True**, returns the list of change IDs and properties
542
+ # that will be cancelled without actually cancelling the change.
543
+ #
544
+ # @return [Types::CancelDomainConfigChangeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
545
+ #
546
+ # * {Types::CancelDomainConfigChangeResponse#dry_run #dry_run} => Boolean
547
+ # * {Types::CancelDomainConfigChangeResponse#cancelled_change_ids #cancelled_change_ids} => Array<String>
548
+ # * {Types::CancelDomainConfigChangeResponse#cancelled_change_properties #cancelled_change_properties} => Array<Types::CancelledChangeProperty>
549
+ #
550
+ # @example Request syntax with placeholder values
551
+ #
552
+ # resp = client.cancel_domain_config_change({
553
+ # domain_name: "DomainName", # required
554
+ # dry_run: false,
555
+ # })
556
+ #
557
+ # @example Response structure
558
+ #
559
+ # resp.dry_run #=> Boolean
560
+ # resp.cancelled_change_ids #=> Array
561
+ # resp.cancelled_change_ids[0] #=> String
562
+ # resp.cancelled_change_properties #=> Array
563
+ # resp.cancelled_change_properties[0].property_name #=> String
564
+ # resp.cancelled_change_properties[0].cancelled_value #=> String
565
+ # resp.cancelled_change_properties[0].active_value #=> String
566
+ #
567
+ # @overload cancel_domain_config_change(params = {})
568
+ # @param [Hash] params ({})
569
+ def cancel_domain_config_change(params = {}, options = {})
570
+ req = build_request(:cancel_domain_config_change, params)
571
+ req.send_request(options)
572
+ end
573
+
534
574
  # Cancels a scheduled service software update for an Amazon ES domain.
535
575
  # You can only perform this operation before the `AutomatedUpdateDate`
536
576
  # and when the `UpdateStatus` is in the `PENDING_UPDATE` state.
@@ -848,6 +888,16 @@ module Aws::ElasticsearchService
848
888
  # resp.domain_status.auto_tune_options.error_message #=> String
849
889
  # resp.domain_status.change_progress_details.change_id #=> String
850
890
  # resp.domain_status.change_progress_details.message #=> String
891
+ # resp.domain_status.change_progress_details.config_change_status #=> String, one of "Pending", "Initializing", "Validating", "ValidationFailed", "ApplyingChanges", "Completed", "PendingUserInput", "Cancelled"
892
+ # resp.domain_status.change_progress_details.start_time #=> Time
893
+ # resp.domain_status.change_progress_details.last_updated_time #=> Time
894
+ # resp.domain_status.change_progress_details.initiated_by #=> String, one of "CUSTOMER", "SERVICE"
895
+ # resp.domain_status.domain_processing_status #=> String, one of "Creating", "Active", "Modifying", "UpgradingEngineVersion", "UpdatingServiceSoftware", "Isolated", "Deleting"
896
+ # resp.domain_status.modifying_properties #=> Array
897
+ # resp.domain_status.modifying_properties[0].name #=> String
898
+ # resp.domain_status.modifying_properties[0].active_value #=> String
899
+ # resp.domain_status.modifying_properties[0].pending_value #=> String
900
+ # resp.domain_status.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
851
901
  #
852
902
  # @overload create_elasticsearch_domain(params = {})
853
903
  # @param [Hash] params ({})
@@ -1107,6 +1157,16 @@ module Aws::ElasticsearchService
1107
1157
  # resp.domain_status.auto_tune_options.error_message #=> String
1108
1158
  # resp.domain_status.change_progress_details.change_id #=> String
1109
1159
  # resp.domain_status.change_progress_details.message #=> String
1160
+ # resp.domain_status.change_progress_details.config_change_status #=> String, one of "Pending", "Initializing", "Validating", "ValidationFailed", "ApplyingChanges", "Completed", "PendingUserInput", "Cancelled"
1161
+ # resp.domain_status.change_progress_details.start_time #=> Time
1162
+ # resp.domain_status.change_progress_details.last_updated_time #=> Time
1163
+ # resp.domain_status.change_progress_details.initiated_by #=> String, one of "CUSTOMER", "SERVICE"
1164
+ # resp.domain_status.domain_processing_status #=> String, one of "Creating", "Active", "Modifying", "UpgradingEngineVersion", "UpdatingServiceSoftware", "Isolated", "Deleting"
1165
+ # resp.domain_status.modifying_properties #=> Array
1166
+ # resp.domain_status.modifying_properties[0].name #=> String
1167
+ # resp.domain_status.modifying_properties[0].active_value #=> String
1168
+ # resp.domain_status.modifying_properties[0].pending_value #=> String
1169
+ # resp.domain_status.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
1110
1170
  #
1111
1171
  # @overload delete_elasticsearch_domain(params = {})
1112
1172
  # @param [Hash] params ({})
@@ -1355,6 +1415,9 @@ module Aws::ElasticsearchService
1355
1415
  # resp.change_progress_status.change_progress_stages[0].status #=> String
1356
1416
  # resp.change_progress_status.change_progress_stages[0].description #=> String
1357
1417
  # resp.change_progress_status.change_progress_stages[0].last_updated #=> Time
1418
+ # resp.change_progress_status.config_change_status #=> String, one of "Pending", "Initializing", "Validating", "ValidationFailed", "ApplyingChanges", "Completed", "PendingUserInput", "Cancelled"
1419
+ # resp.change_progress_status.last_updated_time #=> Time
1420
+ # resp.change_progress_status.initiated_by #=> String, one of "CUSTOMER", "SERVICE"
1358
1421
  #
1359
1422
  # @overload describe_domain_change_progress(params = {})
1360
1423
  # @param [Hash] params ({})
@@ -1457,6 +1520,16 @@ module Aws::ElasticsearchService
1457
1520
  # resp.domain_status.auto_tune_options.error_message #=> String
1458
1521
  # resp.domain_status.change_progress_details.change_id #=> String
1459
1522
  # resp.domain_status.change_progress_details.message #=> String
1523
+ # resp.domain_status.change_progress_details.config_change_status #=> String, one of "Pending", "Initializing", "Validating", "ValidationFailed", "ApplyingChanges", "Completed", "PendingUserInput", "Cancelled"
1524
+ # resp.domain_status.change_progress_details.start_time #=> Time
1525
+ # resp.domain_status.change_progress_details.last_updated_time #=> Time
1526
+ # resp.domain_status.change_progress_details.initiated_by #=> String, one of "CUSTOMER", "SERVICE"
1527
+ # resp.domain_status.domain_processing_status #=> String, one of "Creating", "Active", "Modifying", "UpgradingEngineVersion", "UpdatingServiceSoftware", "Isolated", "Deleting"
1528
+ # resp.domain_status.modifying_properties #=> Array
1529
+ # resp.domain_status.modifying_properties[0].name #=> String
1530
+ # resp.domain_status.modifying_properties[0].active_value #=> String
1531
+ # resp.domain_status.modifying_properties[0].pending_value #=> String
1532
+ # resp.domain_status.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
1460
1533
  #
1461
1534
  # @overload describe_elasticsearch_domain(params = {})
1462
1535
  # @param [Hash] params ({})
@@ -1617,6 +1690,15 @@ module Aws::ElasticsearchService
1617
1690
  # resp.domain_config.auto_tune_options.status.pending_deletion #=> Boolean
1618
1691
  # resp.domain_config.change_progress_details.change_id #=> String
1619
1692
  # resp.domain_config.change_progress_details.message #=> String
1693
+ # resp.domain_config.change_progress_details.config_change_status #=> String, one of "Pending", "Initializing", "Validating", "ValidationFailed", "ApplyingChanges", "Completed", "PendingUserInput", "Cancelled"
1694
+ # resp.domain_config.change_progress_details.start_time #=> Time
1695
+ # resp.domain_config.change_progress_details.last_updated_time #=> Time
1696
+ # resp.domain_config.change_progress_details.initiated_by #=> String, one of "CUSTOMER", "SERVICE"
1697
+ # resp.domain_config.modifying_properties #=> Array
1698
+ # resp.domain_config.modifying_properties[0].name #=> String
1699
+ # resp.domain_config.modifying_properties[0].active_value #=> String
1700
+ # resp.domain_config.modifying_properties[0].pending_value #=> String
1701
+ # resp.domain_config.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
1620
1702
  #
1621
1703
  # @overload describe_elasticsearch_domain_config(params = {})
1622
1704
  # @param [Hash] params ({})
@@ -1720,6 +1802,16 @@ module Aws::ElasticsearchService
1720
1802
  # resp.domain_status_list[0].auto_tune_options.error_message #=> String
1721
1803
  # resp.domain_status_list[0].change_progress_details.change_id #=> String
1722
1804
  # resp.domain_status_list[0].change_progress_details.message #=> String
1805
+ # resp.domain_status_list[0].change_progress_details.config_change_status #=> String, one of "Pending", "Initializing", "Validating", "ValidationFailed", "ApplyingChanges", "Completed", "PendingUserInput", "Cancelled"
1806
+ # resp.domain_status_list[0].change_progress_details.start_time #=> Time
1807
+ # resp.domain_status_list[0].change_progress_details.last_updated_time #=> Time
1808
+ # resp.domain_status_list[0].change_progress_details.initiated_by #=> String, one of "CUSTOMER", "SERVICE"
1809
+ # resp.domain_status_list[0].domain_processing_status #=> String, one of "Creating", "Active", "Modifying", "UpgradingEngineVersion", "UpdatingServiceSoftware", "Isolated", "Deleting"
1810
+ # resp.domain_status_list[0].modifying_properties #=> Array
1811
+ # resp.domain_status_list[0].modifying_properties[0].name #=> String
1812
+ # resp.domain_status_list[0].modifying_properties[0].active_value #=> String
1813
+ # resp.domain_status_list[0].modifying_properties[0].pending_value #=> String
1814
+ # resp.domain_status_list[0].modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
1723
1815
  #
1724
1816
  # @overload describe_elasticsearch_domains(params = {})
1725
1817
  # @param [Hash] params ({})
@@ -3151,6 +3243,15 @@ module Aws::ElasticsearchService
3151
3243
  # resp.domain_config.auto_tune_options.status.pending_deletion #=> Boolean
3152
3244
  # resp.domain_config.change_progress_details.change_id #=> String
3153
3245
  # resp.domain_config.change_progress_details.message #=> String
3246
+ # resp.domain_config.change_progress_details.config_change_status #=> String, one of "Pending", "Initializing", "Validating", "ValidationFailed", "ApplyingChanges", "Completed", "PendingUserInput", "Cancelled"
3247
+ # resp.domain_config.change_progress_details.start_time #=> Time
3248
+ # resp.domain_config.change_progress_details.last_updated_time #=> Time
3249
+ # resp.domain_config.change_progress_details.initiated_by #=> String, one of "CUSTOMER", "SERVICE"
3250
+ # resp.domain_config.modifying_properties #=> Array
3251
+ # resp.domain_config.modifying_properties[0].name #=> String
3252
+ # resp.domain_config.modifying_properties[0].active_value #=> String
3253
+ # resp.domain_config.modifying_properties[0].pending_value #=> String
3254
+ # resp.domain_config.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
3154
3255
  # resp.dry_run_results.deployment_type #=> String
3155
3256
  # resp.dry_run_results.message #=> String
3156
3257
  #
@@ -3296,6 +3397,10 @@ module Aws::ElasticsearchService
3296
3397
  # resp.perform_check_only #=> Boolean
3297
3398
  # resp.change_progress_details.change_id #=> String
3298
3399
  # resp.change_progress_details.message #=> String
3400
+ # resp.change_progress_details.config_change_status #=> String, one of "Pending", "Initializing", "Validating", "ValidationFailed", "ApplyingChanges", "Completed", "PendingUserInput", "Cancelled"
3401
+ # resp.change_progress_details.start_time #=> Time
3402
+ # resp.change_progress_details.last_updated_time #=> Time
3403
+ # resp.change_progress_details.initiated_by #=> String, one of "CUSTOMER", "SERVICE"
3299
3404
  #
3300
3405
  # @overload upgrade_elasticsearch_domain(params = {})
3301
3406
  # @param [Hash] params ({})
@@ -3317,7 +3422,7 @@ module Aws::ElasticsearchService
3317
3422
  params: params,
3318
3423
  config: config)
3319
3424
  context[:gem_name] = 'aws-sdk-elasticsearchservice'
3320
- context[:gem_version] = '1.81.0'
3425
+ context[:gem_version] = '1.82.0'
3321
3426
  Seahorse::Client::Request.new(handlers, context)
3322
3427
  end
3323
3428
 
@@ -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.82.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.82.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-02-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core