aws-sdk-elasticsearchservice 1.62.0 → 1.65.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: 319d6f8d92c78a7edbbbaaa9c80f358233db91ee1bb619d5ff273634b163b301
4
- data.tar.gz: 5305385d93328dd748aea66adba7ba472f1fd3dcc382fcd9a481ead60fd15c0f
3
+ metadata.gz: 2f635989fb92f918c9647ff9c06146ce01e2bb16f05487f322a4f496ac0f8207
4
+ data.tar.gz: 289a3cd834c98d29ab3f3867f2c75b2f2fbccee6fde289e5016bdb9cca227701
5
5
  SHA512:
6
- metadata.gz: 2c2f5cc2b051a78cda973c2db3abba5a101654b9f3f73ec5e16189545e68593a76df47041d8d9078db71e989535458cb95ec05abd955c719b505b756806c285c
7
- data.tar.gz: 5ea2eabe3e5fc873092a3cfc91078f5f59dd190301eb2d11b5520c4b7995819615674df766a024267dbcb9c16d6f08c5c5ed0a1d1c973b098065150a2e4985e8
6
+ metadata.gz: ff5624715cb7038b64c925c432d49cb3ca098238d48b71e6321737f416b8e11258ce7ed4f7c2596c7a6fd6727388aea5af7a7a1706233b04c4fc72a2d5657ad0
7
+ data.tar.gz: 452642a06e99c967048746378047cf06d0057b77d89749d83d6a7cc563747ef30521dd73743dc5b2ee05acf6fbf526c5ba592ccaf9782592d00d51e8ecd6091d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.65.0 (2022-02-24)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.64.0 (2022-02-03)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.63.0 (2022-02-02)
15
+ ------------------
16
+
17
+ * Feature - Allows customers to get progress updates for blue/green deployments
18
+
4
19
  1.62.0 (2022-01-06)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.62.0
1
+ 1.65.0
@@ -27,7 +27,9 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
30
31
  require 'aws-sdk-core/plugins/defaults_mode.rb'
32
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
31
33
  require 'aws-sdk-core/plugins/signature_v4.rb'
32
34
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
33
35
 
@@ -74,7 +76,9 @@ module Aws::ElasticsearchService
74
76
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
75
77
  add_plugin(Aws::Plugins::TransferEncoding)
76
78
  add_plugin(Aws::Plugins::HttpChecksum)
79
+ add_plugin(Aws::Plugins::ChecksumAlgorithm)
77
80
  add_plugin(Aws::Plugins::DefaultsMode)
81
+ add_plugin(Aws::Plugins::RecursionDetection)
78
82
  add_plugin(Aws::Plugins::SignatureV4)
79
83
  add_plugin(Aws::Plugins::Protocols::RestJson)
80
84
 
@@ -771,6 +775,8 @@ module Aws::ElasticsearchService
771
775
  # resp.domain_status.advanced_security_options.anonymous_auth_enabled #=> Boolean
772
776
  # 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
777
  # resp.domain_status.auto_tune_options.error_message #=> String
778
+ # resp.domain_status.change_progress_details.change_id #=> String
779
+ # resp.domain_status.change_progress_details.message #=> String
774
780
  #
775
781
  # @overload create_elasticsearch_domain(params = {})
776
782
  # @param [Hash] params ({})
@@ -978,6 +984,8 @@ module Aws::ElasticsearchService
978
984
  # resp.domain_status.advanced_security_options.anonymous_auth_enabled #=> Boolean
979
985
  # 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
986
  # resp.domain_status.auto_tune_options.error_message #=> String
987
+ # resp.domain_status.change_progress_details.change_id #=> String
988
+ # resp.domain_status.change_progress_details.message #=> String
981
989
  #
982
990
  # @overload delete_elasticsearch_domain(params = {})
983
991
  # @param [Hash] params ({})
@@ -1160,6 +1168,51 @@ module Aws::ElasticsearchService
1160
1168
  req.send_request(options)
1161
1169
  end
1162
1170
 
1171
+ # Returns information about the current blue/green deployment happening
1172
+ # on a domain, including a change ID, status, and progress stages.
1173
+ #
1174
+ # @option params [required, String] :domain_name
1175
+ # The domain you want to get the progress information about.
1176
+ #
1177
+ # @option params [String] :change_id
1178
+ # The specific change ID for which you want to get progress information.
1179
+ # This is an optional parameter. If omitted, the service returns
1180
+ # information about the most recent configuration change.
1181
+ #
1182
+ # @return [Types::DescribeDomainChangeProgressResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1183
+ #
1184
+ # * {Types::DescribeDomainChangeProgressResponse#change_progress_status #change_progress_status} => Types::ChangeProgressStatusDetails
1185
+ #
1186
+ # @example Request syntax with placeholder values
1187
+ #
1188
+ # resp = client.describe_domain_change_progress({
1189
+ # domain_name: "DomainName", # required
1190
+ # change_id: "GUID",
1191
+ # })
1192
+ #
1193
+ # @example Response structure
1194
+ #
1195
+ # resp.change_progress_status.change_id #=> String
1196
+ # resp.change_progress_status.start_time #=> Time
1197
+ # resp.change_progress_status.status #=> String, one of "PENDING", "PROCESSING", "COMPLETED", "FAILED"
1198
+ # resp.change_progress_status.pending_properties #=> Array
1199
+ # resp.change_progress_status.pending_properties[0] #=> String
1200
+ # resp.change_progress_status.completed_properties #=> Array
1201
+ # resp.change_progress_status.completed_properties[0] #=> String
1202
+ # resp.change_progress_status.total_number_of_stages #=> Integer
1203
+ # resp.change_progress_status.change_progress_stages #=> Array
1204
+ # resp.change_progress_status.change_progress_stages[0].name #=> String
1205
+ # resp.change_progress_status.change_progress_stages[0].status #=> String
1206
+ # resp.change_progress_status.change_progress_stages[0].description #=> String
1207
+ # resp.change_progress_status.change_progress_stages[0].last_updated #=> Time
1208
+ #
1209
+ # @overload describe_domain_change_progress(params = {})
1210
+ # @param [Hash] params ({})
1211
+ def describe_domain_change_progress(params = {}, options = {})
1212
+ req = build_request(:describe_domain_change_progress, params)
1213
+ req.send_request(options)
1214
+ end
1215
+
1163
1216
  # Returns domain configuration information about the specified
1164
1217
  # Elasticsearch domain, including the domain ID, domain endpoint, and
1165
1218
  # domain ARN.
@@ -1251,6 +1304,8 @@ module Aws::ElasticsearchService
1251
1304
  # resp.domain_status.advanced_security_options.anonymous_auth_enabled #=> Boolean
1252
1305
  # 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
1306
  # resp.domain_status.auto_tune_options.error_message #=> String
1307
+ # resp.domain_status.change_progress_details.change_id #=> String
1308
+ # resp.domain_status.change_progress_details.message #=> String
1254
1309
  #
1255
1310
  # @overload describe_elasticsearch_domain(params = {})
1256
1311
  # @param [Hash] params ({})
@@ -1408,6 +1463,8 @@ module Aws::ElasticsearchService
1408
1463
  # 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
1464
  # resp.domain_config.auto_tune_options.status.error_message #=> String
1410
1465
  # resp.domain_config.auto_tune_options.status.pending_deletion #=> Boolean
1466
+ # resp.domain_config.change_progress_details.change_id #=> String
1467
+ # resp.domain_config.change_progress_details.message #=> String
1411
1468
  #
1412
1469
  # @overload describe_elasticsearch_domain_config(params = {})
1413
1470
  # @param [Hash] params ({})
@@ -1508,6 +1565,8 @@ module Aws::ElasticsearchService
1508
1565
  # resp.domain_status_list[0].advanced_security_options.anonymous_auth_enabled #=> Boolean
1509
1566
  # 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
1567
  # resp.domain_status_list[0].auto_tune_options.error_message #=> String
1568
+ # resp.domain_status_list[0].change_progress_details.change_id #=> String
1569
+ # resp.domain_status_list[0].change_progress_details.message #=> String
1511
1570
  #
1512
1571
  # @overload describe_elasticsearch_domains(params = {})
1513
1572
  # @param [Hash] params ({})
@@ -2760,6 +2819,8 @@ module Aws::ElasticsearchService
2760
2819
  # 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
2820
  # resp.domain_config.auto_tune_options.status.error_message #=> String
2762
2821
  # resp.domain_config.auto_tune_options.status.pending_deletion #=> Boolean
2822
+ # resp.domain_config.change_progress_details.change_id #=> String
2823
+ # resp.domain_config.change_progress_details.message #=> String
2763
2824
  # resp.dry_run_results.deployment_type #=> String
2764
2825
  # resp.dry_run_results.message #=> String
2765
2826
  #
@@ -2844,6 +2905,7 @@ module Aws::ElasticsearchService
2844
2905
  # * {Types::UpgradeElasticsearchDomainResponse#domain_name #domain_name} => String
2845
2906
  # * {Types::UpgradeElasticsearchDomainResponse#target_version #target_version} => String
2846
2907
  # * {Types::UpgradeElasticsearchDomainResponse#perform_check_only #perform_check_only} => Boolean
2908
+ # * {Types::UpgradeElasticsearchDomainResponse#change_progress_details #change_progress_details} => Types::ChangeProgressDetails
2847
2909
  #
2848
2910
  # @example Request syntax with placeholder values
2849
2911
  #
@@ -2858,6 +2920,8 @@ module Aws::ElasticsearchService
2858
2920
  # resp.domain_name #=> String
2859
2921
  # resp.target_version #=> String
2860
2922
  # resp.perform_check_only #=> Boolean
2923
+ # resp.change_progress_details.change_id #=> String
2924
+ # resp.change_progress_details.message #=> String
2861
2925
  #
2862
2926
  # @overload upgrade_elasticsearch_domain(params = {})
2863
2927
  # @param [Hash] params ({})
@@ -2879,7 +2943,7 @@ module Aws::ElasticsearchService
2879
2943
  params: params,
2880
2944
  config: config)
2881
2945
  context[:gem_name] = 'aws-sdk-elasticsearchservice'
2882
- context[:gem_version] = '1.62.0'
2946
+ context[:gem_version] = '1.65.0'
2883
2947
  Seahorse::Client::Request.new(handlers, context)
2884
2948
  end
2885
2949
 
@@ -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.65.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.65.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-24 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.125.0
22
+ version: 3.127.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.125.0
32
+ version: 3.127.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement