aws-sdk-elasticsearchservice 1.118.0 → 1.119.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-elasticsearchservice/client.rb +65 -1
- data/lib/aws-sdk-elasticsearchservice/client_api.rb +23 -0
- data/lib/aws-sdk-elasticsearchservice/types.rb +121 -4
- data/lib/aws-sdk-elasticsearchservice.rb +1 -1
- data/sig/client.rbs +10 -0
- data/sig/types.rbs +25 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 902c6ccb7459647b23360600d590879a712dc53abf869e55b4867904084b643a
|
|
4
|
+
data.tar.gz: 607c305078e398a133835ea3f21e40ec94b81300a94d75c236a2abc630bd30c6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ae07748a1d0d7f00407116da6050de068575c8880b39c1b1f3913563bd9f2739ec5a5c83c24f489d08345293a5c2d207dcd05464017c315b16857a145dbe1e99
|
|
7
|
+
data.tar.gz: 11121965582b56a8b71e705425b86b2c92962f9784a1997d2ccb61d6927c10842b704128b7c322d2347b472195e5252bb7a057cc30b2a2c14f039a142b561f2f
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.119.0
|
|
@@ -789,6 +789,16 @@ module Aws::ElasticsearchService
|
|
|
789
789
|
# @option params [Types::DeploymentStrategyOptions] :deployment_strategy_options
|
|
790
790
|
# Specifies the deployment strategy options.
|
|
791
791
|
#
|
|
792
|
+
# @option params [Types::AutomatedSnapshotPauseRequestOptions] :automated_snapshot_pause_options
|
|
793
|
+
# Specifies the automated snapshot pause options for the domain.
|
|
794
|
+
#
|
|
795
|
+
# Suspending snapshots reduces data protection. You cannot restore your
|
|
796
|
+
# domain to points in time when snapshots are suspended. Use this
|
|
797
|
+
# feature only for short-term operational needs such as migrations or
|
|
798
|
+
# maintenance windows.
|
|
799
|
+
#
|
|
800
|
+
# Maximum suspension duration: 3 days.
|
|
801
|
+
#
|
|
792
802
|
# @return [Types::CreateElasticsearchDomainResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
793
803
|
#
|
|
794
804
|
# * {Types::CreateElasticsearchDomainResponse#domain_status #domain_status} => Types::ElasticsearchDomainStatus
|
|
@@ -903,6 +913,11 @@ module Aws::ElasticsearchService
|
|
|
903
913
|
# deployment_strategy_options: {
|
|
904
914
|
# deployment_strategy: "Default", # required, accepts Default, CapacityOptimized
|
|
905
915
|
# },
|
|
916
|
+
# automated_snapshot_pause_options: {
|
|
917
|
+
# enabled: false, # required
|
|
918
|
+
# start_time: Time.now,
|
|
919
|
+
# end_time: Time.now,
|
|
920
|
+
# },
|
|
906
921
|
# })
|
|
907
922
|
#
|
|
908
923
|
# @example Response structure
|
|
@@ -993,6 +1008,10 @@ module Aws::ElasticsearchService
|
|
|
993
1008
|
# resp.domain_status.modifying_properties[0].pending_value #=> String
|
|
994
1009
|
# resp.domain_status.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
|
|
995
1010
|
# resp.domain_status.deployment_strategy_options.deployment_strategy #=> String, one of "Default", "CapacityOptimized"
|
|
1011
|
+
# resp.domain_status.automated_snapshot_pause_options.enabled #=> Boolean
|
|
1012
|
+
# resp.domain_status.automated_snapshot_pause_options.start_time #=> Time
|
|
1013
|
+
# resp.domain_status.automated_snapshot_pause_options.end_time #=> Time
|
|
1014
|
+
# resp.domain_status.automated_snapshot_pause_options.state #=> String, one of "Active", "Completed", "Scheduled", "Disabled"
|
|
996
1015
|
#
|
|
997
1016
|
# @overload create_elasticsearch_domain(params = {})
|
|
998
1017
|
# @param [Hash] params ({})
|
|
@@ -1263,6 +1282,10 @@ module Aws::ElasticsearchService
|
|
|
1263
1282
|
# resp.domain_status.modifying_properties[0].pending_value #=> String
|
|
1264
1283
|
# resp.domain_status.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
|
|
1265
1284
|
# resp.domain_status.deployment_strategy_options.deployment_strategy #=> String, one of "Default", "CapacityOptimized"
|
|
1285
|
+
# resp.domain_status.automated_snapshot_pause_options.enabled #=> Boolean
|
|
1286
|
+
# resp.domain_status.automated_snapshot_pause_options.start_time #=> Time
|
|
1287
|
+
# resp.domain_status.automated_snapshot_pause_options.end_time #=> Time
|
|
1288
|
+
# resp.domain_status.automated_snapshot_pause_options.state #=> String, one of "Active", "Completed", "Scheduled", "Disabled"
|
|
1266
1289
|
#
|
|
1267
1290
|
# @overload delete_elasticsearch_domain(params = {})
|
|
1268
1291
|
# @param [Hash] params ({})
|
|
@@ -1627,6 +1650,10 @@ module Aws::ElasticsearchService
|
|
|
1627
1650
|
# resp.domain_status.modifying_properties[0].pending_value #=> String
|
|
1628
1651
|
# resp.domain_status.modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
|
|
1629
1652
|
# resp.domain_status.deployment_strategy_options.deployment_strategy #=> String, one of "Default", "CapacityOptimized"
|
|
1653
|
+
# resp.domain_status.automated_snapshot_pause_options.enabled #=> Boolean
|
|
1654
|
+
# resp.domain_status.automated_snapshot_pause_options.start_time #=> Time
|
|
1655
|
+
# resp.domain_status.automated_snapshot_pause_options.end_time #=> Time
|
|
1656
|
+
# resp.domain_status.automated_snapshot_pause_options.state #=> String, one of "Active", "Completed", "Scheduled", "Disabled"
|
|
1630
1657
|
#
|
|
1631
1658
|
# @overload describe_elasticsearch_domain(params = {})
|
|
1632
1659
|
# @param [Hash] params ({})
|
|
@@ -1802,6 +1829,15 @@ module Aws::ElasticsearchService
|
|
|
1802
1829
|
# resp.domain_config.deployment_strategy_options.status.update_version #=> Integer
|
|
1803
1830
|
# resp.domain_config.deployment_strategy_options.status.state #=> String, one of "RequiresIndexDocuments", "Processing", "Active"
|
|
1804
1831
|
# resp.domain_config.deployment_strategy_options.status.pending_deletion #=> Boolean
|
|
1832
|
+
# resp.domain_config.automated_snapshot_pause_options.options.enabled #=> Boolean
|
|
1833
|
+
# resp.domain_config.automated_snapshot_pause_options.options.start_time #=> Time
|
|
1834
|
+
# resp.domain_config.automated_snapshot_pause_options.options.end_time #=> Time
|
|
1835
|
+
# resp.domain_config.automated_snapshot_pause_options.options.state #=> String, one of "Active", "Completed", "Scheduled", "Disabled"
|
|
1836
|
+
# resp.domain_config.automated_snapshot_pause_options.status.creation_date #=> Time
|
|
1837
|
+
# resp.domain_config.automated_snapshot_pause_options.status.update_date #=> Time
|
|
1838
|
+
# resp.domain_config.automated_snapshot_pause_options.status.update_version #=> Integer
|
|
1839
|
+
# resp.domain_config.automated_snapshot_pause_options.status.state #=> String, one of "RequiresIndexDocuments", "Processing", "Active"
|
|
1840
|
+
# resp.domain_config.automated_snapshot_pause_options.status.pending_deletion #=> Boolean
|
|
1805
1841
|
#
|
|
1806
1842
|
# @overload describe_elasticsearch_domain_config(params = {})
|
|
1807
1843
|
# @param [Hash] params ({})
|
|
@@ -1916,6 +1952,10 @@ module Aws::ElasticsearchService
|
|
|
1916
1952
|
# resp.domain_status_list[0].modifying_properties[0].pending_value #=> String
|
|
1917
1953
|
# resp.domain_status_list[0].modifying_properties[0].value_type #=> String, one of "PLAIN_TEXT", "STRINGIFIED_JSON"
|
|
1918
1954
|
# resp.domain_status_list[0].deployment_strategy_options.deployment_strategy #=> String, one of "Default", "CapacityOptimized"
|
|
1955
|
+
# resp.domain_status_list[0].automated_snapshot_pause_options.enabled #=> Boolean
|
|
1956
|
+
# resp.domain_status_list[0].automated_snapshot_pause_options.start_time #=> Time
|
|
1957
|
+
# resp.domain_status_list[0].automated_snapshot_pause_options.end_time #=> Time
|
|
1958
|
+
# resp.domain_status_list[0].automated_snapshot_pause_options.state #=> String, one of "Active", "Completed", "Scheduled", "Disabled"
|
|
1919
1959
|
#
|
|
1920
1960
|
# @overload describe_elasticsearch_domains(params = {})
|
|
1921
1961
|
# @param [Hash] params ({})
|
|
@@ -3106,6 +3146,16 @@ module Aws::ElasticsearchService
|
|
|
3106
3146
|
# @option params [Types::DeploymentStrategyOptions] :deployment_strategy_options
|
|
3107
3147
|
# Specifies the deployment strategy options.
|
|
3108
3148
|
#
|
|
3149
|
+
# @option params [Types::AutomatedSnapshotPauseRequestOptions] :automated_snapshot_pause_options
|
|
3150
|
+
# Specifies the automated snapshot pause options for the domain.
|
|
3151
|
+
#
|
|
3152
|
+
# Suspending snapshots reduces data protection. You cannot restore your
|
|
3153
|
+
# domain to points in time when snapshots are suspended. Use this
|
|
3154
|
+
# feature only for short-term operational needs such as migrations or
|
|
3155
|
+
# maintenance windows.
|
|
3156
|
+
#
|
|
3157
|
+
# Maximum suspension duration: 3 days.
|
|
3158
|
+
#
|
|
3109
3159
|
# @return [Types::UpdateElasticsearchDomainConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3110
3160
|
#
|
|
3111
3161
|
# * {Types::UpdateElasticsearchDomainConfigResponse#domain_config #domain_config} => Types::ElasticsearchDomainConfig
|
|
@@ -3216,6 +3266,11 @@ module Aws::ElasticsearchService
|
|
|
3216
3266
|
# deployment_strategy_options: {
|
|
3217
3267
|
# deployment_strategy: "Default", # required, accepts Default, CapacityOptimized
|
|
3218
3268
|
# },
|
|
3269
|
+
# automated_snapshot_pause_options: {
|
|
3270
|
+
# enabled: false, # required
|
|
3271
|
+
# start_time: Time.now,
|
|
3272
|
+
# end_time: Time.now,
|
|
3273
|
+
# },
|
|
3219
3274
|
# })
|
|
3220
3275
|
#
|
|
3221
3276
|
# @example Response structure
|
|
@@ -3368,6 +3423,15 @@ module Aws::ElasticsearchService
|
|
|
3368
3423
|
# resp.domain_config.deployment_strategy_options.status.update_version #=> Integer
|
|
3369
3424
|
# resp.domain_config.deployment_strategy_options.status.state #=> String, one of "RequiresIndexDocuments", "Processing", "Active"
|
|
3370
3425
|
# resp.domain_config.deployment_strategy_options.status.pending_deletion #=> Boolean
|
|
3426
|
+
# resp.domain_config.automated_snapshot_pause_options.options.enabled #=> Boolean
|
|
3427
|
+
# resp.domain_config.automated_snapshot_pause_options.options.start_time #=> Time
|
|
3428
|
+
# resp.domain_config.automated_snapshot_pause_options.options.end_time #=> Time
|
|
3429
|
+
# resp.domain_config.automated_snapshot_pause_options.options.state #=> String, one of "Active", "Completed", "Scheduled", "Disabled"
|
|
3430
|
+
# resp.domain_config.automated_snapshot_pause_options.status.creation_date #=> Time
|
|
3431
|
+
# resp.domain_config.automated_snapshot_pause_options.status.update_date #=> Time
|
|
3432
|
+
# resp.domain_config.automated_snapshot_pause_options.status.update_version #=> Integer
|
|
3433
|
+
# resp.domain_config.automated_snapshot_pause_options.status.state #=> String, one of "RequiresIndexDocuments", "Processing", "Active"
|
|
3434
|
+
# resp.domain_config.automated_snapshot_pause_options.status.pending_deletion #=> Boolean
|
|
3371
3435
|
# resp.dry_run_results.deployment_type #=> String
|
|
3372
3436
|
# resp.dry_run_results.message #=> String
|
|
3373
3437
|
#
|
|
@@ -3543,7 +3607,7 @@ module Aws::ElasticsearchService
|
|
|
3543
3607
|
tracer: tracer
|
|
3544
3608
|
)
|
|
3545
3609
|
context[:gem_name] = 'aws-sdk-elasticsearchservice'
|
|
3546
|
-
context[:gem_version] = '1.
|
|
3610
|
+
context[:gem_version] = '1.119.0'
|
|
3547
3611
|
Seahorse::Client::Request.new(handlers, context)
|
|
3548
3612
|
end
|
|
3549
3613
|
|
|
@@ -48,6 +48,9 @@ module Aws::ElasticsearchService
|
|
|
48
48
|
AutoTuneState = Shapes::StringShape.new(name: 'AutoTuneState')
|
|
49
49
|
AutoTuneStatus = Shapes::StructureShape.new(name: 'AutoTuneStatus')
|
|
50
50
|
AutoTuneType = Shapes::StringShape.new(name: 'AutoTuneType')
|
|
51
|
+
AutomatedSnapshotPauseOptions = Shapes::StructureShape.new(name: 'AutomatedSnapshotPauseOptions')
|
|
52
|
+
AutomatedSnapshotPauseOptionsStatus = Shapes::StructureShape.new(name: 'AutomatedSnapshotPauseOptionsStatus')
|
|
53
|
+
AutomatedSnapshotPauseRequestOptions = Shapes::StructureShape.new(name: 'AutomatedSnapshotPauseRequestOptions')
|
|
51
54
|
BackendRole = Shapes::StringShape.new(name: 'BackendRole')
|
|
52
55
|
BaseException = Shapes::StructureShape.new(name: 'BaseException')
|
|
53
56
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
|
@@ -265,6 +268,7 @@ module Aws::ElasticsearchService
|
|
|
265
268
|
PackageVersionHistory = Shapes::StructureShape.new(name: 'PackageVersionHistory')
|
|
266
269
|
PackageVersionHistoryList = Shapes::ListShape.new(name: 'PackageVersionHistoryList')
|
|
267
270
|
Password = Shapes::StringShape.new(name: 'Password')
|
|
271
|
+
PauseState = Shapes::StringShape.new(name: 'PauseState')
|
|
268
272
|
PolicyDocument = Shapes::StringShape.new(name: 'PolicyDocument')
|
|
269
273
|
PrincipalType = Shapes::StringShape.new(name: 'PrincipalType')
|
|
270
274
|
PropertyValueType = Shapes::StringShape.new(name: 'PropertyValueType')
|
|
@@ -468,6 +472,21 @@ module Aws::ElasticsearchService
|
|
|
468
472
|
AutoTuneStatus.add_member(:pending_deletion, Shapes::ShapeRef.new(shape: Boolean, location_name: "PendingDeletion"))
|
|
469
473
|
AutoTuneStatus.struct_class = Types::AutoTuneStatus
|
|
470
474
|
|
|
475
|
+
AutomatedSnapshotPauseOptions.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "Enabled"))
|
|
476
|
+
AutomatedSnapshotPauseOptions.add_member(:start_time, Shapes::ShapeRef.new(shape: UpdateTimestamp, location_name: "StartTime"))
|
|
477
|
+
AutomatedSnapshotPauseOptions.add_member(:end_time, Shapes::ShapeRef.new(shape: UpdateTimestamp, location_name: "EndTime"))
|
|
478
|
+
AutomatedSnapshotPauseOptions.add_member(:state, Shapes::ShapeRef.new(shape: PauseState, location_name: "State"))
|
|
479
|
+
AutomatedSnapshotPauseOptions.struct_class = Types::AutomatedSnapshotPauseOptions
|
|
480
|
+
|
|
481
|
+
AutomatedSnapshotPauseOptionsStatus.add_member(:options, Shapes::ShapeRef.new(shape: AutomatedSnapshotPauseOptions, required: true, location_name: "Options"))
|
|
482
|
+
AutomatedSnapshotPauseOptionsStatus.add_member(:status, Shapes::ShapeRef.new(shape: OptionStatus, required: true, location_name: "Status"))
|
|
483
|
+
AutomatedSnapshotPauseOptionsStatus.struct_class = Types::AutomatedSnapshotPauseOptionsStatus
|
|
484
|
+
|
|
485
|
+
AutomatedSnapshotPauseRequestOptions.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "Enabled"))
|
|
486
|
+
AutomatedSnapshotPauseRequestOptions.add_member(:start_time, Shapes::ShapeRef.new(shape: UpdateTimestamp, location_name: "StartTime"))
|
|
487
|
+
AutomatedSnapshotPauseRequestOptions.add_member(:end_time, Shapes::ShapeRef.new(shape: UpdateTimestamp, location_name: "EndTime"))
|
|
488
|
+
AutomatedSnapshotPauseRequestOptions.struct_class = Types::AutomatedSnapshotPauseRequestOptions
|
|
489
|
+
|
|
471
490
|
BaseException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
|
472
491
|
BaseException.struct_class = Types::BaseException
|
|
473
492
|
|
|
@@ -559,6 +578,7 @@ module Aws::ElasticsearchService
|
|
|
559
578
|
CreateElasticsearchDomainRequest.add_member(:auto_tune_options, Shapes::ShapeRef.new(shape: AutoTuneOptionsInput, location_name: "AutoTuneOptions"))
|
|
560
579
|
CreateElasticsearchDomainRequest.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
|
561
580
|
CreateElasticsearchDomainRequest.add_member(:deployment_strategy_options, Shapes::ShapeRef.new(shape: DeploymentStrategyOptions, location_name: "DeploymentStrategyOptions"))
|
|
581
|
+
CreateElasticsearchDomainRequest.add_member(:automated_snapshot_pause_options, Shapes::ShapeRef.new(shape: AutomatedSnapshotPauseRequestOptions, location_name: "AutomatedSnapshotPauseOptions"))
|
|
562
582
|
CreateElasticsearchDomainRequest.struct_class = Types::CreateElasticsearchDomainRequest
|
|
563
583
|
|
|
564
584
|
CreateElasticsearchDomainResponse.add_member(:domain_status, Shapes::ShapeRef.new(shape: ElasticsearchDomainStatus, location_name: "DomainStatus"))
|
|
@@ -831,6 +851,7 @@ module Aws::ElasticsearchService
|
|
|
831
851
|
ElasticsearchDomainConfig.add_member(:change_progress_details, Shapes::ShapeRef.new(shape: ChangeProgressDetails, location_name: "ChangeProgressDetails"))
|
|
832
852
|
ElasticsearchDomainConfig.add_member(:modifying_properties, Shapes::ShapeRef.new(shape: ModifyingPropertiesList, location_name: "ModifyingProperties"))
|
|
833
853
|
ElasticsearchDomainConfig.add_member(:deployment_strategy_options, Shapes::ShapeRef.new(shape: DeploymentStrategyOptionsStatus, location_name: "DeploymentStrategyOptions"))
|
|
854
|
+
ElasticsearchDomainConfig.add_member(:automated_snapshot_pause_options, Shapes::ShapeRef.new(shape: AutomatedSnapshotPauseOptionsStatus, location_name: "AutomatedSnapshotPauseOptions"))
|
|
834
855
|
ElasticsearchDomainConfig.struct_class = Types::ElasticsearchDomainConfig
|
|
835
856
|
|
|
836
857
|
ElasticsearchDomainStatus.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, required: true, location_name: "DomainId"))
|
|
@@ -861,6 +882,7 @@ module Aws::ElasticsearchService
|
|
|
861
882
|
ElasticsearchDomainStatus.add_member(:domain_processing_status, Shapes::ShapeRef.new(shape: DomainProcessingStatusType, location_name: "DomainProcessingStatus"))
|
|
862
883
|
ElasticsearchDomainStatus.add_member(:modifying_properties, Shapes::ShapeRef.new(shape: ModifyingPropertiesList, location_name: "ModifyingProperties"))
|
|
863
884
|
ElasticsearchDomainStatus.add_member(:deployment_strategy_options, Shapes::ShapeRef.new(shape: DeploymentStrategyOptions, location_name: "DeploymentStrategyOptions"))
|
|
885
|
+
ElasticsearchDomainStatus.add_member(:automated_snapshot_pause_options, Shapes::ShapeRef.new(shape: AutomatedSnapshotPauseOptions, location_name: "AutomatedSnapshotPauseOptions"))
|
|
864
886
|
ElasticsearchDomainStatus.struct_class = Types::ElasticsearchDomainStatus
|
|
865
887
|
|
|
866
888
|
ElasticsearchDomainStatusList.member = Shapes::ShapeRef.new(shape: ElasticsearchDomainStatus)
|
|
@@ -1264,6 +1286,7 @@ module Aws::ElasticsearchService
|
|
|
1264
1286
|
UpdateElasticsearchDomainConfigRequest.add_member(:auto_tune_options, Shapes::ShapeRef.new(shape: AutoTuneOptions, location_name: "AutoTuneOptions"))
|
|
1265
1287
|
UpdateElasticsearchDomainConfigRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: DryRun, location_name: "DryRun"))
|
|
1266
1288
|
UpdateElasticsearchDomainConfigRequest.add_member(:deployment_strategy_options, Shapes::ShapeRef.new(shape: DeploymentStrategyOptions, location_name: "DeploymentStrategyOptions"))
|
|
1289
|
+
UpdateElasticsearchDomainConfigRequest.add_member(:automated_snapshot_pause_options, Shapes::ShapeRef.new(shape: AutomatedSnapshotPauseRequestOptions, location_name: "AutomatedSnapshotPauseOptions"))
|
|
1267
1290
|
UpdateElasticsearchDomainConfigRequest.struct_class = Types::UpdateElasticsearchDomainConfigRequest
|
|
1268
1291
|
|
|
1269
1292
|
UpdateElasticsearchDomainConfigResponse.add_member(:domain_config, Shapes::ShapeRef.new(shape: ElasticsearchDomainConfig, required: true, location_name: "DomainConfig"))
|
|
@@ -529,6 +529,88 @@ module Aws::ElasticsearchService
|
|
|
529
529
|
include Aws::Structure
|
|
530
530
|
end
|
|
531
531
|
|
|
532
|
+
# Specifies the automated snapshot pause options for the domain. These
|
|
533
|
+
# options allow you to temporarily pause automated snapshots for a
|
|
534
|
+
# specified time period.
|
|
535
|
+
#
|
|
536
|
+
# @!attribute [rw] enabled
|
|
537
|
+
# Whether automated snapshot pause is enabled for the domain.
|
|
538
|
+
# @return [Boolean]
|
|
539
|
+
#
|
|
540
|
+
# @!attribute [rw] start_time
|
|
541
|
+
# The timestamp at which the automated snapshot pause begins.
|
|
542
|
+
# @return [Time]
|
|
543
|
+
#
|
|
544
|
+
# @!attribute [rw] end_time
|
|
545
|
+
# The timestamp at which the automated snapshot pause ends.
|
|
546
|
+
# @return [Time]
|
|
547
|
+
#
|
|
548
|
+
# @!attribute [rw] state
|
|
549
|
+
# The current state of the automated snapshot pause. Valid values are
|
|
550
|
+
# `Active`, `Completed`, `Scheduled`, and `Disabled`.
|
|
551
|
+
# @return [String]
|
|
552
|
+
#
|
|
553
|
+
class AutomatedSnapshotPauseOptions < Struct.new(
|
|
554
|
+
:enabled,
|
|
555
|
+
:start_time,
|
|
556
|
+
:end_time,
|
|
557
|
+
:state)
|
|
558
|
+
SENSITIVE = []
|
|
559
|
+
include Aws::Structure
|
|
560
|
+
end
|
|
561
|
+
|
|
562
|
+
# The status of automated snapshot pause options for the specified
|
|
563
|
+
# Elasticsearch domain.
|
|
564
|
+
#
|
|
565
|
+
# @!attribute [rw] options
|
|
566
|
+
# Automated snapshot pause options for the specified Elasticsearch
|
|
567
|
+
# domain.
|
|
568
|
+
# @return [Types::AutomatedSnapshotPauseOptions]
|
|
569
|
+
#
|
|
570
|
+
# @!attribute [rw] status
|
|
571
|
+
# The current status of the automated snapshot pause options for the
|
|
572
|
+
# specified Elasticsearch domain.
|
|
573
|
+
# @return [Types::OptionStatus]
|
|
574
|
+
#
|
|
575
|
+
class AutomatedSnapshotPauseOptionsStatus < Struct.new(
|
|
576
|
+
:options,
|
|
577
|
+
:status)
|
|
578
|
+
SENSITIVE = []
|
|
579
|
+
include Aws::Structure
|
|
580
|
+
end
|
|
581
|
+
|
|
582
|
+
# Specifies the automated snapshot pause request options for the domain.
|
|
583
|
+
#
|
|
584
|
+
# Suspending snapshots reduces data protection. You cannot restore your
|
|
585
|
+
# domain to points in time when snapshots are suspended. Use this
|
|
586
|
+
# feature only for short-term operational needs such as migrations or
|
|
587
|
+
# maintenance windows.
|
|
588
|
+
#
|
|
589
|
+
# Maximum suspension duration: 3 days.
|
|
590
|
+
#
|
|
591
|
+
# @!attribute [rw] enabled
|
|
592
|
+
# Whether to enable or disable automated snapshot pause for the
|
|
593
|
+
# domain.
|
|
594
|
+
# @return [Boolean]
|
|
595
|
+
#
|
|
596
|
+
# @!attribute [rw] start_time
|
|
597
|
+
# The timestamp at which the automated snapshot pause should begin.
|
|
598
|
+
# @return [Time]
|
|
599
|
+
#
|
|
600
|
+
# @!attribute [rw] end_time
|
|
601
|
+
# The timestamp at which the automated snapshot pause should end. The
|
|
602
|
+
# maximum allowed duration between `StartTime` and `EndTime` is 3
|
|
603
|
+
# days.
|
|
604
|
+
# @return [Time]
|
|
605
|
+
#
|
|
606
|
+
class AutomatedSnapshotPauseRequestOptions < Struct.new(
|
|
607
|
+
:enabled,
|
|
608
|
+
:start_time,
|
|
609
|
+
:end_time)
|
|
610
|
+
SENSITIVE = []
|
|
611
|
+
include Aws::Structure
|
|
612
|
+
end
|
|
613
|
+
|
|
532
614
|
# An error occurred while processing the request.
|
|
533
615
|
#
|
|
534
616
|
# @!attribute [rw] message
|
|
@@ -959,6 +1041,17 @@ module Aws::ElasticsearchService
|
|
|
959
1041
|
# Specifies the deployment strategy options.
|
|
960
1042
|
# @return [Types::DeploymentStrategyOptions]
|
|
961
1043
|
#
|
|
1044
|
+
# @!attribute [rw] automated_snapshot_pause_options
|
|
1045
|
+
# Specifies the automated snapshot pause options for the domain.
|
|
1046
|
+
#
|
|
1047
|
+
# Suspending snapshots reduces data protection. You cannot restore
|
|
1048
|
+
# your domain to points in time when snapshots are suspended. Use this
|
|
1049
|
+
# feature only for short-term operational needs such as migrations or
|
|
1050
|
+
# maintenance windows.
|
|
1051
|
+
#
|
|
1052
|
+
# Maximum suspension duration: 3 days.
|
|
1053
|
+
# @return [Types::AutomatedSnapshotPauseRequestOptions]
|
|
1054
|
+
#
|
|
962
1055
|
class CreateElasticsearchDomainRequest < Struct.new(
|
|
963
1056
|
:domain_name,
|
|
964
1057
|
:elasticsearch_version,
|
|
@@ -976,7 +1069,8 @@ module Aws::ElasticsearchService
|
|
|
976
1069
|
:advanced_security_options,
|
|
977
1070
|
:auto_tune_options,
|
|
978
1071
|
:tag_list,
|
|
979
|
-
:deployment_strategy_options
|
|
1072
|
+
:deployment_strategy_options,
|
|
1073
|
+
:automated_snapshot_pause_options)
|
|
980
1074
|
SENSITIVE = []
|
|
981
1075
|
include Aws::Structure
|
|
982
1076
|
end
|
|
@@ -2289,6 +2383,10 @@ module Aws::ElasticsearchService
|
|
|
2289
2383
|
# Specifies `DeploymentStrategyOptions` for the domain.
|
|
2290
2384
|
# @return [Types::DeploymentStrategyOptionsStatus]
|
|
2291
2385
|
#
|
|
2386
|
+
# @!attribute [rw] automated_snapshot_pause_options
|
|
2387
|
+
# Specifies `AutomatedSnapshotPauseOptions` for the domain.
|
|
2388
|
+
# @return [Types::AutomatedSnapshotPauseOptionsStatus]
|
|
2389
|
+
#
|
|
2292
2390
|
class ElasticsearchDomainConfig < Struct.new(
|
|
2293
2391
|
:elasticsearch_version,
|
|
2294
2392
|
:elasticsearch_cluster_config,
|
|
@@ -2306,7 +2404,8 @@ module Aws::ElasticsearchService
|
|
|
2306
2404
|
:auto_tune_options,
|
|
2307
2405
|
:change_progress_details,
|
|
2308
2406
|
:modifying_properties,
|
|
2309
|
-
:deployment_strategy_options
|
|
2407
|
+
:deployment_strategy_options,
|
|
2408
|
+
:automated_snapshot_pause_options)
|
|
2310
2409
|
SENSITIVE = []
|
|
2311
2410
|
include Aws::Structure
|
|
2312
2411
|
end
|
|
@@ -2464,6 +2563,11 @@ module Aws::ElasticsearchService
|
|
|
2464
2563
|
# strategy options.
|
|
2465
2564
|
# @return [Types::DeploymentStrategyOptions]
|
|
2466
2565
|
#
|
|
2566
|
+
# @!attribute [rw] automated_snapshot_pause_options
|
|
2567
|
+
# The current status of the Elasticsearch domain's automated snapshot
|
|
2568
|
+
# pause options.
|
|
2569
|
+
# @return [Types::AutomatedSnapshotPauseOptions]
|
|
2570
|
+
#
|
|
2467
2571
|
class ElasticsearchDomainStatus < Struct.new(
|
|
2468
2572
|
:domain_id,
|
|
2469
2573
|
:domain_name,
|
|
@@ -2492,7 +2596,8 @@ module Aws::ElasticsearchService
|
|
|
2492
2596
|
:change_progress_details,
|
|
2493
2597
|
:domain_processing_status,
|
|
2494
2598
|
:modifying_properties,
|
|
2495
|
-
:deployment_strategy_options
|
|
2599
|
+
:deployment_strategy_options,
|
|
2600
|
+
:automated_snapshot_pause_options)
|
|
2496
2601
|
SENSITIVE = []
|
|
2497
2602
|
include Aws::Structure
|
|
2498
2603
|
end
|
|
@@ -4268,6 +4373,17 @@ module Aws::ElasticsearchService
|
|
|
4268
4373
|
# Specifies the deployment strategy options.
|
|
4269
4374
|
# @return [Types::DeploymentStrategyOptions]
|
|
4270
4375
|
#
|
|
4376
|
+
# @!attribute [rw] automated_snapshot_pause_options
|
|
4377
|
+
# Specifies the automated snapshot pause options for the domain.
|
|
4378
|
+
#
|
|
4379
|
+
# Suspending snapshots reduces data protection. You cannot restore
|
|
4380
|
+
# your domain to points in time when snapshots are suspended. Use this
|
|
4381
|
+
# feature only for short-term operational needs such as migrations or
|
|
4382
|
+
# maintenance windows.
|
|
4383
|
+
#
|
|
4384
|
+
# Maximum suspension duration: 3 days.
|
|
4385
|
+
# @return [Types::AutomatedSnapshotPauseRequestOptions]
|
|
4386
|
+
#
|
|
4271
4387
|
class UpdateElasticsearchDomainConfigRequest < Struct.new(
|
|
4272
4388
|
:domain_name,
|
|
4273
4389
|
:elasticsearch_cluster_config,
|
|
@@ -4284,7 +4400,8 @@ module Aws::ElasticsearchService
|
|
|
4284
4400
|
:encryption_at_rest_options,
|
|
4285
4401
|
:auto_tune_options,
|
|
4286
4402
|
:dry_run,
|
|
4287
|
-
:deployment_strategy_options
|
|
4403
|
+
:deployment_strategy_options,
|
|
4404
|
+
:automated_snapshot_pause_options)
|
|
4288
4405
|
SENSITIVE = []
|
|
4289
4406
|
include Aws::Structure
|
|
4290
4407
|
end
|
data/sig/client.rbs
CHANGED
|
@@ -253,6 +253,11 @@ module Aws
|
|
|
253
253
|
],
|
|
254
254
|
?deployment_strategy_options: {
|
|
255
255
|
deployment_strategy: ("Default" | "CapacityOptimized")
|
|
256
|
+
},
|
|
257
|
+
?automated_snapshot_pause_options: {
|
|
258
|
+
enabled: bool,
|
|
259
|
+
start_time: ::Time?,
|
|
260
|
+
end_time: ::Time?
|
|
256
261
|
}
|
|
257
262
|
) -> _CreateElasticsearchDomainResponseSuccess
|
|
258
263
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateElasticsearchDomainResponseSuccess
|
|
@@ -844,6 +849,11 @@ module Aws
|
|
|
844
849
|
?dry_run: bool,
|
|
845
850
|
?deployment_strategy_options: {
|
|
846
851
|
deployment_strategy: ("Default" | "CapacityOptimized")
|
|
852
|
+
},
|
|
853
|
+
?automated_snapshot_pause_options: {
|
|
854
|
+
enabled: bool,
|
|
855
|
+
start_time: ::Time?,
|
|
856
|
+
end_time: ::Time?
|
|
847
857
|
}
|
|
848
858
|
) -> _UpdateElasticsearchDomainConfigResponseSuccess
|
|
849
859
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateElasticsearchDomainConfigResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -150,6 +150,27 @@ module Aws::ElasticsearchService
|
|
|
150
150
|
SENSITIVE: []
|
|
151
151
|
end
|
|
152
152
|
|
|
153
|
+
class AutomatedSnapshotPauseOptions
|
|
154
|
+
attr_accessor enabled: bool
|
|
155
|
+
attr_accessor start_time: ::Time
|
|
156
|
+
attr_accessor end_time: ::Time
|
|
157
|
+
attr_accessor state: ("Active" | "Completed" | "Scheduled" | "Disabled")
|
|
158
|
+
SENSITIVE: []
|
|
159
|
+
end
|
|
160
|
+
|
|
161
|
+
class AutomatedSnapshotPauseOptionsStatus
|
|
162
|
+
attr_accessor options: Types::AutomatedSnapshotPauseOptions
|
|
163
|
+
attr_accessor status: Types::OptionStatus
|
|
164
|
+
SENSITIVE: []
|
|
165
|
+
end
|
|
166
|
+
|
|
167
|
+
class AutomatedSnapshotPauseRequestOptions
|
|
168
|
+
attr_accessor enabled: bool
|
|
169
|
+
attr_accessor start_time: ::Time
|
|
170
|
+
attr_accessor end_time: ::Time
|
|
171
|
+
SENSITIVE: []
|
|
172
|
+
end
|
|
173
|
+
|
|
153
174
|
class BaseException
|
|
154
175
|
attr_accessor message: ::String
|
|
155
176
|
SENSITIVE: []
|
|
@@ -263,6 +284,7 @@ module Aws::ElasticsearchService
|
|
|
263
284
|
attr_accessor auto_tune_options: Types::AutoTuneOptionsInput
|
|
264
285
|
attr_accessor tag_list: ::Array[Types::Tag]
|
|
265
286
|
attr_accessor deployment_strategy_options: Types::DeploymentStrategyOptions
|
|
287
|
+
attr_accessor automated_snapshot_pause_options: Types::AutomatedSnapshotPauseRequestOptions
|
|
266
288
|
SENSITIVE: []
|
|
267
289
|
end
|
|
268
290
|
|
|
@@ -642,6 +664,7 @@ module Aws::ElasticsearchService
|
|
|
642
664
|
attr_accessor change_progress_details: Types::ChangeProgressDetails
|
|
643
665
|
attr_accessor modifying_properties: ::Array[Types::ModifyingProperties]
|
|
644
666
|
attr_accessor deployment_strategy_options: Types::DeploymentStrategyOptionsStatus
|
|
667
|
+
attr_accessor automated_snapshot_pause_options: Types::AutomatedSnapshotPauseOptionsStatus
|
|
645
668
|
SENSITIVE: []
|
|
646
669
|
end
|
|
647
670
|
|
|
@@ -674,6 +697,7 @@ module Aws::ElasticsearchService
|
|
|
674
697
|
attr_accessor domain_processing_status: ("Creating" | "Active" | "Modifying" | "UpgradingEngineVersion" | "UpdatingServiceSoftware" | "Isolated" | "Deleting")
|
|
675
698
|
attr_accessor modifying_properties: ::Array[Types::ModifyingProperties]
|
|
676
699
|
attr_accessor deployment_strategy_options: Types::DeploymentStrategyOptions
|
|
700
|
+
attr_accessor automated_snapshot_pause_options: Types::AutomatedSnapshotPauseOptions
|
|
677
701
|
SENSITIVE: []
|
|
678
702
|
end
|
|
679
703
|
|
|
@@ -1177,6 +1201,7 @@ module Aws::ElasticsearchService
|
|
|
1177
1201
|
attr_accessor auto_tune_options: Types::AutoTuneOptions
|
|
1178
1202
|
attr_accessor dry_run: bool
|
|
1179
1203
|
attr_accessor deployment_strategy_options: Types::DeploymentStrategyOptions
|
|
1204
|
+
attr_accessor automated_snapshot_pause_options: Types::AutomatedSnapshotPauseRequestOptions
|
|
1180
1205
|
SENSITIVE: []
|
|
1181
1206
|
end
|
|
1182
1207
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-elasticsearchservice
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.119.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.247.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.247.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|