aws-sdk-opensearchservice 1.35.0 → 1.37.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: ce930444a2900c98bf098d304a8c6ab16d153c94c90fd94e498654b50040a4b8
4
- data.tar.gz: 0cb7e34ff77ffe228da133602ce8ad76bebd8a3e2e6655d0bae95f56b03a2d5b
3
+ metadata.gz: 7bc54f291ae4ae88d02985dae483917860f54ed434c7072d48ab04e65ab3a788
4
+ data.tar.gz: 12b62ade04abe89b169a8b2c0b30bd6ed510d09b71a5e1f60b98e9a26617e5d9
5
5
  SHA512:
6
- metadata.gz: b04dbd6809d55360c1a1746d4bacb0b25a9aee1fae8c52b3bdd11225eb8fba007462b8a4d03642abca1b3f8c61fb33ba68fd58f26d94cdfb01252ca874dcdff5
7
- data.tar.gz: ce45471066db2ebaef9201af7b2190b926f74314d3017aa31921bcc88aed571ff77ffa339582fbb82c49125f704b6eb667d9ef1712b66a8143c2b7ad8f3df1b5
6
+ metadata.gz: 7de19a8d44f99e09261dfcd424b78758097dcd61b53f6727ad57b4a86b3d0792c8361c9d012903142315d950a922daa01f04eda59b38715188722cef73a57800
7
+ data.tar.gz: a7cb5560eca8031fa56f3a7859641a75c1b51b3775b51d21baf08909cbc8e4d1502c189f85f4b114bda253941e6224532123e8627de6f9cd0529cb4219752617
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.37.0 (2024-02-06)
5
+ ------------------
6
+
7
+ * Feature - This release adds clear visibility to the customers on the changes that they make on the domain.
8
+
9
+ 1.36.0 (2024-01-26)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.35.0 (2024-01-04)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.35.0
1
+ 1.37.0
@@ -603,6 +603,50 @@ module Aws::OpenSearchService
603
603
  req.send_request(options)
604
604
  end
605
605
 
606
+ # Cancels a pending configuration change on an Amazon OpenSearch Service
607
+ # domain.
608
+ #
609
+ # @option params [required, String] :domain_name
610
+ # The name of an OpenSearch Service domain. Domain names are unique
611
+ # across the domains owned by an account within an Amazon Web Services
612
+ # Region.
613
+ #
614
+ # @option params [Boolean] :dry_run
615
+ # When set to `True`, returns the list of change IDs and properties that
616
+ # will be cancelled without actually cancelling the change.
617
+ #
618
+ # @return [Types::CancelDomainConfigChangeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
619
+ #
620
+ # * {Types::CancelDomainConfigChangeResponse#cancelled_change_ids #cancelled_change_ids} => Array<String>
621
+ # * {Types::CancelDomainConfigChangeResponse#cancelled_change_properties #cancelled_change_properties} => Array<Types::CancelledChangeProperty>
622
+ # * {Types::CancelDomainConfigChangeResponse#dry_run #dry_run} => Boolean
623
+ #
624
+ # @example Request syntax with placeholder values
625
+ #
626
+ # resp = client.cancel_domain_config_change({
627
+ # domain_name: "DomainName", # required
628
+ # dry_run: false,
629
+ # })
630
+ #
631
+ # @example Response structure
632
+ #
633
+ # resp.cancelled_change_ids #=> Array
634
+ # resp.cancelled_change_ids[0] #=> String
635
+ # resp.cancelled_change_properties #=> Array
636
+ # resp.cancelled_change_properties[0].property_name #=> String
637
+ # resp.cancelled_change_properties[0].cancelled_value #=> String
638
+ # resp.cancelled_change_properties[0].active_value #=> String
639
+ # resp.dry_run #=> Boolean
640
+ #
641
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/CancelDomainConfigChange AWS API Documentation
642
+ #
643
+ # @overload cancel_domain_config_change(params = {})
644
+ # @param [Hash] params ({})
645
+ def cancel_domain_config_change(params = {}, options = {})
646
+ req = build_request(:cancel_domain_config_change, params)
647
+ req.send_request(options)
648
+ end
649
+
606
650
  # Cancels a scheduled service software update for an Amazon OpenSearch
607
651
  # Service domain. You can only perform this operation before the
608
652
  # `AutomatedUpdateDate` and when the domain's `UpdateStatus` is
@@ -984,10 +1028,20 @@ module Aws::OpenSearchService
984
1028
  # resp.domain_status.auto_tune_options.use_off_peak_window #=> Boolean
985
1029
  # resp.domain_status.change_progress_details.change_id #=> String
986
1030
  # resp.domain_status.change_progress_details.message #=> String
1031
+ # resp.domain_status.change_progress_details.config_change_status #=> String, one of "Pending", "Initializing", "Validating", "ValidationFailed", "ApplyingChanges", "Completed", "PendingUserInput", "Cancelled"
1032
+ # resp.domain_status.change_progress_details.initiated_by #=> String, one of "CUSTOMER", "SERVICE"
1033
+ # resp.domain_status.change_progress_details.start_time #=> Time
1034
+ # resp.domain_status.change_progress_details.last_updated_time #=> Time
987
1035
  # resp.domain_status.off_peak_window_options.enabled #=> Boolean
988
1036
  # resp.domain_status.off_peak_window_options.off_peak_window.window_start_time.hours #=> Integer
989
1037
  # resp.domain_status.off_peak_window_options.off_peak_window.window_start_time.minutes #=> Integer
990
1038
  # resp.domain_status.software_update_options.auto_software_update_enabled #=> Boolean
1039
+ # resp.domain_status.domain_processing_status #=> String, one of "Creating", "Active", "Modifying", "UpgradingEngineVersion", "UpdatingServiceSoftware", "Isolated", "Deleting"
1040
+ # resp.domain_status.modifying_properties #=> Array
1041
+ # resp.domain_status.modifying_properties[0].name #=> String
1042
+ # resp.domain_status.modifying_properties[0].active_value #=> String
1043
+ # resp.domain_status.modifying_properties[0].pending_value #=> String
1044
+ # resp.domain_status.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
991
1045
  #
992
1046
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/CreateDomain AWS API Documentation
993
1047
  #
@@ -1334,10 +1388,20 @@ module Aws::OpenSearchService
1334
1388
  # resp.domain_status.auto_tune_options.use_off_peak_window #=> Boolean
1335
1389
  # resp.domain_status.change_progress_details.change_id #=> String
1336
1390
  # resp.domain_status.change_progress_details.message #=> String
1391
+ # resp.domain_status.change_progress_details.config_change_status #=> String, one of "Pending", "Initializing", "Validating", "ValidationFailed", "ApplyingChanges", "Completed", "PendingUserInput", "Cancelled"
1392
+ # resp.domain_status.change_progress_details.initiated_by #=> String, one of "CUSTOMER", "SERVICE"
1393
+ # resp.domain_status.change_progress_details.start_time #=> Time
1394
+ # resp.domain_status.change_progress_details.last_updated_time #=> Time
1337
1395
  # resp.domain_status.off_peak_window_options.enabled #=> Boolean
1338
1396
  # resp.domain_status.off_peak_window_options.off_peak_window.window_start_time.hours #=> Integer
1339
1397
  # resp.domain_status.off_peak_window_options.off_peak_window.window_start_time.minutes #=> Integer
1340
1398
  # resp.domain_status.software_update_options.auto_software_update_enabled #=> Boolean
1399
+ # resp.domain_status.domain_processing_status #=> String, one of "Creating", "Active", "Modifying", "UpgradingEngineVersion", "UpdatingServiceSoftware", "Isolated", "Deleting"
1400
+ # resp.domain_status.modifying_properties #=> Array
1401
+ # resp.domain_status.modifying_properties[0].name #=> String
1402
+ # resp.domain_status.modifying_properties[0].active_value #=> String
1403
+ # resp.domain_status.modifying_properties[0].pending_value #=> String
1404
+ # resp.domain_status.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
1341
1405
  #
1342
1406
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DeleteDomain AWS API Documentation
1343
1407
  #
@@ -1617,10 +1681,20 @@ module Aws::OpenSearchService
1617
1681
  # resp.domain_status.auto_tune_options.use_off_peak_window #=> Boolean
1618
1682
  # resp.domain_status.change_progress_details.change_id #=> String
1619
1683
  # resp.domain_status.change_progress_details.message #=> String
1684
+ # resp.domain_status.change_progress_details.config_change_status #=> String, one of "Pending", "Initializing", "Validating", "ValidationFailed", "ApplyingChanges", "Completed", "PendingUserInput", "Cancelled"
1685
+ # resp.domain_status.change_progress_details.initiated_by #=> String, one of "CUSTOMER", "SERVICE"
1686
+ # resp.domain_status.change_progress_details.start_time #=> Time
1687
+ # resp.domain_status.change_progress_details.last_updated_time #=> Time
1620
1688
  # resp.domain_status.off_peak_window_options.enabled #=> Boolean
1621
1689
  # resp.domain_status.off_peak_window_options.off_peak_window.window_start_time.hours #=> Integer
1622
1690
  # resp.domain_status.off_peak_window_options.off_peak_window.window_start_time.minutes #=> Integer
1623
1691
  # resp.domain_status.software_update_options.auto_software_update_enabled #=> Boolean
1692
+ # resp.domain_status.domain_processing_status #=> String, one of "Creating", "Active", "Modifying", "UpgradingEngineVersion", "UpdatingServiceSoftware", "Isolated", "Deleting"
1693
+ # resp.domain_status.modifying_properties #=> Array
1694
+ # resp.domain_status.modifying_properties[0].name #=> String
1695
+ # resp.domain_status.modifying_properties[0].active_value #=> String
1696
+ # resp.domain_status.modifying_properties[0].pending_value #=> String
1697
+ # resp.domain_status.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
1624
1698
  #
1625
1699
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDomain AWS API Documentation
1626
1700
  #
@@ -1728,6 +1802,9 @@ module Aws::OpenSearchService
1728
1802
  # resp.change_progress_status.change_progress_stages[0].status #=> String
1729
1803
  # resp.change_progress_status.change_progress_stages[0].description #=> String
1730
1804
  # resp.change_progress_status.change_progress_stages[0].last_updated #=> Time
1805
+ # resp.change_progress_status.last_updated_time #=> Time
1806
+ # resp.change_progress_status.config_change_status #=> String, one of "Pending", "Initializing", "Validating", "ValidationFailed", "ApplyingChanges", "Completed", "PendingUserInput", "Cancelled"
1807
+ # resp.change_progress_status.initiated_by #=> String, one of "CUSTOMER", "SERVICE"
1731
1808
  #
1732
1809
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDomainChangeProgress AWS API Documentation
1733
1810
  #
@@ -1897,6 +1974,10 @@ module Aws::OpenSearchService
1897
1974
  # resp.domain_config.auto_tune_options.status.pending_deletion #=> Boolean
1898
1975
  # resp.domain_config.change_progress_details.change_id #=> String
1899
1976
  # resp.domain_config.change_progress_details.message #=> String
1977
+ # resp.domain_config.change_progress_details.config_change_status #=> String, one of "Pending", "Initializing", "Validating", "ValidationFailed", "ApplyingChanges", "Completed", "PendingUserInput", "Cancelled"
1978
+ # resp.domain_config.change_progress_details.initiated_by #=> String, one of "CUSTOMER", "SERVICE"
1979
+ # resp.domain_config.change_progress_details.start_time #=> Time
1980
+ # resp.domain_config.change_progress_details.last_updated_time #=> Time
1900
1981
  # resp.domain_config.off_peak_window_options.options.enabled #=> Boolean
1901
1982
  # resp.domain_config.off_peak_window_options.options.off_peak_window.window_start_time.hours #=> Integer
1902
1983
  # resp.domain_config.off_peak_window_options.options.off_peak_window.window_start_time.minutes #=> Integer
@@ -1911,6 +1992,11 @@ module Aws::OpenSearchService
1911
1992
  # resp.domain_config.software_update_options.status.update_version #=> Integer
1912
1993
  # resp.domain_config.software_update_options.status.state #=> String, one of "RequiresIndexDocuments", "Processing", "Active"
1913
1994
  # resp.domain_config.software_update_options.status.pending_deletion #=> Boolean
1995
+ # resp.domain_config.modifying_properties #=> Array
1996
+ # resp.domain_config.modifying_properties[0].name #=> String
1997
+ # resp.domain_config.modifying_properties[0].active_value #=> String
1998
+ # resp.domain_config.modifying_properties[0].pending_value #=> String
1999
+ # resp.domain_config.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
1914
2000
  #
1915
2001
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDomainConfig AWS API Documentation
1916
2002
  #
@@ -2119,10 +2205,20 @@ module Aws::OpenSearchService
2119
2205
  # resp.domain_status_list[0].auto_tune_options.use_off_peak_window #=> Boolean
2120
2206
  # resp.domain_status_list[0].change_progress_details.change_id #=> String
2121
2207
  # resp.domain_status_list[0].change_progress_details.message #=> String
2208
+ # resp.domain_status_list[0].change_progress_details.config_change_status #=> String, one of "Pending", "Initializing", "Validating", "ValidationFailed", "ApplyingChanges", "Completed", "PendingUserInput", "Cancelled"
2209
+ # resp.domain_status_list[0].change_progress_details.initiated_by #=> String, one of "CUSTOMER", "SERVICE"
2210
+ # resp.domain_status_list[0].change_progress_details.start_time #=> Time
2211
+ # resp.domain_status_list[0].change_progress_details.last_updated_time #=> Time
2122
2212
  # resp.domain_status_list[0].off_peak_window_options.enabled #=> Boolean
2123
2213
  # resp.domain_status_list[0].off_peak_window_options.off_peak_window.window_start_time.hours #=> Integer
2124
2214
  # resp.domain_status_list[0].off_peak_window_options.off_peak_window.window_start_time.minutes #=> Integer
2125
2215
  # resp.domain_status_list[0].software_update_options.auto_software_update_enabled #=> Boolean
2216
+ # resp.domain_status_list[0].domain_processing_status #=> String, one of "Creating", "Active", "Modifying", "UpgradingEngineVersion", "UpdatingServiceSoftware", "Isolated", "Deleting"
2217
+ # resp.domain_status_list[0].modifying_properties #=> Array
2218
+ # resp.domain_status_list[0].modifying_properties[0].name #=> String
2219
+ # resp.domain_status_list[0].modifying_properties[0].active_value #=> String
2220
+ # resp.domain_status_list[0].modifying_properties[0].pending_value #=> String
2221
+ # resp.domain_status_list[0].modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
2126
2222
  #
2127
2223
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDomains AWS API Documentation
2128
2224
  #
@@ -2254,10 +2350,20 @@ module Aws::OpenSearchService
2254
2350
  # resp.dry_run_config.auto_tune_options.use_off_peak_window #=> Boolean
2255
2351
  # resp.dry_run_config.change_progress_details.change_id #=> String
2256
2352
  # resp.dry_run_config.change_progress_details.message #=> String
2353
+ # resp.dry_run_config.change_progress_details.config_change_status #=> String, one of "Pending", "Initializing", "Validating", "ValidationFailed", "ApplyingChanges", "Completed", "PendingUserInput", "Cancelled"
2354
+ # resp.dry_run_config.change_progress_details.initiated_by #=> String, one of "CUSTOMER", "SERVICE"
2355
+ # resp.dry_run_config.change_progress_details.start_time #=> Time
2356
+ # resp.dry_run_config.change_progress_details.last_updated_time #=> Time
2257
2357
  # resp.dry_run_config.off_peak_window_options.enabled #=> Boolean
2258
2358
  # resp.dry_run_config.off_peak_window_options.off_peak_window.window_start_time.hours #=> Integer
2259
2359
  # resp.dry_run_config.off_peak_window_options.off_peak_window.window_start_time.minutes #=> Integer
2260
2360
  # resp.dry_run_config.software_update_options.auto_software_update_enabled #=> Boolean
2361
+ # resp.dry_run_config.domain_processing_status #=> String, one of "Creating", "Active", "Modifying", "UpgradingEngineVersion", "UpdatingServiceSoftware", "Isolated", "Deleting"
2362
+ # resp.dry_run_config.modifying_properties #=> Array
2363
+ # resp.dry_run_config.modifying_properties[0].name #=> String
2364
+ # resp.dry_run_config.modifying_properties[0].active_value #=> String
2365
+ # resp.dry_run_config.modifying_properties[0].pending_value #=> String
2366
+ # resp.dry_run_config.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
2261
2367
  # resp.dry_run_results.deployment_type #=> String
2262
2368
  # resp.dry_run_results.message #=> String
2263
2369
  #
@@ -4263,6 +4369,10 @@ module Aws::OpenSearchService
4263
4369
  # resp.domain_config.auto_tune_options.status.pending_deletion #=> Boolean
4264
4370
  # resp.domain_config.change_progress_details.change_id #=> String
4265
4371
  # resp.domain_config.change_progress_details.message #=> String
4372
+ # resp.domain_config.change_progress_details.config_change_status #=> String, one of "Pending", "Initializing", "Validating", "ValidationFailed", "ApplyingChanges", "Completed", "PendingUserInput", "Cancelled"
4373
+ # resp.domain_config.change_progress_details.initiated_by #=> String, one of "CUSTOMER", "SERVICE"
4374
+ # resp.domain_config.change_progress_details.start_time #=> Time
4375
+ # resp.domain_config.change_progress_details.last_updated_time #=> Time
4266
4376
  # resp.domain_config.off_peak_window_options.options.enabled #=> Boolean
4267
4377
  # resp.domain_config.off_peak_window_options.options.off_peak_window.window_start_time.hours #=> Integer
4268
4378
  # resp.domain_config.off_peak_window_options.options.off_peak_window.window_start_time.minutes #=> Integer
@@ -4277,6 +4387,11 @@ module Aws::OpenSearchService
4277
4387
  # resp.domain_config.software_update_options.status.update_version #=> Integer
4278
4388
  # resp.domain_config.software_update_options.status.state #=> String, one of "RequiresIndexDocuments", "Processing", "Active"
4279
4389
  # resp.domain_config.software_update_options.status.pending_deletion #=> Boolean
4390
+ # resp.domain_config.modifying_properties #=> Array
4391
+ # resp.domain_config.modifying_properties[0].name #=> String
4392
+ # resp.domain_config.modifying_properties[0].active_value #=> String
4393
+ # resp.domain_config.modifying_properties[0].pending_value #=> String
4394
+ # resp.domain_config.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
4280
4395
  # resp.dry_run_results.deployment_type #=> String
4281
4396
  # resp.dry_run_results.message #=> String
4282
4397
  # resp.dry_run_progress_status.dry_run_id #=> String
@@ -4543,6 +4658,10 @@ module Aws::OpenSearchService
4543
4658
  # resp.advanced_options["String"] #=> String
4544
4659
  # resp.change_progress_details.change_id #=> String
4545
4660
  # resp.change_progress_details.message #=> String
4661
+ # resp.change_progress_details.config_change_status #=> String, one of "Pending", "Initializing", "Validating", "ValidationFailed", "ApplyingChanges", "Completed", "PendingUserInput", "Cancelled"
4662
+ # resp.change_progress_details.initiated_by #=> String, one of "CUSTOMER", "SERVICE"
4663
+ # resp.change_progress_details.start_time #=> Time
4664
+ # resp.change_progress_details.last_updated_time #=> Time
4546
4665
  #
4547
4666
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/UpgradeDomain AWS API Documentation
4548
4667
  #
@@ -4566,7 +4685,7 @@ module Aws::OpenSearchService
4566
4685
  params: params,
4567
4686
  config: config)
4568
4687
  context[:gem_name] = 'aws-sdk-opensearchservice'
4569
- context[:gem_version] = '1.35.0'
4688
+ context[:gem_version] = '1.37.0'
4570
4689
  Seahorse::Client::Request.new(handlers, context)
4571
4690
  end
4572
4691
 
@@ -60,8 +60,12 @@ module Aws::OpenSearchService
60
60
  BackendRole = Shapes::StringShape.new(name: 'BackendRole')
61
61
  BaseException = Shapes::StructureShape.new(name: 'BaseException')
62
62
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
63
+ CancelDomainConfigChangeRequest = Shapes::StructureShape.new(name: 'CancelDomainConfigChangeRequest')
64
+ CancelDomainConfigChangeResponse = Shapes::StructureShape.new(name: 'CancelDomainConfigChangeResponse')
63
65
  CancelServiceSoftwareUpdateRequest = Shapes::StructureShape.new(name: 'CancelServiceSoftwareUpdateRequest')
64
66
  CancelServiceSoftwareUpdateResponse = Shapes::StructureShape.new(name: 'CancelServiceSoftwareUpdateResponse')
67
+ CancelledChangeProperty = Shapes::StructureShape.new(name: 'CancelledChangeProperty')
68
+ CancelledChangePropertyList = Shapes::ListShape.new(name: 'CancelledChangePropertyList')
65
69
  ChangeProgressDetails = Shapes::StructureShape.new(name: 'ChangeProgressDetails')
66
70
  ChangeProgressStage = Shapes::StructureShape.new(name: 'ChangeProgressStage')
67
71
  ChangeProgressStageList = Shapes::ListShape.new(name: 'ChangeProgressStageList')
@@ -78,6 +82,7 @@ module Aws::OpenSearchService
78
82
  CommitMessage = Shapes::StringShape.new(name: 'CommitMessage')
79
83
  CompatibleVersionsList = Shapes::ListShape.new(name: 'CompatibleVersionsList')
80
84
  CompatibleVersionsMap = Shapes::StructureShape.new(name: 'CompatibleVersionsMap')
85
+ ConfigChangeStatus = Shapes::StringShape.new(name: 'ConfigChangeStatus')
81
86
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
82
87
  ConnectionAlias = Shapes::StringShape.new(name: 'ConnectionAlias')
83
88
  ConnectionId = Shapes::StringShape.new(name: 'ConnectionId')
@@ -174,6 +179,7 @@ module Aws::OpenSearchService
174
179
  DomainPackageDetails = Shapes::StructureShape.new(name: 'DomainPackageDetails')
175
180
  DomainPackageDetailsList = Shapes::ListShape.new(name: 'DomainPackageDetailsList')
176
181
  DomainPackageStatus = Shapes::StringShape.new(name: 'DomainPackageStatus')
182
+ DomainProcessingStatusType = Shapes::StringShape.new(name: 'DomainProcessingStatusType')
177
183
  DomainState = Shapes::StringShape.new(name: 'DomainState')
178
184
  DomainStatus = Shapes::StructureShape.new(name: 'DomainStatus')
179
185
  DomainStatusList = Shapes::ListShape.new(name: 'DomainStatusList')
@@ -200,6 +206,7 @@ module Aws::OpenSearchService
200
206
  Filter = Shapes::StructureShape.new(name: 'Filter')
201
207
  FilterList = Shapes::ListShape.new(name: 'FilterList')
202
208
  GUID = Shapes::StringShape.new(name: 'GUID')
209
+ GUIDList = Shapes::ListShape.new(name: 'GUIDList')
203
210
  GetCompatibleVersionsRequest = Shapes::StructureShape.new(name: 'GetCompatibleVersionsRequest')
204
211
  GetCompatibleVersionsResponse = Shapes::StructureShape.new(name: 'GetCompatibleVersionsResponse')
205
212
  GetDataSourceRequest = Shapes::StructureShape.new(name: 'GetDataSourceRequest')
@@ -219,6 +226,7 @@ module Aws::OpenSearchService
219
226
  InboundConnectionStatus = Shapes::StructureShape.new(name: 'InboundConnectionStatus')
220
227
  InboundConnectionStatusCode = Shapes::StringShape.new(name: 'InboundConnectionStatusCode')
221
228
  InboundConnections = Shapes::ListShape.new(name: 'InboundConnections')
229
+ InitiatedBy = Shapes::StringShape.new(name: 'InitiatedBy')
222
230
  InstanceCount = Shapes::IntegerShape.new(name: 'InstanceCount')
223
231
  InstanceCountLimits = Shapes::StructureShape.new(name: 'InstanceCountLimits')
224
232
  InstanceLimits = Shapes::StructureShape.new(name: 'InstanceLimits')
@@ -280,6 +288,8 @@ module Aws::OpenSearchService
280
288
  MaximumInstanceCount = Shapes::IntegerShape.new(name: 'MaximumInstanceCount')
281
289
  Message = Shapes::StringShape.new(name: 'Message')
282
290
  MinimumInstanceCount = Shapes::IntegerShape.new(name: 'MinimumInstanceCount')
291
+ ModifyingProperties = Shapes::StructureShape.new(name: 'ModifyingProperties')
292
+ ModifyingPropertiesList = Shapes::ListShape.new(name: 'ModifyingPropertiesList')
283
293
  NextToken = Shapes::StringShape.new(name: 'NextToken')
284
294
  NodeId = Shapes::StringShape.new(name: 'NodeId')
285
295
  NodeStatus = Shapes::StringShape.new(name: 'NodeStatus')
@@ -322,6 +332,7 @@ module Aws::OpenSearchService
322
332
  PluginVersion = Shapes::StringShape.new(name: 'PluginVersion')
323
333
  PolicyDocument = Shapes::StringShape.new(name: 'PolicyDocument')
324
334
  PrincipalType = Shapes::StringShape.new(name: 'PrincipalType')
335
+ PropertyValueType = Shapes::StringShape.new(name: 'PropertyValueType')
325
336
  PurchaseReservedInstanceOfferingRequest = Shapes::StructureShape.new(name: 'PurchaseReservedInstanceOfferingRequest')
326
337
  PurchaseReservedInstanceOfferingResponse = Shapes::StructureShape.new(name: 'PurchaseReservedInstanceOfferingResponse')
327
338
  RecurringCharge = Shapes::StructureShape.new(name: 'RecurringCharge')
@@ -582,14 +593,34 @@ module Aws::OpenSearchService
582
593
  BaseException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
583
594
  BaseException.struct_class = Types::BaseException
584
595
 
596
+ CancelDomainConfigChangeRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location: "uri", location_name: "DomainName"))
597
+ CancelDomainConfigChangeRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: DryRun, location_name: "DryRun"))
598
+ CancelDomainConfigChangeRequest.struct_class = Types::CancelDomainConfigChangeRequest
599
+
600
+ CancelDomainConfigChangeResponse.add_member(:cancelled_change_ids, Shapes::ShapeRef.new(shape: GUIDList, location_name: "CancelledChangeIds"))
601
+ CancelDomainConfigChangeResponse.add_member(:cancelled_change_properties, Shapes::ShapeRef.new(shape: CancelledChangePropertyList, location_name: "CancelledChangeProperties"))
602
+ CancelDomainConfigChangeResponse.add_member(:dry_run, Shapes::ShapeRef.new(shape: DryRun, location_name: "DryRun"))
603
+ CancelDomainConfigChangeResponse.struct_class = Types::CancelDomainConfigChangeResponse
604
+
585
605
  CancelServiceSoftwareUpdateRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location_name: "DomainName"))
586
606
  CancelServiceSoftwareUpdateRequest.struct_class = Types::CancelServiceSoftwareUpdateRequest
587
607
 
588
608
  CancelServiceSoftwareUpdateResponse.add_member(:service_software_options, Shapes::ShapeRef.new(shape: ServiceSoftwareOptions, location_name: "ServiceSoftwareOptions"))
589
609
  CancelServiceSoftwareUpdateResponse.struct_class = Types::CancelServiceSoftwareUpdateResponse
590
610
 
611
+ CancelledChangeProperty.add_member(:property_name, Shapes::ShapeRef.new(shape: String, location_name: "PropertyName"))
612
+ CancelledChangeProperty.add_member(:cancelled_value, Shapes::ShapeRef.new(shape: String, location_name: "CancelledValue"))
613
+ CancelledChangeProperty.add_member(:active_value, Shapes::ShapeRef.new(shape: String, location_name: "ActiveValue"))
614
+ CancelledChangeProperty.struct_class = Types::CancelledChangeProperty
615
+
616
+ CancelledChangePropertyList.member = Shapes::ShapeRef.new(shape: CancelledChangeProperty)
617
+
591
618
  ChangeProgressDetails.add_member(:change_id, Shapes::ShapeRef.new(shape: GUID, location_name: "ChangeId"))
592
619
  ChangeProgressDetails.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
620
+ ChangeProgressDetails.add_member(:config_change_status, Shapes::ShapeRef.new(shape: ConfigChangeStatus, location_name: "ConfigChangeStatus"))
621
+ ChangeProgressDetails.add_member(:initiated_by, Shapes::ShapeRef.new(shape: InitiatedBy, location_name: "InitiatedBy"))
622
+ ChangeProgressDetails.add_member(:start_time, Shapes::ShapeRef.new(shape: UpdateTimestamp, location_name: "StartTime"))
623
+ ChangeProgressDetails.add_member(:last_updated_time, Shapes::ShapeRef.new(shape: UpdateTimestamp, location_name: "LastUpdatedTime"))
593
624
  ChangeProgressDetails.struct_class = Types::ChangeProgressDetails
594
625
 
595
626
  ChangeProgressStage.add_member(:name, Shapes::ShapeRef.new(shape: ChangeProgressStageName, location_name: "Name"))
@@ -607,6 +638,9 @@ module Aws::OpenSearchService
607
638
  ChangeProgressStatusDetails.add_member(:completed_properties, Shapes::ShapeRef.new(shape: StringList, location_name: "CompletedProperties"))
608
639
  ChangeProgressStatusDetails.add_member(:total_number_of_stages, Shapes::ShapeRef.new(shape: TotalNumberOfStages, location_name: "TotalNumberOfStages"))
609
640
  ChangeProgressStatusDetails.add_member(:change_progress_stages, Shapes::ShapeRef.new(shape: ChangeProgressStageList, location_name: "ChangeProgressStages"))
641
+ ChangeProgressStatusDetails.add_member(:last_updated_time, Shapes::ShapeRef.new(shape: UpdateTimestamp, location_name: "LastUpdatedTime"))
642
+ ChangeProgressStatusDetails.add_member(:config_change_status, Shapes::ShapeRef.new(shape: ConfigChangeStatus, location_name: "ConfigChangeStatus"))
643
+ ChangeProgressStatusDetails.add_member(:initiated_by, Shapes::ShapeRef.new(shape: InitiatedBy, location_name: "InitiatedBy"))
610
644
  ChangeProgressStatusDetails.struct_class = Types::ChangeProgressStatusDetails
611
645
 
612
646
  ClusterConfig.add_member(:instance_type, Shapes::ShapeRef.new(shape: OpenSearchPartitionInstanceType, location_name: "InstanceType"))
@@ -927,6 +961,7 @@ module Aws::OpenSearchService
927
961
  DomainConfig.add_member(:change_progress_details, Shapes::ShapeRef.new(shape: ChangeProgressDetails, location_name: "ChangeProgressDetails"))
928
962
  DomainConfig.add_member(:off_peak_window_options, Shapes::ShapeRef.new(shape: OffPeakWindowOptionsStatus, location_name: "OffPeakWindowOptions"))
929
963
  DomainConfig.add_member(:software_update_options, Shapes::ShapeRef.new(shape: SoftwareUpdateOptionsStatus, location_name: "SoftwareUpdateOptions"))
964
+ DomainConfig.add_member(:modifying_properties, Shapes::ShapeRef.new(shape: ModifyingPropertiesList, location_name: "ModifyingProperties"))
930
965
  DomainConfig.struct_class = Types::DomainConfig
931
966
 
932
967
  DomainEndpointOptions.add_member(:enforce_https, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnforceHTTPS"))
@@ -1017,6 +1052,8 @@ module Aws::OpenSearchService
1017
1052
  DomainStatus.add_member(:change_progress_details, Shapes::ShapeRef.new(shape: ChangeProgressDetails, location_name: "ChangeProgressDetails"))
1018
1053
  DomainStatus.add_member(:off_peak_window_options, Shapes::ShapeRef.new(shape: OffPeakWindowOptions, location_name: "OffPeakWindowOptions"))
1019
1054
  DomainStatus.add_member(:software_update_options, Shapes::ShapeRef.new(shape: SoftwareUpdateOptions, location_name: "SoftwareUpdateOptions"))
1055
+ DomainStatus.add_member(:domain_processing_status, Shapes::ShapeRef.new(shape: DomainProcessingStatusType, location_name: "DomainProcessingStatus"))
1056
+ DomainStatus.add_member(:modifying_properties, Shapes::ShapeRef.new(shape: ModifyingPropertiesList, location_name: "ModifyingProperties"))
1020
1057
  DomainStatus.struct_class = Types::DomainStatus
1021
1058
 
1022
1059
  DomainStatusList.member = Shapes::ShapeRef.new(shape: DomainStatus)
@@ -1073,6 +1110,8 @@ module Aws::OpenSearchService
1073
1110
 
1074
1111
  FilterList.member = Shapes::ShapeRef.new(shape: Filter)
1075
1112
 
1113
+ GUIDList.member = Shapes::ShapeRef.new(shape: GUID)
1114
+
1076
1115
  GetCompatibleVersionsRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, location: "querystring", location_name: "domainName"))
1077
1116
  GetCompatibleVersionsRequest.struct_class = Types::GetCompatibleVersionsRequest
1078
1117
 
@@ -1300,6 +1339,14 @@ module Aws::OpenSearchService
1300
1339
  MasterUserOptions.add_member(:master_user_password, Shapes::ShapeRef.new(shape: Password, location_name: "MasterUserPassword"))
1301
1340
  MasterUserOptions.struct_class = Types::MasterUserOptions
1302
1341
 
1342
+ ModifyingProperties.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "Name"))
1343
+ ModifyingProperties.add_member(:active_value, Shapes::ShapeRef.new(shape: String, location_name: "ActiveValue"))
1344
+ ModifyingProperties.add_member(:pending_value, Shapes::ShapeRef.new(shape: String, location_name: "PendingValue"))
1345
+ ModifyingProperties.add_member(:value_type, Shapes::ShapeRef.new(shape: PropertyValueType, location_name: "ValueType"))
1346
+ ModifyingProperties.struct_class = Types::ModifyingProperties
1347
+
1348
+ ModifyingPropertiesList.member = Shapes::ShapeRef.new(shape: ModifyingProperties)
1349
+
1303
1350
  NodeToNodeEncryptionOptions.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Enabled"))
1304
1351
  NodeToNodeEncryptionOptions.struct_class = Types::NodeToNodeEncryptionOptions
1305
1352
 
@@ -1784,6 +1831,19 @@ module Aws::OpenSearchService
1784
1831
  o.errors << Shapes::ShapeRef.new(shape: BaseException)
1785
1832
  end)
1786
1833
 
1834
+ api.add_operation(:cancel_domain_config_change, Seahorse::Model::Operation.new.tap do |o|
1835
+ o.name = "CancelDomainConfigChange"
1836
+ o.http_method = "POST"
1837
+ o.http_request_uri = "/2021-01-01/opensearch/domain/{DomainName}/config/cancel"
1838
+ o.input = Shapes::ShapeRef.new(shape: CancelDomainConfigChangeRequest)
1839
+ o.output = Shapes::ShapeRef.new(shape: CancelDomainConfigChangeResponse)
1840
+ o.errors << Shapes::ShapeRef.new(shape: BaseException)
1841
+ o.errors << Shapes::ShapeRef.new(shape: InternalException)
1842
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1843
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1844
+ o.errors << Shapes::ShapeRef.new(shape: DisabledOperationException)
1845
+ end)
1846
+
1787
1847
  api.add_operation(:cancel_service_software_update, Seahorse::Model::Operation.new.tap do |o|
1788
1848
  o.name = "CancelServiceSoftwareUpdate"
1789
1849
  o.http_method = "POST"
@@ -82,6 +82,20 @@ module Aws::OpenSearchService
82
82
  end
83
83
  end
84
84
 
85
+ class CancelDomainConfigChange
86
+ def self.build(context)
87
+ unless context.config.regional_endpoint
88
+ endpoint = context.config.endpoint.to_s
89
+ end
90
+ Aws::OpenSearchService::EndpointParameters.new(
91
+ region: context.config.region,
92
+ use_dual_stack: context.config.use_dualstack_endpoint,
93
+ use_fips: context.config.use_fips_endpoint,
94
+ endpoint: endpoint,
95
+ )
96
+ end
97
+ end
98
+
85
99
  class CancelServiceSoftwareUpdate
86
100
  def self.build(context)
87
101
  unless context.config.regional_endpoint
@@ -14,6 +14,7 @@ module Aws::OpenSearchService
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::OpenSearchService::EndpointProvider',
17
+ rbs_type: 'untyped',
17
18
  docstring: 'The endpoint provider used to resolve endpoints. Any '\
18
19
  'object that responds to `#resolve_endpoint(parameters)` '\
19
20
  'where `parameters` is a Struct similar to '\
@@ -67,6 +68,8 @@ module Aws::OpenSearchService
67
68
  Aws::OpenSearchService::Endpoints::AssociatePackage.build(context)
68
69
  when :authorize_vpc_endpoint_access
69
70
  Aws::OpenSearchService::Endpoints::AuthorizeVpcEndpointAccess.build(context)
71
+ when :cancel_domain_config_change
72
+ Aws::OpenSearchService::Endpoints::CancelDomainConfigChange.build(context)
70
73
  when :cancel_service_software_update
71
74
  Aws::OpenSearchService::Endpoints::CancelServiceSoftwareUpdate.build(context)
72
75
  when :create_domain