aws-sdk-opensearchservice 1.98.0 → 1.99.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: d1c2c38117c6ef81b0efc8072965ad007e287e3a5eb86fd95f65c570fb81de99
4
- data.tar.gz: 04341c0a0b2c954e01fd9a2acf89de4f22f63431c768ef56995c1cdd4021c8f8
3
+ metadata.gz: 17373508f8e5cfd4273aa795335d61b233232b53a99f162a89a956d555b61c55
4
+ data.tar.gz: 48f5da9d17a6f62b02edcf62a24baa2a77ef39c373bd76c78db4644e072ff45e
5
5
  SHA512:
6
- metadata.gz: 3935591dc6b1523e124a6ef5b77b523843f89008aa6e817970ac79786d8abf77ce3aa5e7523ba3a1aeb08390a2f150cd84b34ae5b17045ab45e082cdbf4a65ac
7
- data.tar.gz: 17a3f46c233ee035c0ddb1d0e08d8de0074a1566de0f53e91a236594607bcd3aab1e28a4ba395486b579a2e65ef696b75d90406163369b3f8b5c34e3e2183061
6
+ metadata.gz: 685ddbee57f2b87fecb06581971814a8f5f27b6622c69bc0476f67aa6990bd5122e3426eae032515a2ac19c0557656d9ea0ee1daa9440b0248ec6081bc9d73f7
7
+ data.tar.gz: 609734032462cd1aa8983ae5594a5111a26a9d5544dbdbb3abd7d4cd1eb0dc40aa29896d05505e9cef1a0a72006ff15974042abc9e2091115e6c4a5d46903b66
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.99.0 (2026-05-13)
5
+ ------------------
6
+
7
+ * Feature - Adds support for AutomatedSnapshotPauseOptions.
8
+
4
9
  1.98.0 (2026-05-05)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.98.0
1
+ 1.99.0
@@ -1199,6 +1199,16 @@ module Aws::OpenSearchService
1199
1199
  # @option params [Types::DeploymentStrategyOptions] :deployment_strategy_options
1200
1200
  # Specifies the deployment strategy options for the domain.
1201
1201
  #
1202
+ # @option params [Types::AutomatedSnapshotPauseRequestOptions] :automated_snapshot_pause_options
1203
+ # Specifies the automated snapshot pause options for the domain.
1204
+ #
1205
+ # Suspending snapshots reduces data protection. You cannot restore your
1206
+ # domain to points in time when snapshots are suspended. Use this
1207
+ # feature only for short-term operational needs such as migrations or
1208
+ # maintenance windows.
1209
+ #
1210
+ # Maximum suspension duration: 3 days.
1211
+ #
1202
1212
  # @return [Types::CreateDomainResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1203
1213
  #
1204
1214
  # * {Types::CreateDomainResponse#domain_status #domain_status} => Types::DomainStatus
@@ -1370,6 +1380,11 @@ module Aws::OpenSearchService
1370
1380
  # deployment_strategy_options: {
1371
1381
  # deployment_strategy: "Default", # required, accepts Default, CapacityOptimized
1372
1382
  # },
1383
+ # automated_snapshot_pause_options: {
1384
+ # enabled: false, # required
1385
+ # start_time: Time.now,
1386
+ # end_time: Time.now,
1387
+ # },
1373
1388
  # })
1374
1389
  #
1375
1390
  # @example Response structure
@@ -1495,6 +1510,10 @@ module Aws::OpenSearchService
1495
1510
  # resp.domain_status.aiml_options.s3_vectors_engine.enabled #=> Boolean
1496
1511
  # resp.domain_status.aiml_options.serverless_vector_acceleration.enabled #=> Boolean
1497
1512
  # resp.domain_status.deployment_strategy_options.deployment_strategy #=> String, one of "Default", "CapacityOptimized"
1513
+ # resp.domain_status.automated_snapshot_pause_options.enabled #=> Boolean
1514
+ # resp.domain_status.automated_snapshot_pause_options.start_time #=> Time
1515
+ # resp.domain_status.automated_snapshot_pause_options.end_time #=> Time
1516
+ # resp.domain_status.automated_snapshot_pause_options.state #=> String, one of "Active", "Completed", "Scheduled", "Disabled"
1498
1517
  #
1499
1518
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/CreateDomain AWS API Documentation
1500
1519
  #
@@ -2030,6 +2049,10 @@ module Aws::OpenSearchService
2030
2049
  # resp.domain_status.aiml_options.s3_vectors_engine.enabled #=> Boolean
2031
2050
  # resp.domain_status.aiml_options.serverless_vector_acceleration.enabled #=> Boolean
2032
2051
  # resp.domain_status.deployment_strategy_options.deployment_strategy #=> String, one of "Default", "CapacityOptimized"
2052
+ # resp.domain_status.automated_snapshot_pause_options.enabled #=> Boolean
2053
+ # resp.domain_status.automated_snapshot_pause_options.start_time #=> Time
2054
+ # resp.domain_status.automated_snapshot_pause_options.end_time #=> Time
2055
+ # resp.domain_status.automated_snapshot_pause_options.state #=> String, one of "Active", "Completed", "Scheduled", "Disabled"
2033
2056
  #
2034
2057
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DeleteDomain AWS API Documentation
2035
2058
  #
@@ -2430,6 +2453,10 @@ module Aws::OpenSearchService
2430
2453
  # resp.domain_status.aiml_options.s3_vectors_engine.enabled #=> Boolean
2431
2454
  # resp.domain_status.aiml_options.serverless_vector_acceleration.enabled #=> Boolean
2432
2455
  # resp.domain_status.deployment_strategy_options.deployment_strategy #=> String, one of "Default", "CapacityOptimized"
2456
+ # resp.domain_status.automated_snapshot_pause_options.enabled #=> Boolean
2457
+ # resp.domain_status.automated_snapshot_pause_options.start_time #=> Time
2458
+ # resp.domain_status.automated_snapshot_pause_options.end_time #=> Time
2459
+ # resp.domain_status.automated_snapshot_pause_options.state #=> String, one of "Active", "Completed", "Scheduled", "Disabled"
2433
2460
  #
2434
2461
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDomain AWS API Documentation
2435
2462
  #
@@ -2774,6 +2801,15 @@ module Aws::OpenSearchService
2774
2801
  # resp.domain_config.deployment_strategy_options.status.update_version #=> Integer
2775
2802
  # resp.domain_config.deployment_strategy_options.status.state #=> String, one of "RequiresIndexDocuments", "Processing", "Active"
2776
2803
  # resp.domain_config.deployment_strategy_options.status.pending_deletion #=> Boolean
2804
+ # resp.domain_config.automated_snapshot_pause_options.options.enabled #=> Boolean
2805
+ # resp.domain_config.automated_snapshot_pause_options.options.start_time #=> Time
2806
+ # resp.domain_config.automated_snapshot_pause_options.options.end_time #=> Time
2807
+ # resp.domain_config.automated_snapshot_pause_options.options.state #=> String, one of "Active", "Completed", "Scheduled", "Disabled"
2808
+ # resp.domain_config.automated_snapshot_pause_options.status.creation_date #=> Time
2809
+ # resp.domain_config.automated_snapshot_pause_options.status.update_date #=> Time
2810
+ # resp.domain_config.automated_snapshot_pause_options.status.update_version #=> Integer
2811
+ # resp.domain_config.automated_snapshot_pause_options.status.state #=> String, one of "RequiresIndexDocuments", "Processing", "Active"
2812
+ # resp.domain_config.automated_snapshot_pause_options.status.pending_deletion #=> Boolean
2777
2813
  #
2778
2814
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDomainConfig AWS API Documentation
2779
2815
  #
@@ -3024,6 +3060,10 @@ module Aws::OpenSearchService
3024
3060
  # resp.domain_status_list[0].aiml_options.s3_vectors_engine.enabled #=> Boolean
3025
3061
  # resp.domain_status_list[0].aiml_options.serverless_vector_acceleration.enabled #=> Boolean
3026
3062
  # resp.domain_status_list[0].deployment_strategy_options.deployment_strategy #=> String, one of "Default", "CapacityOptimized"
3063
+ # resp.domain_status_list[0].automated_snapshot_pause_options.enabled #=> Boolean
3064
+ # resp.domain_status_list[0].automated_snapshot_pause_options.start_time #=> Time
3065
+ # resp.domain_status_list[0].automated_snapshot_pause_options.end_time #=> Time
3066
+ # resp.domain_status_list[0].automated_snapshot_pause_options.state #=> String, one of "Active", "Completed", "Scheduled", "Disabled"
3027
3067
  #
3028
3068
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDomains AWS API Documentation
3029
3069
  #
@@ -3197,6 +3237,10 @@ module Aws::OpenSearchService
3197
3237
  # resp.dry_run_config.aiml_options.s3_vectors_engine.enabled #=> Boolean
3198
3238
  # resp.dry_run_config.aiml_options.serverless_vector_acceleration.enabled #=> Boolean
3199
3239
  # resp.dry_run_config.deployment_strategy_options.deployment_strategy #=> String, one of "Default", "CapacityOptimized"
3240
+ # resp.dry_run_config.automated_snapshot_pause_options.enabled #=> Boolean
3241
+ # resp.dry_run_config.automated_snapshot_pause_options.start_time #=> Time
3242
+ # resp.dry_run_config.automated_snapshot_pause_options.end_time #=> Time
3243
+ # resp.dry_run_config.automated_snapshot_pause_options.state #=> String, one of "Active", "Completed", "Scheduled", "Disabled"
3200
3244
  # resp.dry_run_results.deployment_type #=> String
3201
3245
  # resp.dry_run_results.message #=> String
3202
3246
  #
@@ -5729,6 +5773,16 @@ module Aws::OpenSearchService
5729
5773
  # @option params [Types::DeploymentStrategyOptions] :deployment_strategy_options
5730
5774
  # Specifies the deployment strategy options for the domain.
5731
5775
  #
5776
+ # @option params [Types::AutomatedSnapshotPauseRequestOptions] :automated_snapshot_pause_options
5777
+ # Specifies the automated snapshot pause options for the domain.
5778
+ #
5779
+ # Suspending snapshots reduces data protection. You cannot restore your
5780
+ # domain to points in time when snapshots are suspended. Use this
5781
+ # feature only for short-term operational needs such as migrations or
5782
+ # maintenance windows.
5783
+ #
5784
+ # Maximum suspension duration: 3 days.
5785
+ #
5732
5786
  # @return [Types::UpdateDomainConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5733
5787
  #
5734
5788
  # * {Types::UpdateDomainConfigResponse#domain_config #domain_config} => Types::DomainConfig
@@ -5898,6 +5952,11 @@ module Aws::OpenSearchService
5898
5952
  # deployment_strategy_options: {
5899
5953
  # deployment_strategy: "Default", # required, accepts Default, CapacityOptimized
5900
5954
  # },
5955
+ # automated_snapshot_pause_options: {
5956
+ # enabled: false, # required
5957
+ # start_time: Time.now,
5958
+ # end_time: Time.now,
5959
+ # },
5901
5960
  # })
5902
5961
  #
5903
5962
  # @example Response structure
@@ -6108,6 +6167,15 @@ module Aws::OpenSearchService
6108
6167
  # resp.domain_config.deployment_strategy_options.status.update_version #=> Integer
6109
6168
  # resp.domain_config.deployment_strategy_options.status.state #=> String, one of "RequiresIndexDocuments", "Processing", "Active"
6110
6169
  # resp.domain_config.deployment_strategy_options.status.pending_deletion #=> Boolean
6170
+ # resp.domain_config.automated_snapshot_pause_options.options.enabled #=> Boolean
6171
+ # resp.domain_config.automated_snapshot_pause_options.options.start_time #=> Time
6172
+ # resp.domain_config.automated_snapshot_pause_options.options.end_time #=> Time
6173
+ # resp.domain_config.automated_snapshot_pause_options.options.state #=> String, one of "Active", "Completed", "Scheduled", "Disabled"
6174
+ # resp.domain_config.automated_snapshot_pause_options.status.creation_date #=> Time
6175
+ # resp.domain_config.automated_snapshot_pause_options.status.update_date #=> Time
6176
+ # resp.domain_config.automated_snapshot_pause_options.status.update_version #=> Integer
6177
+ # resp.domain_config.automated_snapshot_pause_options.status.state #=> String, one of "RequiresIndexDocuments", "Processing", "Active"
6178
+ # resp.domain_config.automated_snapshot_pause_options.status.pending_deletion #=> Boolean
6111
6179
  # resp.dry_run_results.deployment_type #=> String
6112
6180
  # resp.dry_run_results.message #=> String
6113
6181
  # resp.dry_run_progress_status.dry_run_id #=> String
@@ -6525,7 +6593,7 @@ module Aws::OpenSearchService
6525
6593
  tracer: tracer
6526
6594
  )
6527
6595
  context[:gem_name] = 'aws-sdk-opensearchservice'
6528
- context[:gem_version] = '1.98.0'
6596
+ context[:gem_version] = '1.99.0'
6529
6597
  Seahorse::Client::Request.new(handlers, context)
6530
6598
  end
6531
6599
 
@@ -74,6 +74,9 @@ module Aws::OpenSearchService
74
74
  AutoTuneState = Shapes::StringShape.new(name: 'AutoTuneState')
75
75
  AutoTuneStatus = Shapes::StructureShape.new(name: 'AutoTuneStatus')
76
76
  AutoTuneType = Shapes::StringShape.new(name: 'AutoTuneType')
77
+ AutomatedSnapshotPauseOptions = Shapes::StructureShape.new(name: 'AutomatedSnapshotPauseOptions')
78
+ AutomatedSnapshotPauseOptionsStatus = Shapes::StructureShape.new(name: 'AutomatedSnapshotPauseOptionsStatus')
79
+ AutomatedSnapshotPauseRequestOptions = Shapes::StructureShape.new(name: 'AutomatedSnapshotPauseRequestOptions')
77
80
  AvailabilityZone = Shapes::StringShape.new(name: 'AvailabilityZone')
78
81
  AvailabilityZoneInfo = Shapes::StructureShape.new(name: 'AvailabilityZoneInfo')
79
82
  AvailabilityZoneInfoList = Shapes::ListShape.new(name: 'AvailabilityZoneInfoList')
@@ -456,6 +459,7 @@ module Aws::OpenSearchService
456
459
  PackageVersionHistory = Shapes::StructureShape.new(name: 'PackageVersionHistory')
457
460
  PackageVersionHistoryList = Shapes::ListShape.new(name: 'PackageVersionHistoryList')
458
461
  Password = Shapes::StringShape.new(name: 'Password')
462
+ PauseState = Shapes::StringShape.new(name: 'PauseState')
459
463
  PluginClassName = Shapes::StringShape.new(name: 'PluginClassName')
460
464
  PluginDescription = Shapes::StringShape.new(name: 'PluginDescription')
461
465
  PluginName = Shapes::StringShape.new(name: 'PluginName')
@@ -800,6 +804,21 @@ module Aws::OpenSearchService
800
804
  AutoTuneStatus.add_member(:pending_deletion, Shapes::ShapeRef.new(shape: Boolean, location_name: "PendingDeletion"))
801
805
  AutoTuneStatus.struct_class = Types::AutoTuneStatus
802
806
 
807
+ AutomatedSnapshotPauseOptions.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "Enabled"))
808
+ AutomatedSnapshotPauseOptions.add_member(:start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "StartTime"))
809
+ AutomatedSnapshotPauseOptions.add_member(:end_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "EndTime"))
810
+ AutomatedSnapshotPauseOptions.add_member(:state, Shapes::ShapeRef.new(shape: PauseState, location_name: "State"))
811
+ AutomatedSnapshotPauseOptions.struct_class = Types::AutomatedSnapshotPauseOptions
812
+
813
+ AutomatedSnapshotPauseOptionsStatus.add_member(:options, Shapes::ShapeRef.new(shape: AutomatedSnapshotPauseOptions, required: true, location_name: "Options"))
814
+ AutomatedSnapshotPauseOptionsStatus.add_member(:status, Shapes::ShapeRef.new(shape: OptionStatus, required: true, location_name: "Status"))
815
+ AutomatedSnapshotPauseOptionsStatus.struct_class = Types::AutomatedSnapshotPauseOptionsStatus
816
+
817
+ AutomatedSnapshotPauseRequestOptions.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "Enabled"))
818
+ AutomatedSnapshotPauseRequestOptions.add_member(:start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "StartTime"))
819
+ AutomatedSnapshotPauseRequestOptions.add_member(:end_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "EndTime"))
820
+ AutomatedSnapshotPauseRequestOptions.struct_class = Types::AutomatedSnapshotPauseRequestOptions
821
+
803
822
  AvailabilityZoneInfo.add_member(:availability_zone_name, Shapes::ShapeRef.new(shape: AvailabilityZone, location_name: "AvailabilityZoneName"))
804
823
  AvailabilityZoneInfo.add_member(:zone_status, Shapes::ShapeRef.new(shape: ZoneStatus, location_name: "ZoneStatus"))
805
824
  AvailabilityZoneInfo.add_member(:configured_data_node_count, Shapes::ShapeRef.new(shape: NumberOfNodes, location_name: "ConfiguredDataNodeCount"))
@@ -978,6 +997,7 @@ module Aws::OpenSearchService
978
997
  CreateDomainRequest.add_member(:software_update_options, Shapes::ShapeRef.new(shape: SoftwareUpdateOptions, location_name: "SoftwareUpdateOptions"))
979
998
  CreateDomainRequest.add_member(:aiml_options, Shapes::ShapeRef.new(shape: AIMLOptionsInput, location_name: "AIMLOptions"))
980
999
  CreateDomainRequest.add_member(:deployment_strategy_options, Shapes::ShapeRef.new(shape: DeploymentStrategyOptions, location_name: "DeploymentStrategyOptions"))
1000
+ CreateDomainRequest.add_member(:automated_snapshot_pause_options, Shapes::ShapeRef.new(shape: AutomatedSnapshotPauseRequestOptions, location_name: "AutomatedSnapshotPauseOptions"))
981
1001
  CreateDomainRequest.struct_class = Types::CreateDomainRequest
982
1002
 
983
1003
  CreateDomainResponse.add_member(:domain_status, Shapes::ShapeRef.new(shape: DomainStatus, location_name: "DomainStatus"))
@@ -1324,6 +1344,7 @@ module Aws::OpenSearchService
1324
1344
  DomainConfig.add_member(:modifying_properties, Shapes::ShapeRef.new(shape: ModifyingPropertiesList, location_name: "ModifyingProperties"))
1325
1345
  DomainConfig.add_member(:aiml_options, Shapes::ShapeRef.new(shape: AIMLOptionsStatus, location_name: "AIMLOptions"))
1326
1346
  DomainConfig.add_member(:deployment_strategy_options, Shapes::ShapeRef.new(shape: DeploymentStrategyOptionsStatus, location_name: "DeploymentStrategyOptions"))
1347
+ DomainConfig.add_member(:automated_snapshot_pause_options, Shapes::ShapeRef.new(shape: AutomatedSnapshotPauseOptionsStatus, location_name: "AutomatedSnapshotPauseOptions"))
1327
1348
  DomainConfig.struct_class = Types::DomainConfig
1328
1349
 
1329
1350
  DomainEndpointOptions.add_member(:enforce_https, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnforceHTTPS"))
@@ -1422,6 +1443,7 @@ module Aws::OpenSearchService
1422
1443
  DomainStatus.add_member(:modifying_properties, Shapes::ShapeRef.new(shape: ModifyingPropertiesList, location_name: "ModifyingProperties"))
1423
1444
  DomainStatus.add_member(:aiml_options, Shapes::ShapeRef.new(shape: AIMLOptionsOutput, location_name: "AIMLOptions"))
1424
1445
  DomainStatus.add_member(:deployment_strategy_options, Shapes::ShapeRef.new(shape: DeploymentStrategyOptions, location_name: "DeploymentStrategyOptions"))
1446
+ DomainStatus.add_member(:automated_snapshot_pause_options, Shapes::ShapeRef.new(shape: AutomatedSnapshotPauseOptions, location_name: "AutomatedSnapshotPauseOptions"))
1425
1447
  DomainStatus.struct_class = Types::DomainStatus
1426
1448
 
1427
1449
  DomainStatusList.member = Shapes::ShapeRef.new(shape: DomainStatus)
@@ -2289,6 +2311,7 @@ module Aws::OpenSearchService
2289
2311
  UpdateDomainConfigRequest.add_member(:software_update_options, Shapes::ShapeRef.new(shape: SoftwareUpdateOptions, location_name: "SoftwareUpdateOptions"))
2290
2312
  UpdateDomainConfigRequest.add_member(:aiml_options, Shapes::ShapeRef.new(shape: AIMLOptionsInput, location_name: "AIMLOptions"))
2291
2313
  UpdateDomainConfigRequest.add_member(:deployment_strategy_options, Shapes::ShapeRef.new(shape: DeploymentStrategyOptions, location_name: "DeploymentStrategyOptions"))
2314
+ UpdateDomainConfigRequest.add_member(:automated_snapshot_pause_options, Shapes::ShapeRef.new(shape: AutomatedSnapshotPauseRequestOptions, location_name: "AutomatedSnapshotPauseOptions"))
2292
2315
  UpdateDomainConfigRequest.struct_class = Types::UpdateDomainConfigRequest
2293
2316
 
2294
2317
  UpdateDomainConfigResponse.add_member(:domain_config, Shapes::ShapeRef.new(shape: DomainConfig, required: true, location_name: "DomainConfig"))
@@ -1011,6 +1011,92 @@ module Aws::OpenSearchService
1011
1011
  include Aws::Structure
1012
1012
  end
1013
1013
 
1014
+ # Specifies the automated snapshot pause options for the domain. These
1015
+ # options allow you to temporarily pause automated snapshots for a
1016
+ # specified time period.
1017
+ #
1018
+ # @!attribute [rw] enabled
1019
+ # Whether automated snapshot pause is enabled for the domain.
1020
+ # @return [Boolean]
1021
+ #
1022
+ # @!attribute [rw] start_time
1023
+ # The timestamp at which the automated snapshot pause begins.
1024
+ # @return [Time]
1025
+ #
1026
+ # @!attribute [rw] end_time
1027
+ # The timestamp at which the automated snapshot pause ends.
1028
+ # @return [Time]
1029
+ #
1030
+ # @!attribute [rw] state
1031
+ # The current state of the automated snapshot pause. Valid values are
1032
+ # `Active`, `Completed`, `Scheduled`, and `Disabled`.
1033
+ # @return [String]
1034
+ #
1035
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/AutomatedSnapshotPauseOptions AWS API Documentation
1036
+ #
1037
+ class AutomatedSnapshotPauseOptions < Struct.new(
1038
+ :enabled,
1039
+ :start_time,
1040
+ :end_time,
1041
+ :state)
1042
+ SENSITIVE = []
1043
+ include Aws::Structure
1044
+ end
1045
+
1046
+ # The status of automated snapshot pause options for the domain.
1047
+ #
1048
+ # @!attribute [rw] options
1049
+ # Automated snapshot pause options for the domain.
1050
+ # @return [Types::AutomatedSnapshotPauseOptions]
1051
+ #
1052
+ # @!attribute [rw] status
1053
+ # The current status of the automated snapshot pause options for the
1054
+ # domain.
1055
+ # @return [Types::OptionStatus]
1056
+ #
1057
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/AutomatedSnapshotPauseOptionsStatus AWS API Documentation
1058
+ #
1059
+ class AutomatedSnapshotPauseOptionsStatus < Struct.new(
1060
+ :options,
1061
+ :status)
1062
+ SENSITIVE = []
1063
+ include Aws::Structure
1064
+ end
1065
+
1066
+ # Specifies the automated snapshot pause request options for the domain.
1067
+ #
1068
+ # Suspending snapshots reduces data protection. You cannot restore your
1069
+ # domain to points in time when snapshots are suspended. Use this
1070
+ # feature only for short-term operational needs such as migrations or
1071
+ # maintenance windows.
1072
+ #
1073
+ # Maximum suspension duration: 3 days.
1074
+ #
1075
+ # @!attribute [rw] enabled
1076
+ # Whether to enable or disable automated snapshot pause for the
1077
+ # domain.
1078
+ # @return [Boolean]
1079
+ #
1080
+ # @!attribute [rw] start_time
1081
+ # The timestamp at which the automated snapshot pause should begin.
1082
+ # @return [Time]
1083
+ #
1084
+ # @!attribute [rw] end_time
1085
+ # The timestamp at which the automated snapshot pause should end. The
1086
+ # maximum allowed duration between `StartTime` and `EndTime` is 3
1087
+ # days.
1088
+ # @return [Time]
1089
+ #
1090
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/AutomatedSnapshotPauseRequestOptions AWS API Documentation
1091
+ #
1092
+ class AutomatedSnapshotPauseRequestOptions < Struct.new(
1093
+ :enabled,
1094
+ :start_time,
1095
+ :end_time)
1096
+ SENSITIVE = []
1097
+ include Aws::Structure
1098
+ end
1099
+
1014
1100
  # Information about an Availability Zone on a domain.
1015
1101
  #
1016
1102
  # @!attribute [rw] availability_zone_name
@@ -1928,6 +2014,17 @@ module Aws::OpenSearchService
1928
2014
  # Specifies the deployment strategy options for the domain.
1929
2015
  # @return [Types::DeploymentStrategyOptions]
1930
2016
  #
2017
+ # @!attribute [rw] automated_snapshot_pause_options
2018
+ # Specifies the automated snapshot pause options for the domain.
2019
+ #
2020
+ # Suspending snapshots reduces data protection. You cannot restore
2021
+ # your domain to points in time when snapshots are suspended. Use this
2022
+ # feature only for short-term operational needs such as migrations or
2023
+ # maintenance windows.
2024
+ #
2025
+ # Maximum suspension duration: 3 days.
2026
+ # @return [Types::AutomatedSnapshotPauseRequestOptions]
2027
+ #
1931
2028
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/CreateDomainRequest AWS API Documentation
1932
2029
  #
1933
2030
  class CreateDomainRequest < Struct.new(
@@ -1952,7 +2049,8 @@ module Aws::OpenSearchService
1952
2049
  :off_peak_window_options,
1953
2050
  :software_update_options,
1954
2051
  :aiml_options,
1955
- :deployment_strategy_options)
2052
+ :deployment_strategy_options,
2053
+ :automated_snapshot_pause_options)
1956
2054
  SENSITIVE = []
1957
2055
  include Aws::Structure
1958
2056
  end
@@ -3649,6 +3747,10 @@ module Aws::OpenSearchService
3649
3747
  # Specifies `DeploymentStrategyOptions` for the domain.
3650
3748
  # @return [Types::DeploymentStrategyOptionsStatus]
3651
3749
  #
3750
+ # @!attribute [rw] automated_snapshot_pause_options
3751
+ # Specifies `AutomatedSnapshotPauseOptions` for the domain.
3752
+ # @return [Types::AutomatedSnapshotPauseOptionsStatus]
3753
+ #
3652
3754
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DomainConfig AWS API Documentation
3653
3755
  #
3654
3756
  class DomainConfig < Struct.new(
@@ -3673,7 +3775,8 @@ module Aws::OpenSearchService
3673
3775
  :software_update_options,
3674
3776
  :modifying_properties,
3675
3777
  :aiml_options,
3676
- :deployment_strategy_options)
3778
+ :deployment_strategy_options,
3779
+ :automated_snapshot_pause_options)
3677
3780
  SENSITIVE = []
3678
3781
  include Aws::Structure
3679
3782
  end
@@ -4133,6 +4236,11 @@ module Aws::OpenSearchService
4133
4236
  # The current status of the domain's deployment strategy options.
4134
4237
  # @return [Types::DeploymentStrategyOptions]
4135
4238
  #
4239
+ # @!attribute [rw] automated_snapshot_pause_options
4240
+ # The current status of the domain's automated snapshot pause
4241
+ # options.
4242
+ # @return [Types::AutomatedSnapshotPauseOptions]
4243
+ #
4136
4244
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DomainStatus AWS API Documentation
4137
4245
  #
4138
4246
  class DomainStatus < Struct.new(
@@ -4170,7 +4278,8 @@ module Aws::OpenSearchService
4170
4278
  :domain_processing_status,
4171
4279
  :modifying_properties,
4172
4280
  :aiml_options,
4173
- :deployment_strategy_options)
4281
+ :deployment_strategy_options,
4282
+ :automated_snapshot_pause_options)
4174
4283
  SENSITIVE = []
4175
4284
  include Aws::Structure
4176
4285
  end
@@ -8538,6 +8647,17 @@ module Aws::OpenSearchService
8538
8647
  # Specifies the deployment strategy options for the domain.
8539
8648
  # @return [Types::DeploymentStrategyOptions]
8540
8649
  #
8650
+ # @!attribute [rw] automated_snapshot_pause_options
8651
+ # Specifies the automated snapshot pause options for the domain.
8652
+ #
8653
+ # Suspending snapshots reduces data protection. You cannot restore
8654
+ # your domain to points in time when snapshots are suspended. Use this
8655
+ # feature only for short-term operational needs such as migrations or
8656
+ # maintenance windows.
8657
+ #
8658
+ # Maximum suspension duration: 3 days.
8659
+ # @return [Types::AutomatedSnapshotPauseRequestOptions]
8660
+ #
8541
8661
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/UpdateDomainConfigRequest AWS API Documentation
8542
8662
  #
8543
8663
  class UpdateDomainConfigRequest < Struct.new(
@@ -8562,7 +8682,8 @@ module Aws::OpenSearchService
8562
8682
  :off_peak_window_options,
8563
8683
  :software_update_options,
8564
8684
  :aiml_options,
8565
- :deployment_strategy_options)
8685
+ :deployment_strategy_options,
8686
+ :automated_snapshot_pause_options)
8566
8687
  SENSITIVE = []
8567
8688
  include Aws::Structure
8568
8689
  end
@@ -54,7 +54,7 @@ module Aws::OpenSearchService
54
54
  autoload :EndpointProvider, 'aws-sdk-opensearchservice/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-opensearchservice/endpoints'
56
56
 
57
- GEM_VERSION = '1.98.0'
57
+ GEM_VERSION = '1.99.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -435,6 +435,11 @@ module Aws
435
435
  },
436
436
  ?deployment_strategy_options: {
437
437
  deployment_strategy: ("Default" | "CapacityOptimized")
438
+ },
439
+ ?automated_snapshot_pause_options: {
440
+ enabled: bool,
441
+ start_time: ::Time?,
442
+ end_time: ::Time?
438
443
  }
439
444
  ) -> _CreateDomainResponseSuccess
440
445
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDomainResponseSuccess
@@ -1557,6 +1562,11 @@ module Aws
1557
1562
  },
1558
1563
  ?deployment_strategy_options: {
1559
1564
  deployment_strategy: ("Default" | "CapacityOptimized")
1565
+ },
1566
+ ?automated_snapshot_pause_options: {
1567
+ enabled: bool,
1568
+ start_time: ::Time?,
1569
+ end_time: ::Time?
1560
1570
  }
1561
1571
  ) -> _UpdateDomainConfigResponseSuccess
1562
1572
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDomainConfigResponseSuccess
data/sig/types.rbs CHANGED
@@ -248,6 +248,27 @@ module Aws::OpenSearchService
248
248
  SENSITIVE: []
249
249
  end
250
250
 
251
+ class AutomatedSnapshotPauseOptions
252
+ attr_accessor enabled: bool
253
+ attr_accessor start_time: ::Time
254
+ attr_accessor end_time: ::Time
255
+ attr_accessor state: ("Active" | "Completed" | "Scheduled" | "Disabled")
256
+ SENSITIVE: []
257
+ end
258
+
259
+ class AutomatedSnapshotPauseOptionsStatus
260
+ attr_accessor options: Types::AutomatedSnapshotPauseOptions
261
+ attr_accessor status: Types::OptionStatus
262
+ SENSITIVE: []
263
+ end
264
+
265
+ class AutomatedSnapshotPauseRequestOptions
266
+ attr_accessor enabled: bool
267
+ attr_accessor start_time: ::Time
268
+ attr_accessor end_time: ::Time
269
+ SENSITIVE: []
270
+ end
271
+
251
272
  class AvailabilityZoneInfo
252
273
  attr_accessor availability_zone_name: ::String
253
274
  attr_accessor zone_status: ("Active" | "StandBy" | "NotAvailable")
@@ -473,6 +494,7 @@ module Aws::OpenSearchService
473
494
  attr_accessor software_update_options: Types::SoftwareUpdateOptions
474
495
  attr_accessor aiml_options: Types::AIMLOptionsInput
475
496
  attr_accessor deployment_strategy_options: Types::DeploymentStrategyOptions
497
+ attr_accessor automated_snapshot_pause_options: Types::AutomatedSnapshotPauseRequestOptions
476
498
  SENSITIVE: []
477
499
  end
478
500
 
@@ -964,6 +986,7 @@ module Aws::OpenSearchService
964
986
  attr_accessor modifying_properties: ::Array[Types::ModifyingProperties]
965
987
  attr_accessor aiml_options: Types::AIMLOptionsStatus
966
988
  attr_accessor deployment_strategy_options: Types::DeploymentStrategyOptionsStatus
989
+ attr_accessor automated_snapshot_pause_options: Types::AutomatedSnapshotPauseOptionsStatus
967
990
  SENSITIVE: []
968
991
  end
969
992
 
@@ -1068,6 +1091,7 @@ module Aws::OpenSearchService
1068
1091
  attr_accessor modifying_properties: ::Array[Types::ModifyingProperties]
1069
1092
  attr_accessor aiml_options: Types::AIMLOptionsOutput
1070
1093
  attr_accessor deployment_strategy_options: Types::DeploymentStrategyOptions
1094
+ attr_accessor automated_snapshot_pause_options: Types::AutomatedSnapshotPauseOptions
1071
1095
  SENSITIVE: []
1072
1096
  end
1073
1097
 
@@ -2186,6 +2210,7 @@ module Aws::OpenSearchService
2186
2210
  attr_accessor software_update_options: Types::SoftwareUpdateOptions
2187
2211
  attr_accessor aiml_options: Types::AIMLOptionsInput
2188
2212
  attr_accessor deployment_strategy_options: Types::DeploymentStrategyOptions
2213
+ attr_accessor automated_snapshot_pause_options: Types::AutomatedSnapshotPauseRequestOptions
2189
2214
  SENSITIVE: []
2190
2215
  end
2191
2216
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-opensearchservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.98.0
4
+ version: 1.99.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.244.0
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.244.0
31
+ version: 3.247.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement