aws-sdk-opensearchservice 1.7.0 → 1.8.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: 18eb2080668f344acf021c0e36c4da2bbcd20f683ea11234a0b6a737388cd5c1
4
- data.tar.gz: c9e968779928a0fa113a892f7d09bc3ddd94d4dd6ed4405dd73fe30344d503cf
3
+ metadata.gz: 1e196e03c6ed26e508715203c76faeb4529b8c540f1ce35714f99e44d246faee
4
+ data.tar.gz: 2957fca98364204f96c8893eb43c3c654df4a5bcb22d4944071c3fd57758c99a
5
5
  SHA512:
6
- metadata.gz: 905e9f31660ac6c8765e997102e6db8e3f91f4dc7d036f974ee3f344288aad6713a627e02555ea34c20132774724f7a9cf3ab0aa3aaf2f59cc75b935dde5a565
7
- data.tar.gz: 19f3a4e7dd1f6c06adb18d9bf195aa4af148908046e4cb22f9a5862b69d6b416b31eb06ecc241d2853c89cd9950caad48ee17856017b4c626955d3726e908f6a
6
+ metadata.gz: 1bf2b36ca7cfa696aad9675c946ec6b309f29f5904fdc421cfa15c07caaf155e033e842b279b011dbb4db2f68b2c7bddf8f74bc25eb2086eb2f9412dae84b2f5
7
+ data.tar.gz: c59bf0d8ac5fafef6328069166bbd8022540e113e62d18261c0a048a8fde161e2a23f04578d5a0be55c2d09a68e470fcf7e027b4799431cc451e0736e7c4aeaa
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.8.0 (2022-01-27)
5
+ ------------------
6
+
7
+ * Feature - Allows customers to get progress updates for blue/green deployments
8
+
4
9
  1.7.0 (2022-01-06)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.7.0
1
+ 1.8.0
@@ -779,6 +779,8 @@ module Aws::OpenSearchService
779
779
  # resp.domain_status.advanced_security_options.anonymous_auth_enabled #=> Boolean
780
780
  # 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"
781
781
  # resp.domain_status.auto_tune_options.error_message #=> String
782
+ # resp.domain_status.change_progress_details.change_id #=> String
783
+ # resp.domain_status.change_progress_details.message #=> String
782
784
  #
783
785
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/CreateDomain AWS API Documentation
784
786
  #
@@ -994,6 +996,8 @@ module Aws::OpenSearchService
994
996
  # resp.domain_status.advanced_security_options.anonymous_auth_enabled #=> Boolean
995
997
  # 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"
996
998
  # resp.domain_status.auto_tune_options.error_message #=> String
999
+ # resp.domain_status.change_progress_details.change_id #=> String
1000
+ # resp.domain_status.change_progress_details.message #=> String
997
1001
  #
998
1002
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DeleteDomain AWS API Documentation
999
1003
  #
@@ -1207,6 +1211,8 @@ module Aws::OpenSearchService
1207
1211
  # resp.domain_status.advanced_security_options.anonymous_auth_enabled #=> Boolean
1208
1212
  # 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"
1209
1213
  # resp.domain_status.auto_tune_options.error_message #=> String
1214
+ # resp.domain_status.change_progress_details.change_id #=> String
1215
+ # resp.domain_status.change_progress_details.message #=> String
1210
1216
  #
1211
1217
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDomain AWS API Documentation
1212
1218
  #
@@ -1265,6 +1271,53 @@ module Aws::OpenSearchService
1265
1271
  req.send_request(options)
1266
1272
  end
1267
1273
 
1274
+ # Returns information about the current blue/green deployment happening
1275
+ # on a domain, including a change ID, status, and progress stages.
1276
+ #
1277
+ # @option params [required, String] :domain_name
1278
+ # The domain you want to get the progress information about.
1279
+ #
1280
+ # @option params [String] :change_id
1281
+ # The specific change ID for which you want to get progress information.
1282
+ # This is an optional parameter. If omitted, the service returns
1283
+ # information about the most recent configuration change.
1284
+ #
1285
+ # @return [Types::DescribeDomainChangeProgressResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1286
+ #
1287
+ # * {Types::DescribeDomainChangeProgressResponse#change_progress_status #change_progress_status} => Types::ChangeProgressStatusDetails
1288
+ #
1289
+ # @example Request syntax with placeholder values
1290
+ #
1291
+ # resp = client.describe_domain_change_progress({
1292
+ # domain_name: "DomainName", # required
1293
+ # change_id: "GUID",
1294
+ # })
1295
+ #
1296
+ # @example Response structure
1297
+ #
1298
+ # resp.change_progress_status.change_id #=> String
1299
+ # resp.change_progress_status.start_time #=> Time
1300
+ # resp.change_progress_status.status #=> String, one of "PENDING", "PROCESSING", "COMPLETED", "FAILED"
1301
+ # resp.change_progress_status.pending_properties #=> Array
1302
+ # resp.change_progress_status.pending_properties[0] #=> String
1303
+ # resp.change_progress_status.completed_properties #=> Array
1304
+ # resp.change_progress_status.completed_properties[0] #=> String
1305
+ # resp.change_progress_status.total_number_of_stages #=> Integer
1306
+ # resp.change_progress_status.change_progress_stages #=> Array
1307
+ # resp.change_progress_status.change_progress_stages[0].name #=> String
1308
+ # resp.change_progress_status.change_progress_stages[0].status #=> String
1309
+ # resp.change_progress_status.change_progress_stages[0].description #=> String
1310
+ # resp.change_progress_status.change_progress_stages[0].last_updated #=> Time
1311
+ #
1312
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDomainChangeProgress AWS API Documentation
1313
+ #
1314
+ # @overload describe_domain_change_progress(params = {})
1315
+ # @param [Hash] params ({})
1316
+ def describe_domain_change_progress(params = {}, options = {})
1317
+ req = build_request(:describe_domain_change_progress, params)
1318
+ req.send_request(options)
1319
+ end
1320
+
1268
1321
  # Provides cluster configuration information about the specified domain,
1269
1322
  # such as the state, creation date, update version, and update date for
1270
1323
  # cluster options.
@@ -1414,6 +1467,8 @@ module Aws::OpenSearchService
1414
1467
  # 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"
1415
1468
  # resp.domain_config.auto_tune_options.status.error_message #=> String
1416
1469
  # resp.domain_config.auto_tune_options.status.pending_deletion #=> Boolean
1470
+ # resp.domain_config.change_progress_details.change_id #=> String
1471
+ # resp.domain_config.change_progress_details.message #=> String
1417
1472
  #
1418
1473
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDomainConfig AWS API Documentation
1419
1474
  #
@@ -1515,6 +1570,8 @@ module Aws::OpenSearchService
1515
1570
  # resp.domain_status_list[0].advanced_security_options.anonymous_auth_enabled #=> Boolean
1516
1571
  # 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"
1517
1572
  # resp.domain_status_list[0].auto_tune_options.error_message #=> String
1573
+ # resp.domain_status_list[0].change_progress_details.change_id #=> String
1574
+ # resp.domain_status_list[0].change_progress_details.message #=> String
1518
1575
  #
1519
1576
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDomains AWS API Documentation
1520
1577
  #
@@ -2808,6 +2865,8 @@ module Aws::OpenSearchService
2808
2865
  # 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"
2809
2866
  # resp.domain_config.auto_tune_options.status.error_message #=> String
2810
2867
  # resp.domain_config.auto_tune_options.status.pending_deletion #=> Boolean
2868
+ # resp.domain_config.change_progress_details.change_id #=> String
2869
+ # resp.domain_config.change_progress_details.message #=> String
2811
2870
  # resp.dry_run_results.deployment_type #=> String
2812
2871
  # resp.dry_run_results.message #=> String
2813
2872
  #
@@ -2916,6 +2975,7 @@ module Aws::OpenSearchService
2916
2975
  # * {Types::UpgradeDomainResponse#target_version #target_version} => String
2917
2976
  # * {Types::UpgradeDomainResponse#perform_check_only #perform_check_only} => Boolean
2918
2977
  # * {Types::UpgradeDomainResponse#advanced_options #advanced_options} => Hash<String,String>
2978
+ # * {Types::UpgradeDomainResponse#change_progress_details #change_progress_details} => Types::ChangeProgressDetails
2919
2979
  #
2920
2980
  # @example Request syntax with placeholder values
2921
2981
  #
@@ -2936,6 +2996,8 @@ module Aws::OpenSearchService
2936
2996
  # resp.perform_check_only #=> Boolean
2937
2997
  # resp.advanced_options #=> Hash
2938
2998
  # resp.advanced_options["String"] #=> String
2999
+ # resp.change_progress_details.change_id #=> String
3000
+ # resp.change_progress_details.message #=> String
2939
3001
  #
2940
3002
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/UpgradeDomain AWS API Documentation
2941
3003
  #
@@ -2959,7 +3021,7 @@ module Aws::OpenSearchService
2959
3021
  params: params,
2960
3022
  config: config)
2961
3023
  context[:gem_name] = 'aws-sdk-opensearchservice'
2962
- context[:gem_version] = '1.7.0'
3024
+ context[:gem_version] = '1.8.0'
2963
3025
  Seahorse::Client::Request.new(handlers, context)
2964
3026
  end
2965
3027
 
@@ -48,6 +48,12 @@ module Aws::OpenSearchService
48
48
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
49
49
  CancelServiceSoftwareUpdateRequest = Shapes::StructureShape.new(name: 'CancelServiceSoftwareUpdateRequest')
50
50
  CancelServiceSoftwareUpdateResponse = Shapes::StructureShape.new(name: 'CancelServiceSoftwareUpdateResponse')
51
+ ChangeProgressDetails = Shapes::StructureShape.new(name: 'ChangeProgressDetails')
52
+ ChangeProgressStage = Shapes::StructureShape.new(name: 'ChangeProgressStage')
53
+ ChangeProgressStageList = Shapes::ListShape.new(name: 'ChangeProgressStageList')
54
+ ChangeProgressStageName = Shapes::StringShape.new(name: 'ChangeProgressStageName')
55
+ ChangeProgressStageStatus = Shapes::StringShape.new(name: 'ChangeProgressStageStatus')
56
+ ChangeProgressStatusDetails = Shapes::StructureShape.new(name: 'ChangeProgressStatusDetails')
51
57
  CloudWatchLogsLogGroupArn = Shapes::StringShape.new(name: 'CloudWatchLogsLogGroupArn')
52
58
  ClusterConfig = Shapes::StructureShape.new(name: 'ClusterConfig')
53
59
  ClusterConfigStatus = Shapes::StructureShape.new(name: 'ClusterConfigStatus')
@@ -81,6 +87,8 @@ module Aws::OpenSearchService
81
87
  DeploymentType = Shapes::StringShape.new(name: 'DeploymentType')
82
88
  DescribeDomainAutoTunesRequest = Shapes::StructureShape.new(name: 'DescribeDomainAutoTunesRequest')
83
89
  DescribeDomainAutoTunesResponse = Shapes::StructureShape.new(name: 'DescribeDomainAutoTunesResponse')
90
+ DescribeDomainChangeProgressRequest = Shapes::StructureShape.new(name: 'DescribeDomainChangeProgressRequest')
91
+ DescribeDomainChangeProgressResponse = Shapes::StructureShape.new(name: 'DescribeDomainChangeProgressResponse')
84
92
  DescribeDomainConfigRequest = Shapes::StructureShape.new(name: 'DescribeDomainConfigRequest')
85
93
  DescribeDomainConfigResponse = Shapes::StructureShape.new(name: 'DescribeDomainConfigResponse')
86
94
  DescribeDomainRequest = Shapes::StructureShape.new(name: 'DescribeDomainRequest')
@@ -104,6 +112,7 @@ module Aws::OpenSearchService
104
112
  DescribeReservedInstanceOfferingsResponse = Shapes::StructureShape.new(name: 'DescribeReservedInstanceOfferingsResponse')
105
113
  DescribeReservedInstancesRequest = Shapes::StructureShape.new(name: 'DescribeReservedInstancesRequest')
106
114
  DescribeReservedInstancesResponse = Shapes::StructureShape.new(name: 'DescribeReservedInstancesResponse')
115
+ Description = Shapes::StringShape.new(name: 'Description')
107
116
  DisableTimestamp = Shapes::TimestampShape.new(name: 'DisableTimestamp')
108
117
  DisabledOperationException = Shapes::StructureShape.new(name: 'DisabledOperationException')
109
118
  DissociatePackageRequest = Shapes::StructureShape.new(name: 'DissociatePackageRequest')
@@ -209,6 +218,7 @@ module Aws::OpenSearchService
209
218
  OutboundConnectionStatus = Shapes::StructureShape.new(name: 'OutboundConnectionStatus')
210
219
  OutboundConnectionStatusCode = Shapes::StringShape.new(name: 'OutboundConnectionStatusCode')
211
220
  OutboundConnections = Shapes::ListShape.new(name: 'OutboundConnections')
221
+ OverallChangeStatus = Shapes::StringShape.new(name: 'OverallChangeStatus')
212
222
  OwnerId = Shapes::StringShape.new(name: 'OwnerId')
213
223
  PackageDescription = Shapes::StringShape.new(name: 'PackageDescription')
214
224
  PackageDetails = Shapes::StructureShape.new(name: 'PackageDetails')
@@ -275,6 +285,7 @@ module Aws::OpenSearchService
275
285
  TagList = Shapes::ListShape.new(name: 'TagList')
276
286
  TagValue = Shapes::StringShape.new(name: 'TagValue')
277
287
  TimeUnit = Shapes::StringShape.new(name: 'TimeUnit')
288
+ TotalNumberOfStages = Shapes::IntegerShape.new(name: 'TotalNumberOfStages')
278
289
  UIntValue = Shapes::IntegerShape.new(name: 'UIntValue')
279
290
  UpdateDomainConfigRequest = Shapes::StructureShape.new(name: 'UpdateDomainConfigRequest')
280
291
  UpdateDomainConfigResponse = Shapes::StructureShape.new(name: 'UpdateDomainConfigResponse')
@@ -412,6 +423,27 @@ module Aws::OpenSearchService
412
423
  CancelServiceSoftwareUpdateResponse.add_member(:service_software_options, Shapes::ShapeRef.new(shape: ServiceSoftwareOptions, location_name: "ServiceSoftwareOptions"))
413
424
  CancelServiceSoftwareUpdateResponse.struct_class = Types::CancelServiceSoftwareUpdateResponse
414
425
 
426
+ ChangeProgressDetails.add_member(:change_id, Shapes::ShapeRef.new(shape: GUID, location_name: "ChangeId"))
427
+ ChangeProgressDetails.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
428
+ ChangeProgressDetails.struct_class = Types::ChangeProgressDetails
429
+
430
+ ChangeProgressStage.add_member(:name, Shapes::ShapeRef.new(shape: ChangeProgressStageName, location_name: "Name"))
431
+ ChangeProgressStage.add_member(:status, Shapes::ShapeRef.new(shape: ChangeProgressStageStatus, location_name: "Status"))
432
+ ChangeProgressStage.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
433
+ ChangeProgressStage.add_member(:last_updated, Shapes::ShapeRef.new(shape: LastUpdated, location_name: "LastUpdated"))
434
+ ChangeProgressStage.struct_class = Types::ChangeProgressStage
435
+
436
+ ChangeProgressStageList.member = Shapes::ShapeRef.new(shape: ChangeProgressStage)
437
+
438
+ ChangeProgressStatusDetails.add_member(:change_id, Shapes::ShapeRef.new(shape: GUID, location_name: "ChangeId"))
439
+ ChangeProgressStatusDetails.add_member(:start_time, Shapes::ShapeRef.new(shape: UpdateTimestamp, location_name: "StartTime"))
440
+ ChangeProgressStatusDetails.add_member(:status, Shapes::ShapeRef.new(shape: OverallChangeStatus, location_name: "Status"))
441
+ ChangeProgressStatusDetails.add_member(:pending_properties, Shapes::ShapeRef.new(shape: StringList, location_name: "PendingProperties"))
442
+ ChangeProgressStatusDetails.add_member(:completed_properties, Shapes::ShapeRef.new(shape: StringList, location_name: "CompletedProperties"))
443
+ ChangeProgressStatusDetails.add_member(:total_number_of_stages, Shapes::ShapeRef.new(shape: TotalNumberOfStages, location_name: "TotalNumberOfStages"))
444
+ ChangeProgressStatusDetails.add_member(:change_progress_stages, Shapes::ShapeRef.new(shape: ChangeProgressStageList, location_name: "ChangeProgressStages"))
445
+ ChangeProgressStatusDetails.struct_class = Types::ChangeProgressStatusDetails
446
+
415
447
  ClusterConfig.add_member(:instance_type, Shapes::ShapeRef.new(shape: OpenSearchPartitionInstanceType, location_name: "InstanceType"))
416
448
  ClusterConfig.add_member(:instance_count, Shapes::ShapeRef.new(shape: IntegerClass, location_name: "InstanceCount"))
417
449
  ClusterConfig.add_member(:dedicated_master_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "DedicatedMasterEnabled"))
@@ -525,6 +557,13 @@ module Aws::OpenSearchService
525
557
  DescribeDomainAutoTunesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
526
558
  DescribeDomainAutoTunesResponse.struct_class = Types::DescribeDomainAutoTunesResponse
527
559
 
560
+ DescribeDomainChangeProgressRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location: "uri", location_name: "DomainName"))
561
+ DescribeDomainChangeProgressRequest.add_member(:change_id, Shapes::ShapeRef.new(shape: GUID, location: "querystring", location_name: "changeid"))
562
+ DescribeDomainChangeProgressRequest.struct_class = Types::DescribeDomainChangeProgressRequest
563
+
564
+ DescribeDomainChangeProgressResponse.add_member(:change_progress_status, Shapes::ShapeRef.new(shape: ChangeProgressStatusDetails, location_name: "ChangeProgressStatus"))
565
+ DescribeDomainChangeProgressResponse.struct_class = Types::DescribeDomainChangeProgressResponse
566
+
528
567
  DescribeDomainConfigRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location: "uri", location_name: "DomainName"))
529
568
  DescribeDomainConfigRequest.struct_class = Types::DescribeDomainConfigRequest
530
569
 
@@ -627,6 +666,7 @@ module Aws::OpenSearchService
627
666
  DomainConfig.add_member(:domain_endpoint_options, Shapes::ShapeRef.new(shape: DomainEndpointOptionsStatus, location_name: "DomainEndpointOptions"))
628
667
  DomainConfig.add_member(:advanced_security_options, Shapes::ShapeRef.new(shape: AdvancedSecurityOptionsStatus, location_name: "AdvancedSecurityOptions"))
629
668
  DomainConfig.add_member(:auto_tune_options, Shapes::ShapeRef.new(shape: AutoTuneOptionsStatus, location_name: "AutoTuneOptions"))
669
+ DomainConfig.add_member(:change_progress_details, Shapes::ShapeRef.new(shape: ChangeProgressDetails, location_name: "ChangeProgressDetails"))
630
670
  DomainConfig.struct_class = Types::DomainConfig
631
671
 
632
672
  DomainEndpointOptions.add_member(:enforce_https, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnforceHTTPS"))
@@ -688,6 +728,7 @@ module Aws::OpenSearchService
688
728
  DomainStatus.add_member(:domain_endpoint_options, Shapes::ShapeRef.new(shape: DomainEndpointOptions, location_name: "DomainEndpointOptions"))
689
729
  DomainStatus.add_member(:advanced_security_options, Shapes::ShapeRef.new(shape: AdvancedSecurityOptions, location_name: "AdvancedSecurityOptions"))
690
730
  DomainStatus.add_member(:auto_tune_options, Shapes::ShapeRef.new(shape: AutoTuneOptionsOutput, location_name: "AutoTuneOptions"))
731
+ DomainStatus.add_member(:change_progress_details, Shapes::ShapeRef.new(shape: ChangeProgressDetails, location_name: "ChangeProgressDetails"))
691
732
  DomainStatus.struct_class = Types::DomainStatus
692
733
 
693
734
  DomainStatusList.member = Shapes::ShapeRef.new(shape: DomainStatus)
@@ -1101,6 +1142,7 @@ module Aws::OpenSearchService
1101
1142
  UpgradeDomainResponse.add_member(:target_version, Shapes::ShapeRef.new(shape: VersionString, location_name: "TargetVersion"))
1102
1143
  UpgradeDomainResponse.add_member(:perform_check_only, Shapes::ShapeRef.new(shape: Boolean, location_name: "PerformCheckOnly"))
1103
1144
  UpgradeDomainResponse.add_member(:advanced_options, Shapes::ShapeRef.new(shape: AdvancedOptions, location_name: "AdvancedOptions"))
1145
+ UpgradeDomainResponse.add_member(:change_progress_details, Shapes::ShapeRef.new(shape: ChangeProgressDetails, location_name: "ChangeProgressDetails"))
1104
1146
  UpgradeDomainResponse.struct_class = Types::UpgradeDomainResponse
1105
1147
 
1106
1148
  UpgradeHistory.add_member(:upgrade_name, Shapes::ShapeRef.new(shape: UpgradeName, location_name: "UpgradeName"))
@@ -1329,6 +1371,18 @@ module Aws::OpenSearchService
1329
1371
  )
1330
1372
  end)
1331
1373
 
1374
+ api.add_operation(:describe_domain_change_progress, Seahorse::Model::Operation.new.tap do |o|
1375
+ o.name = "DescribeDomainChangeProgress"
1376
+ o.http_method = "GET"
1377
+ o.http_request_uri = "/2021-01-01/opensearch/domain/{DomainName}/progress"
1378
+ o.input = Shapes::ShapeRef.new(shape: DescribeDomainChangeProgressRequest)
1379
+ o.output = Shapes::ShapeRef.new(shape: DescribeDomainChangeProgressResponse)
1380
+ o.errors << Shapes::ShapeRef.new(shape: BaseException)
1381
+ o.errors << Shapes::ShapeRef.new(shape: InternalException)
1382
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1383
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1384
+ end)
1385
+
1332
1386
  api.add_operation(:describe_domain_config, Seahorse::Model::Operation.new.tap do |o|
1333
1387
  o.name = "DescribeDomainConfig"
1334
1388
  o.http_method = "GET"
@@ -692,6 +692,106 @@ module Aws::OpenSearchService
692
692
  include Aws::Structure
693
693
  end
694
694
 
695
+ # Specifies change details of the domain configuration change.
696
+ #
697
+ # @!attribute [rw] change_id
698
+ # The unique change identifier associated with a specific domain
699
+ # configuration change.
700
+ # @return [String]
701
+ #
702
+ # @!attribute [rw] message
703
+ # Contains an optional message associated with the domain
704
+ # configuration change.
705
+ # @return [String]
706
+ #
707
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/ChangeProgressDetails AWS API Documentation
708
+ #
709
+ class ChangeProgressDetails < Struct.new(
710
+ :change_id,
711
+ :message)
712
+ SENSITIVE = []
713
+ include Aws::Structure
714
+ end
715
+
716
+ # A progress stage details of a specific domain configuration change.
717
+ #
718
+ # @!attribute [rw] name
719
+ # The name of the specific progress stage.
720
+ # @return [String]
721
+ #
722
+ # @!attribute [rw] status
723
+ # The overall status of a specific progress stage.
724
+ # @return [String]
725
+ #
726
+ # @!attribute [rw] description
727
+ # The description of the progress stage.
728
+ # @return [String]
729
+ #
730
+ # @!attribute [rw] last_updated
731
+ # The last updated timestamp of the progress stage.
732
+ # @return [Time]
733
+ #
734
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/ChangeProgressStage AWS API Documentation
735
+ #
736
+ class ChangeProgressStage < Struct.new(
737
+ :name,
738
+ :status,
739
+ :description,
740
+ :last_updated)
741
+ SENSITIVE = []
742
+ include Aws::Structure
743
+ end
744
+
745
+ # The progress details of a specific domain configuration change.
746
+ #
747
+ # @!attribute [rw] change_id
748
+ # The unique change identifier associated with a specific domain
749
+ # configuration change.
750
+ # @return [String]
751
+ #
752
+ # @!attribute [rw] start_time
753
+ # The time at which the configuration change is made on the domain.
754
+ # @return [Time]
755
+ #
756
+ # @!attribute [rw] status
757
+ # The overall status of the domain configuration change. This field
758
+ # can take the following values: `PENDING`, `PROCESSING`, `COMPLETED`
759
+ # and `FAILED`
760
+ # @return [String]
761
+ #
762
+ # @!attribute [rw] pending_properties
763
+ # The list of properties involved in the domain configuration change
764
+ # that are still in pending.
765
+ # @return [Array<String>]
766
+ #
767
+ # @!attribute [rw] completed_properties
768
+ # The list of properties involved in the domain configuration change
769
+ # that are completed.
770
+ # @return [Array<String>]
771
+ #
772
+ # @!attribute [rw] total_number_of_stages
773
+ # The total number of stages required for the configuration change.
774
+ # @return [Integer]
775
+ #
776
+ # @!attribute [rw] change_progress_stages
777
+ # The specific stages that the domain is going through to perform the
778
+ # configuration change.
779
+ # @return [Array<Types::ChangeProgressStage>]
780
+ #
781
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/ChangeProgressStatusDetails AWS API Documentation
782
+ #
783
+ class ChangeProgressStatusDetails < Struct.new(
784
+ :change_id,
785
+ :start_time,
786
+ :status,
787
+ :pending_properties,
788
+ :completed_properties,
789
+ :total_number_of_stages,
790
+ :change_progress_stages)
791
+ SENSITIVE = []
792
+ include Aws::Structure
793
+ end
794
+
695
795
  # The configuration for the domain cluster, such as the type and number
696
796
  # of instances.
697
797
  #
@@ -1531,6 +1631,53 @@ module Aws::OpenSearchService
1531
1631
  include Aws::Structure
1532
1632
  end
1533
1633
 
1634
+ # Container for the parameters to the `DescribeDomainChangeProgress`
1635
+ # operation. Specifies the domain name and optional change specific
1636
+ # identity for which you want progress information.
1637
+ #
1638
+ # @note When making an API call, you may pass DescribeDomainChangeProgressRequest
1639
+ # data as a hash:
1640
+ #
1641
+ # {
1642
+ # domain_name: "DomainName", # required
1643
+ # change_id: "GUID",
1644
+ # }
1645
+ #
1646
+ # @!attribute [rw] domain_name
1647
+ # The domain you want to get the progress information about.
1648
+ # @return [String]
1649
+ #
1650
+ # @!attribute [rw] change_id
1651
+ # The specific change ID for which you want to get progress
1652
+ # information. This is an optional parameter. If omitted, the service
1653
+ # returns information about the most recent configuration change.
1654
+ # @return [String]
1655
+ #
1656
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDomainChangeProgressRequest AWS API Documentation
1657
+ #
1658
+ class DescribeDomainChangeProgressRequest < Struct.new(
1659
+ :domain_name,
1660
+ :change_id)
1661
+ SENSITIVE = []
1662
+ include Aws::Structure
1663
+ end
1664
+
1665
+ # The result of a `DescribeDomainChangeProgress` request. Contains the
1666
+ # progress information of the requested domain change.
1667
+ #
1668
+ # @!attribute [rw] change_progress_status
1669
+ # Progress information for the configuration change that is requested
1670
+ # in the `DescribeDomainChangeProgress` request.
1671
+ # @return [Types::ChangeProgressStatusDetails]
1672
+ #
1673
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDomainChangeProgressResponse AWS API Documentation
1674
+ #
1675
+ class DescribeDomainChangeProgressResponse < Struct.new(
1676
+ :change_progress_status)
1677
+ SENSITIVE = []
1678
+ include Aws::Structure
1679
+ end
1680
+
1534
1681
  # Container for the parameters to the `DescribeDomainConfig` operation.
1535
1682
  # Specifies the domain name for which you want configuration
1536
1683
  # information.
@@ -2163,6 +2310,10 @@ module Aws::OpenSearchService
2163
2310
  # Specifies `AutoTuneOptions` for the domain.
2164
2311
  # @return [Types::AutoTuneOptionsStatus]
2165
2312
  #
2313
+ # @!attribute [rw] change_progress_details
2314
+ # Specifies change details of the domain configuration change.
2315
+ # @return [Types::ChangeProgressDetails]
2316
+ #
2166
2317
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DomainConfig AWS API Documentation
2167
2318
  #
2168
2319
  class DomainConfig < Struct.new(
@@ -2179,7 +2330,8 @@ module Aws::OpenSearchService
2179
2330
  :log_publishing_options,
2180
2331
  :domain_endpoint_options,
2181
2332
  :advanced_security_options,
2182
- :auto_tune_options)
2333
+ :auto_tune_options,
2334
+ :change_progress_details)
2183
2335
  SENSITIVE = []
2184
2336
  include Aws::Structure
2185
2337
  end
@@ -2480,6 +2632,10 @@ module Aws::OpenSearchService
2480
2632
  # The current status of the domain's Auto-Tune options.
2481
2633
  # @return [Types::AutoTuneOptionsOutput]
2482
2634
  #
2635
+ # @!attribute [rw] change_progress_details
2636
+ # Specifies change details of the domain configuration change.
2637
+ # @return [Types::ChangeProgressDetails]
2638
+ #
2483
2639
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DomainStatus AWS API Documentation
2484
2640
  #
2485
2641
  class DomainStatus < Struct.new(
@@ -2506,7 +2662,8 @@ module Aws::OpenSearchService
2506
2662
  :service_software_options,
2507
2663
  :domain_endpoint_options,
2508
2664
  :advanced_security_options,
2509
- :auto_tune_options)
2665
+ :auto_tune_options,
2666
+ :change_progress_details)
2510
2667
  SENSITIVE = []
2511
2668
  include Aws::Structure
2512
2669
  end
@@ -4863,6 +5020,10 @@ module Aws::OpenSearchService
4863
5020
  # [1]: http://docs.aws.amazon.com/opensearch-service/latest/developerguide/createupdatedomains.html#createdomain-configure-advanced-options
4864
5021
  # @return [Hash<String,String>]
4865
5022
  #
5023
+ # @!attribute [rw] change_progress_details
5024
+ # Specifies change details of the domain configuration change.
5025
+ # @return [Types::ChangeProgressDetails]
5026
+ #
4866
5027
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/UpgradeDomainResponse AWS API Documentation
4867
5028
  #
4868
5029
  class UpgradeDomainResponse < Struct.new(
@@ -4870,7 +5031,8 @@ module Aws::OpenSearchService
4870
5031
  :domain_name,
4871
5032
  :target_version,
4872
5033
  :perform_check_only,
4873
- :advanced_options)
5034
+ :advanced_options,
5035
+ :change_progress_details)
4874
5036
  SENSITIVE = []
4875
5037
  include Aws::Structure
4876
5038
  end
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-opensearchservice/customizations'
48
48
  # @!group service
49
49
  module Aws::OpenSearchService
50
50
 
51
- GEM_VERSION = '1.7.0'
51
+ GEM_VERSION = '1.8.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-opensearchservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.0
4
+ version: 1.8.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-01-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core