aws-sdk-elasticsearchservice 1.62.0 → 1.63.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: 319d6f8d92c78a7edbbbaaa9c80f358233db91ee1bb619d5ff273634b163b301
4
- data.tar.gz: 5305385d93328dd748aea66adba7ba472f1fd3dcc382fcd9a481ead60fd15c0f
3
+ metadata.gz: b180c85565257e19aeb99085182f8ca7ec7a1f4781504517e01eacc8fb2567f0
4
+ data.tar.gz: cd0fd9e8ad95d82fde61fa9745e5b2e44210ee9feba42dfa3a9e1da45e7e82a6
5
5
  SHA512:
6
- metadata.gz: 2c2f5cc2b051a78cda973c2db3abba5a101654b9f3f73ec5e16189545e68593a76df47041d8d9078db71e989535458cb95ec05abd955c719b505b756806c285c
7
- data.tar.gz: 5ea2eabe3e5fc873092a3cfc91078f5f59dd190301eb2d11b5520c4b7995819615674df766a024267dbcb9c16d6f08c5c5ed0a1d1c973b098065150a2e4985e8
6
+ metadata.gz: 3aa2f7fd6f2178fa702ec30b09e90a07684ce7cd7ee1c70978de362907535fe938d077b10edd70d52a523ecb63ecfe65a2e6b5e0b68e8a95c445990e7d7dac3b
7
+ data.tar.gz: 4c2bdd5b5cf9afe45a2bc8058b19a9b7f8179f6463f4d8db7b9e239d9c2317944a42e24ff69af856668b19be3a11c8a7c14275805e651c48072d59e9ac876c5c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.63.0 (2022-02-02)
5
+ ------------------
6
+
7
+ * Feature - Allows customers to get progress updates for blue/green deployments
8
+
4
9
  1.62.0 (2022-01-06)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.62.0
1
+ 1.63.0
@@ -771,6 +771,8 @@ module Aws::ElasticsearchService
771
771
  # resp.domain_status.advanced_security_options.anonymous_auth_enabled #=> Boolean
772
772
  # resp.domain_status.auto_tune_options.state #=> String, one of "ENABLED", "DISABLED", "ENABLE_IN_PROGRESS", "DISABLE_IN_PROGRESS", "DISABLED_AND_ROLLBACK_SCHEDULED", "DISABLED_AND_ROLLBACK_IN_PROGRESS", "DISABLED_AND_ROLLBACK_COMPLETE", "DISABLED_AND_ROLLBACK_ERROR", "ERROR"
773
773
  # resp.domain_status.auto_tune_options.error_message #=> String
774
+ # resp.domain_status.change_progress_details.change_id #=> String
775
+ # resp.domain_status.change_progress_details.message #=> String
774
776
  #
775
777
  # @overload create_elasticsearch_domain(params = {})
776
778
  # @param [Hash] params ({})
@@ -978,6 +980,8 @@ module Aws::ElasticsearchService
978
980
  # resp.domain_status.advanced_security_options.anonymous_auth_enabled #=> Boolean
979
981
  # resp.domain_status.auto_tune_options.state #=> String, one of "ENABLED", "DISABLED", "ENABLE_IN_PROGRESS", "DISABLE_IN_PROGRESS", "DISABLED_AND_ROLLBACK_SCHEDULED", "DISABLED_AND_ROLLBACK_IN_PROGRESS", "DISABLED_AND_ROLLBACK_COMPLETE", "DISABLED_AND_ROLLBACK_ERROR", "ERROR"
980
982
  # resp.domain_status.auto_tune_options.error_message #=> String
983
+ # resp.domain_status.change_progress_details.change_id #=> String
984
+ # resp.domain_status.change_progress_details.message #=> String
981
985
  #
982
986
  # @overload delete_elasticsearch_domain(params = {})
983
987
  # @param [Hash] params ({})
@@ -1160,6 +1164,51 @@ module Aws::ElasticsearchService
1160
1164
  req.send_request(options)
1161
1165
  end
1162
1166
 
1167
+ # Returns information about the current blue/green deployment happening
1168
+ # on a domain, including a change ID, status, and progress stages.
1169
+ #
1170
+ # @option params [required, String] :domain_name
1171
+ # The domain you want to get the progress information about.
1172
+ #
1173
+ # @option params [String] :change_id
1174
+ # The specific change ID for which you want to get progress information.
1175
+ # This is an optional parameter. If omitted, the service returns
1176
+ # information about the most recent configuration change.
1177
+ #
1178
+ # @return [Types::DescribeDomainChangeProgressResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1179
+ #
1180
+ # * {Types::DescribeDomainChangeProgressResponse#change_progress_status #change_progress_status} => Types::ChangeProgressStatusDetails
1181
+ #
1182
+ # @example Request syntax with placeholder values
1183
+ #
1184
+ # resp = client.describe_domain_change_progress({
1185
+ # domain_name: "DomainName", # required
1186
+ # change_id: "GUID",
1187
+ # })
1188
+ #
1189
+ # @example Response structure
1190
+ #
1191
+ # resp.change_progress_status.change_id #=> String
1192
+ # resp.change_progress_status.start_time #=> Time
1193
+ # resp.change_progress_status.status #=> String, one of "PENDING", "PROCESSING", "COMPLETED", "FAILED"
1194
+ # resp.change_progress_status.pending_properties #=> Array
1195
+ # resp.change_progress_status.pending_properties[0] #=> String
1196
+ # resp.change_progress_status.completed_properties #=> Array
1197
+ # resp.change_progress_status.completed_properties[0] #=> String
1198
+ # resp.change_progress_status.total_number_of_stages #=> Integer
1199
+ # resp.change_progress_status.change_progress_stages #=> Array
1200
+ # resp.change_progress_status.change_progress_stages[0].name #=> String
1201
+ # resp.change_progress_status.change_progress_stages[0].status #=> String
1202
+ # resp.change_progress_status.change_progress_stages[0].description #=> String
1203
+ # resp.change_progress_status.change_progress_stages[0].last_updated #=> Time
1204
+ #
1205
+ # @overload describe_domain_change_progress(params = {})
1206
+ # @param [Hash] params ({})
1207
+ def describe_domain_change_progress(params = {}, options = {})
1208
+ req = build_request(:describe_domain_change_progress, params)
1209
+ req.send_request(options)
1210
+ end
1211
+
1163
1212
  # Returns domain configuration information about the specified
1164
1213
  # Elasticsearch domain, including the domain ID, domain endpoint, and
1165
1214
  # domain ARN.
@@ -1251,6 +1300,8 @@ module Aws::ElasticsearchService
1251
1300
  # resp.domain_status.advanced_security_options.anonymous_auth_enabled #=> Boolean
1252
1301
  # resp.domain_status.auto_tune_options.state #=> String, one of "ENABLED", "DISABLED", "ENABLE_IN_PROGRESS", "DISABLE_IN_PROGRESS", "DISABLED_AND_ROLLBACK_SCHEDULED", "DISABLED_AND_ROLLBACK_IN_PROGRESS", "DISABLED_AND_ROLLBACK_COMPLETE", "DISABLED_AND_ROLLBACK_ERROR", "ERROR"
1253
1302
  # resp.domain_status.auto_tune_options.error_message #=> String
1303
+ # resp.domain_status.change_progress_details.change_id #=> String
1304
+ # resp.domain_status.change_progress_details.message #=> String
1254
1305
  #
1255
1306
  # @overload describe_elasticsearch_domain(params = {})
1256
1307
  # @param [Hash] params ({})
@@ -1408,6 +1459,8 @@ module Aws::ElasticsearchService
1408
1459
  # resp.domain_config.auto_tune_options.status.state #=> String, one of "ENABLED", "DISABLED", "ENABLE_IN_PROGRESS", "DISABLE_IN_PROGRESS", "DISABLED_AND_ROLLBACK_SCHEDULED", "DISABLED_AND_ROLLBACK_IN_PROGRESS", "DISABLED_AND_ROLLBACK_COMPLETE", "DISABLED_AND_ROLLBACK_ERROR", "ERROR"
1409
1460
  # resp.domain_config.auto_tune_options.status.error_message #=> String
1410
1461
  # resp.domain_config.auto_tune_options.status.pending_deletion #=> Boolean
1462
+ # resp.domain_config.change_progress_details.change_id #=> String
1463
+ # resp.domain_config.change_progress_details.message #=> String
1411
1464
  #
1412
1465
  # @overload describe_elasticsearch_domain_config(params = {})
1413
1466
  # @param [Hash] params ({})
@@ -1508,6 +1561,8 @@ module Aws::ElasticsearchService
1508
1561
  # resp.domain_status_list[0].advanced_security_options.anonymous_auth_enabled #=> Boolean
1509
1562
  # resp.domain_status_list[0].auto_tune_options.state #=> String, one of "ENABLED", "DISABLED", "ENABLE_IN_PROGRESS", "DISABLE_IN_PROGRESS", "DISABLED_AND_ROLLBACK_SCHEDULED", "DISABLED_AND_ROLLBACK_IN_PROGRESS", "DISABLED_AND_ROLLBACK_COMPLETE", "DISABLED_AND_ROLLBACK_ERROR", "ERROR"
1510
1563
  # resp.domain_status_list[0].auto_tune_options.error_message #=> String
1564
+ # resp.domain_status_list[0].change_progress_details.change_id #=> String
1565
+ # resp.domain_status_list[0].change_progress_details.message #=> String
1511
1566
  #
1512
1567
  # @overload describe_elasticsearch_domains(params = {})
1513
1568
  # @param [Hash] params ({})
@@ -2760,6 +2815,8 @@ module Aws::ElasticsearchService
2760
2815
  # resp.domain_config.auto_tune_options.status.state #=> String, one of "ENABLED", "DISABLED", "ENABLE_IN_PROGRESS", "DISABLE_IN_PROGRESS", "DISABLED_AND_ROLLBACK_SCHEDULED", "DISABLED_AND_ROLLBACK_IN_PROGRESS", "DISABLED_AND_ROLLBACK_COMPLETE", "DISABLED_AND_ROLLBACK_ERROR", "ERROR"
2761
2816
  # resp.domain_config.auto_tune_options.status.error_message #=> String
2762
2817
  # resp.domain_config.auto_tune_options.status.pending_deletion #=> Boolean
2818
+ # resp.domain_config.change_progress_details.change_id #=> String
2819
+ # resp.domain_config.change_progress_details.message #=> String
2763
2820
  # resp.dry_run_results.deployment_type #=> String
2764
2821
  # resp.dry_run_results.message #=> String
2765
2822
  #
@@ -2844,6 +2901,7 @@ module Aws::ElasticsearchService
2844
2901
  # * {Types::UpgradeElasticsearchDomainResponse#domain_name #domain_name} => String
2845
2902
  # * {Types::UpgradeElasticsearchDomainResponse#target_version #target_version} => String
2846
2903
  # * {Types::UpgradeElasticsearchDomainResponse#perform_check_only #perform_check_only} => Boolean
2904
+ # * {Types::UpgradeElasticsearchDomainResponse#change_progress_details #change_progress_details} => Types::ChangeProgressDetails
2847
2905
  #
2848
2906
  # @example Request syntax with placeholder values
2849
2907
  #
@@ -2858,6 +2916,8 @@ module Aws::ElasticsearchService
2858
2916
  # resp.domain_name #=> String
2859
2917
  # resp.target_version #=> String
2860
2918
  # resp.perform_check_only #=> Boolean
2919
+ # resp.change_progress_details.change_id #=> String
2920
+ # resp.change_progress_details.message #=> String
2861
2921
  #
2862
2922
  # @overload upgrade_elasticsearch_domain(params = {})
2863
2923
  # @param [Hash] params ({})
@@ -2879,7 +2939,7 @@ module Aws::ElasticsearchService
2879
2939
  params: params,
2880
2940
  config: config)
2881
2941
  context[:gem_name] = 'aws-sdk-elasticsearchservice'
2882
- context[:gem_version] = '1.62.0'
2942
+ context[:gem_version] = '1.63.0'
2883
2943
  Seahorse::Client::Request.new(handlers, context)
2884
2944
  end
2885
2945
 
@@ -47,6 +47,12 @@ module Aws::ElasticsearchService
47
47
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
48
48
  CancelElasticsearchServiceSoftwareUpdateRequest = Shapes::StructureShape.new(name: 'CancelElasticsearchServiceSoftwareUpdateRequest')
49
49
  CancelElasticsearchServiceSoftwareUpdateResponse = Shapes::StructureShape.new(name: 'CancelElasticsearchServiceSoftwareUpdateResponse')
50
+ ChangeProgressDetails = Shapes::StructureShape.new(name: 'ChangeProgressDetails')
51
+ ChangeProgressStage = Shapes::StructureShape.new(name: 'ChangeProgressStage')
52
+ ChangeProgressStageList = Shapes::ListShape.new(name: 'ChangeProgressStageList')
53
+ ChangeProgressStageName = Shapes::StringShape.new(name: 'ChangeProgressStageName')
54
+ ChangeProgressStageStatus = Shapes::StringShape.new(name: 'ChangeProgressStageStatus')
55
+ ChangeProgressStatusDetails = Shapes::StructureShape.new(name: 'ChangeProgressStatusDetails')
50
56
  CloudWatchLogsLogGroupArn = Shapes::StringShape.new(name: 'CloudWatchLogsLogGroupArn')
51
57
  CognitoOptions = Shapes::StructureShape.new(name: 'CognitoOptions')
52
58
  CognitoOptionsStatus = Shapes::StructureShape.new(name: 'CognitoOptionsStatus')
@@ -78,6 +84,8 @@ module Aws::ElasticsearchService
78
84
  DeploymentType = Shapes::StringShape.new(name: 'DeploymentType')
79
85
  DescribeDomainAutoTunesRequest = Shapes::StructureShape.new(name: 'DescribeDomainAutoTunesRequest')
80
86
  DescribeDomainAutoTunesResponse = Shapes::StructureShape.new(name: 'DescribeDomainAutoTunesResponse')
87
+ DescribeDomainChangeProgressRequest = Shapes::StructureShape.new(name: 'DescribeDomainChangeProgressRequest')
88
+ DescribeDomainChangeProgressResponse = Shapes::StructureShape.new(name: 'DescribeDomainChangeProgressResponse')
81
89
  DescribeElasticsearchDomainConfigRequest = Shapes::StructureShape.new(name: 'DescribeElasticsearchDomainConfigRequest')
82
90
  DescribeElasticsearchDomainConfigResponse = Shapes::StructureShape.new(name: 'DescribeElasticsearchDomainConfigResponse')
83
91
  DescribeElasticsearchDomainRequest = Shapes::StructureShape.new(name: 'DescribeElasticsearchDomainRequest')
@@ -101,6 +109,7 @@ module Aws::ElasticsearchService
101
109
  DescribeReservedElasticsearchInstanceOfferingsResponse = Shapes::StructureShape.new(name: 'DescribeReservedElasticsearchInstanceOfferingsResponse')
102
110
  DescribeReservedElasticsearchInstancesRequest = Shapes::StructureShape.new(name: 'DescribeReservedElasticsearchInstancesRequest')
103
111
  DescribeReservedElasticsearchInstancesResponse = Shapes::StructureShape.new(name: 'DescribeReservedElasticsearchInstancesResponse')
112
+ Description = Shapes::StringShape.new(name: 'Description')
104
113
  DisableTimestamp = Shapes::TimestampShape.new(name: 'DisableTimestamp')
105
114
  DisabledOperationException = Shapes::StructureShape.new(name: 'DisabledOperationException')
106
115
  DissociatePackageRequest = Shapes::StructureShape.new(name: 'DissociatePackageRequest')
@@ -208,6 +217,7 @@ module Aws::ElasticsearchService
208
217
  OutboundCrossClusterSearchConnectionStatus = Shapes::StructureShape.new(name: 'OutboundCrossClusterSearchConnectionStatus')
209
218
  OutboundCrossClusterSearchConnectionStatusCode = Shapes::StringShape.new(name: 'OutboundCrossClusterSearchConnectionStatusCode')
210
219
  OutboundCrossClusterSearchConnections = Shapes::ListShape.new(name: 'OutboundCrossClusterSearchConnections')
220
+ OverallChangeStatus = Shapes::StringShape.new(name: 'OverallChangeStatus')
211
221
  OwnerId = Shapes::StringShape.new(name: 'OwnerId')
212
222
  PackageDescription = Shapes::StringShape.new(name: 'PackageDescription')
213
223
  PackageDetails = Shapes::StructureShape.new(name: 'PackageDetails')
@@ -274,6 +284,7 @@ module Aws::ElasticsearchService
274
284
  TagList = Shapes::ListShape.new(name: 'TagList')
275
285
  TagValue = Shapes::StringShape.new(name: 'TagValue')
276
286
  TimeUnit = Shapes::StringShape.new(name: 'TimeUnit')
287
+ TotalNumberOfStages = Shapes::IntegerShape.new(name: 'TotalNumberOfStages')
277
288
  UIntValue = Shapes::IntegerShape.new(name: 'UIntValue')
278
289
  UpdateElasticsearchDomainConfigRequest = Shapes::StructureShape.new(name: 'UpdateElasticsearchDomainConfigRequest')
279
290
  UpdateElasticsearchDomainConfigResponse = Shapes::StructureShape.new(name: 'UpdateElasticsearchDomainConfigResponse')
@@ -403,6 +414,27 @@ module Aws::ElasticsearchService
403
414
  CancelElasticsearchServiceSoftwareUpdateResponse.add_member(:service_software_options, Shapes::ShapeRef.new(shape: ServiceSoftwareOptions, location_name: "ServiceSoftwareOptions"))
404
415
  CancelElasticsearchServiceSoftwareUpdateResponse.struct_class = Types::CancelElasticsearchServiceSoftwareUpdateResponse
405
416
 
417
+ ChangeProgressDetails.add_member(:change_id, Shapes::ShapeRef.new(shape: GUID, location_name: "ChangeId"))
418
+ ChangeProgressDetails.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
419
+ ChangeProgressDetails.struct_class = Types::ChangeProgressDetails
420
+
421
+ ChangeProgressStage.add_member(:name, Shapes::ShapeRef.new(shape: ChangeProgressStageName, location_name: "Name"))
422
+ ChangeProgressStage.add_member(:status, Shapes::ShapeRef.new(shape: ChangeProgressStageStatus, location_name: "Status"))
423
+ ChangeProgressStage.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
424
+ ChangeProgressStage.add_member(:last_updated, Shapes::ShapeRef.new(shape: LastUpdated, location_name: "LastUpdated"))
425
+ ChangeProgressStage.struct_class = Types::ChangeProgressStage
426
+
427
+ ChangeProgressStageList.member = Shapes::ShapeRef.new(shape: ChangeProgressStage)
428
+
429
+ ChangeProgressStatusDetails.add_member(:change_id, Shapes::ShapeRef.new(shape: GUID, location_name: "ChangeId"))
430
+ ChangeProgressStatusDetails.add_member(:start_time, Shapes::ShapeRef.new(shape: UpdateTimestamp, location_name: "StartTime"))
431
+ ChangeProgressStatusDetails.add_member(:status, Shapes::ShapeRef.new(shape: OverallChangeStatus, location_name: "Status"))
432
+ ChangeProgressStatusDetails.add_member(:pending_properties, Shapes::ShapeRef.new(shape: StringList, location_name: "PendingProperties"))
433
+ ChangeProgressStatusDetails.add_member(:completed_properties, Shapes::ShapeRef.new(shape: StringList, location_name: "CompletedProperties"))
434
+ ChangeProgressStatusDetails.add_member(:total_number_of_stages, Shapes::ShapeRef.new(shape: TotalNumberOfStages, location_name: "TotalNumberOfStages"))
435
+ ChangeProgressStatusDetails.add_member(:change_progress_stages, Shapes::ShapeRef.new(shape: ChangeProgressStageList, location_name: "ChangeProgressStages"))
436
+ ChangeProgressStatusDetails.struct_class = Types::ChangeProgressStatusDetails
437
+
406
438
  CognitoOptions.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Enabled"))
407
439
  CognitoOptions.add_member(:user_pool_id, Shapes::ShapeRef.new(shape: UserPoolId, location_name: "UserPoolId"))
408
440
  CognitoOptions.add_member(:identity_pool_id, Shapes::ShapeRef.new(shape: IdentityPoolId, location_name: "IdentityPoolId"))
@@ -499,6 +531,13 @@ module Aws::ElasticsearchService
499
531
  DescribeDomainAutoTunesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
500
532
  DescribeDomainAutoTunesResponse.struct_class = Types::DescribeDomainAutoTunesResponse
501
533
 
534
+ DescribeDomainChangeProgressRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location: "uri", location_name: "DomainName"))
535
+ DescribeDomainChangeProgressRequest.add_member(:change_id, Shapes::ShapeRef.new(shape: GUID, location: "querystring", location_name: "changeid"))
536
+ DescribeDomainChangeProgressRequest.struct_class = Types::DescribeDomainChangeProgressRequest
537
+
538
+ DescribeDomainChangeProgressResponse.add_member(:change_progress_status, Shapes::ShapeRef.new(shape: ChangeProgressStatusDetails, location_name: "ChangeProgressStatus"))
539
+ DescribeDomainChangeProgressResponse.struct_class = Types::DescribeDomainChangeProgressResponse
540
+
502
541
  DescribeElasticsearchDomainConfigRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location: "uri", location_name: "DomainName"))
503
542
  DescribeElasticsearchDomainConfigRequest.struct_class = Types::DescribeElasticsearchDomainConfigRequest
504
543
 
@@ -673,6 +712,7 @@ module Aws::ElasticsearchService
673
712
  ElasticsearchDomainConfig.add_member(:domain_endpoint_options, Shapes::ShapeRef.new(shape: DomainEndpointOptionsStatus, location_name: "DomainEndpointOptions"))
674
713
  ElasticsearchDomainConfig.add_member(:advanced_security_options, Shapes::ShapeRef.new(shape: AdvancedSecurityOptionsStatus, location_name: "AdvancedSecurityOptions"))
675
714
  ElasticsearchDomainConfig.add_member(:auto_tune_options, Shapes::ShapeRef.new(shape: AutoTuneOptionsStatus, location_name: "AutoTuneOptions"))
715
+ ElasticsearchDomainConfig.add_member(:change_progress_details, Shapes::ShapeRef.new(shape: ChangeProgressDetails, location_name: "ChangeProgressDetails"))
676
716
  ElasticsearchDomainConfig.struct_class = Types::ElasticsearchDomainConfig
677
717
 
678
718
  ElasticsearchDomainStatus.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, required: true, location_name: "DomainId"))
@@ -699,6 +739,7 @@ module Aws::ElasticsearchService
699
739
  ElasticsearchDomainStatus.add_member(:domain_endpoint_options, Shapes::ShapeRef.new(shape: DomainEndpointOptions, location_name: "DomainEndpointOptions"))
700
740
  ElasticsearchDomainStatus.add_member(:advanced_security_options, Shapes::ShapeRef.new(shape: AdvancedSecurityOptions, location_name: "AdvancedSecurityOptions"))
701
741
  ElasticsearchDomainStatus.add_member(:auto_tune_options, Shapes::ShapeRef.new(shape: AutoTuneOptionsOutput, location_name: "AutoTuneOptions"))
742
+ ElasticsearchDomainStatus.add_member(:change_progress_details, Shapes::ShapeRef.new(shape: ChangeProgressDetails, location_name: "ChangeProgressDetails"))
702
743
  ElasticsearchDomainStatus.struct_class = Types::ElasticsearchDomainStatus
703
744
 
704
745
  ElasticsearchDomainStatusList.member = Shapes::ShapeRef.new(shape: ElasticsearchDomainStatus)
@@ -1085,6 +1126,7 @@ module Aws::ElasticsearchService
1085
1126
  UpgradeElasticsearchDomainResponse.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, location_name: "DomainName"))
1086
1127
  UpgradeElasticsearchDomainResponse.add_member(:target_version, Shapes::ShapeRef.new(shape: ElasticsearchVersionString, location_name: "TargetVersion"))
1087
1128
  UpgradeElasticsearchDomainResponse.add_member(:perform_check_only, Shapes::ShapeRef.new(shape: Boolean, location_name: "PerformCheckOnly"))
1129
+ UpgradeElasticsearchDomainResponse.add_member(:change_progress_details, Shapes::ShapeRef.new(shape: ChangeProgressDetails, location_name: "ChangeProgressDetails"))
1088
1130
  UpgradeElasticsearchDomainResponse.struct_class = Types::UpgradeElasticsearchDomainResponse
1089
1131
 
1090
1132
  UpgradeHistory.add_member(:upgrade_name, Shapes::ShapeRef.new(shape: UpgradeName, location_name: "UpgradeName"))
@@ -1306,6 +1348,18 @@ module Aws::ElasticsearchService
1306
1348
  )
1307
1349
  end)
1308
1350
 
1351
+ api.add_operation(:describe_domain_change_progress, Seahorse::Model::Operation.new.tap do |o|
1352
+ o.name = "DescribeDomainChangeProgress"
1353
+ o.http_method = "GET"
1354
+ o.http_request_uri = "/2015-01-01/es/domain/{DomainName}/progress"
1355
+ o.input = Shapes::ShapeRef.new(shape: DescribeDomainChangeProgressRequest)
1356
+ o.output = Shapes::ShapeRef.new(shape: DescribeDomainChangeProgressResponse)
1357
+ o.errors << Shapes::ShapeRef.new(shape: BaseException)
1358
+ o.errors << Shapes::ShapeRef.new(shape: InternalException)
1359
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1360
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1361
+ end)
1362
+
1309
1363
  api.add_operation(:describe_elasticsearch_domain, Seahorse::Model::Operation.new.tap do |o|
1310
1364
  o.name = "DescribeElasticsearchDomain"
1311
1365
  o.http_method = "GET"
@@ -625,6 +625,100 @@ module Aws::ElasticsearchService
625
625
  include Aws::Structure
626
626
  end
627
627
 
628
+ # Specifies change details of the domain configuration change.
629
+ #
630
+ # @!attribute [rw] change_id
631
+ # The unique change identifier associated with a specific domain
632
+ # configuration change.
633
+ # @return [String]
634
+ #
635
+ # @!attribute [rw] message
636
+ # Contains an optional message associated with the domain
637
+ # configuration change.
638
+ # @return [String]
639
+ #
640
+ class ChangeProgressDetails < Struct.new(
641
+ :change_id,
642
+ :message)
643
+ SENSITIVE = []
644
+ include Aws::Structure
645
+ end
646
+
647
+ # A progress stage details of a specific domain configuration change.
648
+ #
649
+ # @!attribute [rw] name
650
+ # The name of the specific progress stage.
651
+ # @return [String]
652
+ #
653
+ # @!attribute [rw] status
654
+ # The overall status of a specific progress stage.
655
+ # @return [String]
656
+ #
657
+ # @!attribute [rw] description
658
+ # The description of the progress stage.
659
+ # @return [String]
660
+ #
661
+ # @!attribute [rw] last_updated
662
+ # The last updated timestamp of the progress stage.
663
+ # @return [Time]
664
+ #
665
+ class ChangeProgressStage < Struct.new(
666
+ :name,
667
+ :status,
668
+ :description,
669
+ :last_updated)
670
+ SENSITIVE = []
671
+ include Aws::Structure
672
+ end
673
+
674
+ # The progress details of a specific domain configuration change.
675
+ #
676
+ # @!attribute [rw] change_id
677
+ # The unique change identifier associated with a specific domain
678
+ # configuration change.
679
+ # @return [String]
680
+ #
681
+ # @!attribute [rw] start_time
682
+ # The time at which the configuration change is made on the domain.
683
+ # @return [Time]
684
+ #
685
+ # @!attribute [rw] status
686
+ # The overall status of the domain configuration change. This field
687
+ # can take the following values: `PENDING`, `PROCESSING`, `COMPLETED`
688
+ # and `FAILED`
689
+ # @return [String]
690
+ #
691
+ # @!attribute [rw] pending_properties
692
+ # The list of properties involved in the domain configuration change
693
+ # that are still in pending.
694
+ # @return [Array<String>]
695
+ #
696
+ # @!attribute [rw] completed_properties
697
+ # The list of properties involved in the domain configuration change
698
+ # that are completed.
699
+ # @return [Array<String>]
700
+ #
701
+ # @!attribute [rw] total_number_of_stages
702
+ # The total number of stages required for the configuration change.
703
+ # @return [Integer]
704
+ #
705
+ # @!attribute [rw] change_progress_stages
706
+ # The specific stages that the domain is going through to perform the
707
+ # configuration change.
708
+ # @return [Array<Types::ChangeProgressStage>]
709
+ #
710
+ class ChangeProgressStatusDetails < Struct.new(
711
+ :change_id,
712
+ :start_time,
713
+ :status,
714
+ :pending_properties,
715
+ :completed_properties,
716
+ :total_number_of_stages,
717
+ :change_progress_stages)
718
+ SENSITIVE = []
719
+ include Aws::Structure
720
+ end
721
+
628
722
  # Options to specify the Cognito user and identity pools for Kibana
629
723
  # authentication. For more information, see [Amazon Cognito
630
724
  # Authentication for Kibana][1].
@@ -1306,6 +1400,49 @@ module Aws::ElasticsearchService
1306
1400
  include Aws::Structure
1307
1401
  end
1308
1402
 
1403
+ # Container for the parameters to the `DescribeDomainChangeProgress`
1404
+ # operation. Specifies the domain name and optional change specific
1405
+ # identity for which you want progress information.
1406
+ #
1407
+ # @note When making an API call, you may pass DescribeDomainChangeProgressRequest
1408
+ # data as a hash:
1409
+ #
1410
+ # {
1411
+ # domain_name: "DomainName", # required
1412
+ # change_id: "GUID",
1413
+ # }
1414
+ #
1415
+ # @!attribute [rw] domain_name
1416
+ # The domain you want to get the progress information about.
1417
+ # @return [String]
1418
+ #
1419
+ # @!attribute [rw] change_id
1420
+ # The specific change ID for which you want to get progress
1421
+ # information. This is an optional parameter. If omitted, the service
1422
+ # returns information about the most recent configuration change.
1423
+ # @return [String]
1424
+ #
1425
+ class DescribeDomainChangeProgressRequest < Struct.new(
1426
+ :domain_name,
1427
+ :change_id)
1428
+ SENSITIVE = []
1429
+ include Aws::Structure
1430
+ end
1431
+
1432
+ # The result of a `DescribeDomainChangeProgress` request. Contains the
1433
+ # progress information of the requested domain change.
1434
+ #
1435
+ # @!attribute [rw] change_progress_status
1436
+ # Progress information for the configuration change that is requested
1437
+ # in the `DescribeDomainChangeProgress` request.
1438
+ # @return [Types::ChangeProgressStatusDetails]
1439
+ #
1440
+ class DescribeDomainChangeProgressResponse < Struct.new(
1441
+ :change_progress_status)
1442
+ SENSITIVE = []
1443
+ include Aws::Structure
1444
+ end
1445
+
1309
1446
  # Container for the parameters to the
1310
1447
  # `DescribeElasticsearchDomainConfig` operation. Specifies the domain
1311
1448
  # name for which you want configuration information.
@@ -2310,6 +2447,10 @@ module Aws::ElasticsearchService
2310
2447
  # Specifies `AutoTuneOptions` for the domain.
2311
2448
  # @return [Types::AutoTuneOptionsStatus]
2312
2449
  #
2450
+ # @!attribute [rw] change_progress_details
2451
+ # Specifies change details of the domain configuration change.
2452
+ # @return [Types::ChangeProgressDetails]
2453
+ #
2313
2454
  class ElasticsearchDomainConfig < Struct.new(
2314
2455
  :elasticsearch_version,
2315
2456
  :elasticsearch_cluster_config,
@@ -2324,7 +2465,8 @@ module Aws::ElasticsearchService
2324
2465
  :log_publishing_options,
2325
2466
  :domain_endpoint_options,
2326
2467
  :advanced_security_options,
2327
- :auto_tune_options)
2468
+ :auto_tune_options,
2469
+ :change_progress_details)
2328
2470
  SENSITIVE = []
2329
2471
  include Aws::Structure
2330
2472
  end
@@ -2463,6 +2605,10 @@ module Aws::ElasticsearchService
2463
2605
  # The current status of the Elasticsearch domain's Auto-Tune options.
2464
2606
  # @return [Types::AutoTuneOptionsOutput]
2465
2607
  #
2608
+ # @!attribute [rw] change_progress_details
2609
+ # Specifies change details of the domain configuration change.
2610
+ # @return [Types::ChangeProgressDetails]
2611
+ #
2466
2612
  class ElasticsearchDomainStatus < Struct.new(
2467
2613
  :domain_id,
2468
2614
  :domain_name,
@@ -2487,7 +2633,8 @@ module Aws::ElasticsearchService
2487
2633
  :service_software_options,
2488
2634
  :domain_endpoint_options,
2489
2635
  :advanced_security_options,
2490
- :auto_tune_options)
2636
+ :auto_tune_options,
2637
+ :change_progress_details)
2491
2638
  SENSITIVE = []
2492
2639
  include Aws::Structure
2493
2640
  end
@@ -4544,10 +4691,15 @@ module Aws::ElasticsearchService
4544
4691
  # Upgrade.
4545
4692
  # @return [Boolean]
4546
4693
  #
4694
+ # @!attribute [rw] change_progress_details
4695
+ # Specifies change details of the domain configuration change.
4696
+ # @return [Types::ChangeProgressDetails]
4697
+ #
4547
4698
  class UpgradeElasticsearchDomainResponse < Struct.new(
4548
4699
  :domain_name,
4549
4700
  :target_version,
4550
- :perform_check_only)
4701
+ :perform_check_only,
4702
+ :change_progress_details)
4551
4703
  SENSITIVE = []
4552
4704
  include Aws::Structure
4553
4705
  end
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-elasticsearchservice/customizations'
48
48
  # @!group service
49
49
  module Aws::ElasticsearchService
50
50
 
51
- GEM_VERSION = '1.62.0'
51
+ GEM_VERSION = '1.63.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-elasticsearchservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.62.0
4
+ version: 1.63.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: 2022-01-06 00:00:00.000000000 Z
11
+ date: 2022-02-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core