aws-sdk-opensearchservice 1.97.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: 9771a2678617fc71a88d9e60f167e4879c159389ce7af13a345148217c03ff92
4
- data.tar.gz: b754ec37b47b767159c050857be0a61a5f8bcf6a00817e4aa730607e62443fd8
3
+ metadata.gz: 17373508f8e5cfd4273aa795335d61b233232b53a99f162a89a956d555b61c55
4
+ data.tar.gz: 48f5da9d17a6f62b02edcf62a24baa2a77ef39c373bd76c78db4644e072ff45e
5
5
  SHA512:
6
- metadata.gz: c78f6903ed315ce0e1a6fb2fdc61a8932079fbb0949298776386d3acc38c9be077b075017d615e6098a049e417c9e73d03d9dcf7bfe0f655bdb47e499f020c06
7
- data.tar.gz: e1d583f580b14461820191b73c6d573caad433384d7a629ec912a47d539cd631d98e6230768a0074c5f07e958072731962c9c1fe160b39ba7029a0b1e0d79d20
6
+ metadata.gz: 685ddbee57f2b87fecb06581971814a8f5f27b6622c69bc0476f67aa6990bd5122e3426eae032515a2ac19c0557656d9ea0ee1daa9440b0248ec6081bc9d73f7
7
+ data.tar.gz: 609734032462cd1aa8983ae5594a5111a26a9d5544dbdbb3abd7d4cd1eb0dc40aa29896d05505e9cef1a0a72006ff15974042abc9e2091115e6c4a5d46903b66
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.99.0 (2026-05-13)
5
+ ------------------
6
+
7
+ * Feature - Adds support for AutomatedSnapshotPauseOptions.
8
+
9
+ 1.98.0 (2026-05-05)
10
+ ------------------
11
+
12
+ * Feature - Amazon OpenSearch Service now supports VPC egress, enabling outbound traffic from your OpenSearch domain to route privately through your VPC instead of the public internet.
13
+
4
14
  1.97.0 (2026-04-27)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.97.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
@@ -1251,6 +1261,7 @@ module Aws::OpenSearchService
1251
1261
  # vpc_options: {
1252
1262
  # subnet_ids: ["String"],
1253
1263
  # security_group_ids: ["String"],
1264
+ # egress_enabled: false,
1254
1265
  # },
1255
1266
  # cognito_options: {
1256
1267
  # enabled: false,
@@ -1369,6 +1380,11 @@ module Aws::OpenSearchService
1369
1380
  # deployment_strategy_options: {
1370
1381
  # deployment_strategy: "Default", # required, accepts Default, CapacityOptimized
1371
1382
  # },
1383
+ # automated_snapshot_pause_options: {
1384
+ # enabled: false, # required
1385
+ # start_time: Time.now,
1386
+ # end_time: Time.now,
1387
+ # },
1372
1388
  # })
1373
1389
  #
1374
1390
  # @example Response structure
@@ -1418,6 +1434,7 @@ module Aws::OpenSearchService
1418
1434
  # resp.domain_status.vpc_options.availability_zones[0] #=> String
1419
1435
  # resp.domain_status.vpc_options.security_group_ids #=> Array
1420
1436
  # resp.domain_status.vpc_options.security_group_ids[0] #=> String
1437
+ # resp.domain_status.vpc_options.egress_enabled #=> Boolean
1421
1438
  # resp.domain_status.cognito_options.enabled #=> Boolean
1422
1439
  # resp.domain_status.cognito_options.user_pool_id #=> String
1423
1440
  # resp.domain_status.cognito_options.identity_pool_id #=> String
@@ -1493,6 +1510,10 @@ module Aws::OpenSearchService
1493
1510
  # resp.domain_status.aiml_options.s3_vectors_engine.enabled #=> Boolean
1494
1511
  # resp.domain_status.aiml_options.serverless_vector_acceleration.enabled #=> Boolean
1495
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"
1496
1517
  #
1497
1518
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/CreateDomain AWS API Documentation
1498
1519
  #
@@ -1776,6 +1797,7 @@ module Aws::OpenSearchService
1776
1797
  # vpc_options: { # required
1777
1798
  # subnet_ids: ["String"],
1778
1799
  # security_group_ids: ["String"],
1800
+ # egress_enabled: false,
1779
1801
  # },
1780
1802
  # client_token: "ClientToken",
1781
1803
  # })
@@ -1792,6 +1814,7 @@ module Aws::OpenSearchService
1792
1814
  # resp.vpc_endpoint.vpc_options.availability_zones[0] #=> String
1793
1815
  # resp.vpc_endpoint.vpc_options.security_group_ids #=> Array
1794
1816
  # resp.vpc_endpoint.vpc_options.security_group_ids[0] #=> String
1817
+ # resp.vpc_endpoint.vpc_options.egress_enabled #=> Boolean
1795
1818
  # resp.vpc_endpoint.status #=> String, one of "CREATING", "CREATE_FAILED", "ACTIVE", "UPDATING", "UPDATE_FAILED", "DELETING", "DELETE_FAILED"
1796
1819
  # resp.vpc_endpoint.endpoint #=> String
1797
1820
  #
@@ -1950,6 +1973,7 @@ module Aws::OpenSearchService
1950
1973
  # resp.domain_status.vpc_options.availability_zones[0] #=> String
1951
1974
  # resp.domain_status.vpc_options.security_group_ids #=> Array
1952
1975
  # resp.domain_status.vpc_options.security_group_ids[0] #=> String
1976
+ # resp.domain_status.vpc_options.egress_enabled #=> Boolean
1953
1977
  # resp.domain_status.cognito_options.enabled #=> Boolean
1954
1978
  # resp.domain_status.cognito_options.user_pool_id #=> String
1955
1979
  # resp.domain_status.cognito_options.identity_pool_id #=> String
@@ -2025,6 +2049,10 @@ module Aws::OpenSearchService
2025
2049
  # resp.domain_status.aiml_options.s3_vectors_engine.enabled #=> Boolean
2026
2050
  # resp.domain_status.aiml_options.serverless_vector_acceleration.enabled #=> Boolean
2027
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"
2028
2056
  #
2029
2057
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DeleteDomain AWS API Documentation
2030
2058
  #
@@ -2349,6 +2377,7 @@ module Aws::OpenSearchService
2349
2377
  # resp.domain_status.vpc_options.availability_zones[0] #=> String
2350
2378
  # resp.domain_status.vpc_options.security_group_ids #=> Array
2351
2379
  # resp.domain_status.vpc_options.security_group_ids[0] #=> String
2380
+ # resp.domain_status.vpc_options.egress_enabled #=> Boolean
2352
2381
  # resp.domain_status.cognito_options.enabled #=> Boolean
2353
2382
  # resp.domain_status.cognito_options.user_pool_id #=> String
2354
2383
  # resp.domain_status.cognito_options.identity_pool_id #=> String
@@ -2424,6 +2453,10 @@ module Aws::OpenSearchService
2424
2453
  # resp.domain_status.aiml_options.s3_vectors_engine.enabled #=> Boolean
2425
2454
  # resp.domain_status.aiml_options.serverless_vector_acceleration.enabled #=> Boolean
2426
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"
2427
2460
  #
2428
2461
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDomain AWS API Documentation
2429
2462
  #
@@ -2625,6 +2658,7 @@ module Aws::OpenSearchService
2625
2658
  # resp.domain_config.vpc_options.options.availability_zones[0] #=> String
2626
2659
  # resp.domain_config.vpc_options.options.security_group_ids #=> Array
2627
2660
  # resp.domain_config.vpc_options.options.security_group_ids[0] #=> String
2661
+ # resp.domain_config.vpc_options.options.egress_enabled #=> Boolean
2628
2662
  # resp.domain_config.vpc_options.status.creation_date #=> Time
2629
2663
  # resp.domain_config.vpc_options.status.update_date #=> Time
2630
2664
  # resp.domain_config.vpc_options.status.update_version #=> Integer
@@ -2767,6 +2801,15 @@ module Aws::OpenSearchService
2767
2801
  # resp.domain_config.deployment_strategy_options.status.update_version #=> Integer
2768
2802
  # resp.domain_config.deployment_strategy_options.status.state #=> String, one of "RequiresIndexDocuments", "Processing", "Active"
2769
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
2770
2813
  #
2771
2814
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDomainConfig AWS API Documentation
2772
2815
  #
@@ -2941,6 +2984,7 @@ module Aws::OpenSearchService
2941
2984
  # resp.domain_status_list[0].vpc_options.availability_zones[0] #=> String
2942
2985
  # resp.domain_status_list[0].vpc_options.security_group_ids #=> Array
2943
2986
  # resp.domain_status_list[0].vpc_options.security_group_ids[0] #=> String
2987
+ # resp.domain_status_list[0].vpc_options.egress_enabled #=> Boolean
2944
2988
  # resp.domain_status_list[0].cognito_options.enabled #=> Boolean
2945
2989
  # resp.domain_status_list[0].cognito_options.user_pool_id #=> String
2946
2990
  # resp.domain_status_list[0].cognito_options.identity_pool_id #=> String
@@ -3016,6 +3060,10 @@ module Aws::OpenSearchService
3016
3060
  # resp.domain_status_list[0].aiml_options.s3_vectors_engine.enabled #=> Boolean
3017
3061
  # resp.domain_status_list[0].aiml_options.serverless_vector_acceleration.enabled #=> Boolean
3018
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"
3019
3067
  #
3020
3068
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDomains AWS API Documentation
3021
3069
  #
@@ -3113,6 +3161,7 @@ module Aws::OpenSearchService
3113
3161
  # resp.dry_run_config.vpc_options.availability_zones[0] #=> String
3114
3162
  # resp.dry_run_config.vpc_options.security_group_ids #=> Array
3115
3163
  # resp.dry_run_config.vpc_options.security_group_ids[0] #=> String
3164
+ # resp.dry_run_config.vpc_options.egress_enabled #=> Boolean
3116
3165
  # resp.dry_run_config.cognito_options.enabled #=> Boolean
3117
3166
  # resp.dry_run_config.cognito_options.user_pool_id #=> String
3118
3167
  # resp.dry_run_config.cognito_options.identity_pool_id #=> String
@@ -3188,6 +3237,10 @@ module Aws::OpenSearchService
3188
3237
  # resp.dry_run_config.aiml_options.s3_vectors_engine.enabled #=> Boolean
3189
3238
  # resp.dry_run_config.aiml_options.serverless_vector_acceleration.enabled #=> Boolean
3190
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"
3191
3244
  # resp.dry_run_results.deployment_type #=> String
3192
3245
  # resp.dry_run_results.message #=> String
3193
3246
  #
@@ -3676,6 +3729,7 @@ module Aws::OpenSearchService
3676
3729
  # resp.vpc_endpoints[0].vpc_options.availability_zones[0] #=> String
3677
3730
  # resp.vpc_endpoints[0].vpc_options.security_group_ids #=> Array
3678
3731
  # resp.vpc_endpoints[0].vpc_options.security_group_ids[0] #=> String
3732
+ # resp.vpc_endpoints[0].vpc_options.egress_enabled #=> Boolean
3679
3733
  # resp.vpc_endpoints[0].status #=> String, one of "CREATING", "CREATE_FAILED", "ACTIVE", "UPDATING", "UPDATE_FAILED", "DELETING", "DELETE_FAILED"
3680
3734
  # resp.vpc_endpoints[0].endpoint #=> String
3681
3735
  # resp.vpc_endpoint_errors #=> Array
@@ -5719,6 +5773,16 @@ module Aws::OpenSearchService
5719
5773
  # @option params [Types::DeploymentStrategyOptions] :deployment_strategy_options
5720
5774
  # Specifies the deployment strategy options for the domain.
5721
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
+ #
5722
5786
  # @return [Types::UpdateDomainConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5723
5787
  #
5724
5788
  # * {Types::UpdateDomainConfigResponse#domain_config #domain_config} => Types::DomainConfig
@@ -5770,6 +5834,7 @@ module Aws::OpenSearchService
5770
5834
  # vpc_options: {
5771
5835
  # subnet_ids: ["String"],
5772
5836
  # security_group_ids: ["String"],
5837
+ # egress_enabled: false,
5773
5838
  # },
5774
5839
  # cognito_options: {
5775
5840
  # enabled: false,
@@ -5887,6 +5952,11 @@ module Aws::OpenSearchService
5887
5952
  # deployment_strategy_options: {
5888
5953
  # deployment_strategy: "Default", # required, accepts Default, CapacityOptimized
5889
5954
  # },
5955
+ # automated_snapshot_pause_options: {
5956
+ # enabled: false, # required
5957
+ # start_time: Time.now,
5958
+ # end_time: Time.now,
5959
+ # },
5890
5960
  # })
5891
5961
  #
5892
5962
  # @example Response structure
@@ -5954,6 +6024,7 @@ module Aws::OpenSearchService
5954
6024
  # resp.domain_config.vpc_options.options.availability_zones[0] #=> String
5955
6025
  # resp.domain_config.vpc_options.options.security_group_ids #=> Array
5956
6026
  # resp.domain_config.vpc_options.options.security_group_ids[0] #=> String
6027
+ # resp.domain_config.vpc_options.options.egress_enabled #=> Boolean
5957
6028
  # resp.domain_config.vpc_options.status.creation_date #=> Time
5958
6029
  # resp.domain_config.vpc_options.status.update_date #=> Time
5959
6030
  # resp.domain_config.vpc_options.status.update_version #=> Integer
@@ -6096,6 +6167,15 @@ module Aws::OpenSearchService
6096
6167
  # resp.domain_config.deployment_strategy_options.status.update_version #=> Integer
6097
6168
  # resp.domain_config.deployment_strategy_options.status.state #=> String, one of "RequiresIndexDocuments", "Processing", "Active"
6098
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
6099
6179
  # resp.dry_run_results.deployment_type #=> String
6100
6180
  # resp.dry_run_results.message #=> String
6101
6181
  # resp.dry_run_progress_status.dry_run_id #=> String
@@ -6400,6 +6480,7 @@ module Aws::OpenSearchService
6400
6480
  # vpc_options: { # required
6401
6481
  # subnet_ids: ["String"],
6402
6482
  # security_group_ids: ["String"],
6483
+ # egress_enabled: false,
6403
6484
  # },
6404
6485
  # })
6405
6486
  #
@@ -6415,6 +6496,7 @@ module Aws::OpenSearchService
6415
6496
  # resp.vpc_endpoint.vpc_options.availability_zones[0] #=> String
6416
6497
  # resp.vpc_endpoint.vpc_options.security_group_ids #=> Array
6417
6498
  # resp.vpc_endpoint.vpc_options.security_group_ids[0] #=> String
6499
+ # resp.vpc_endpoint.vpc_options.egress_enabled #=> Boolean
6418
6500
  # resp.vpc_endpoint.status #=> String, one of "CREATING", "CREATE_FAILED", "ACTIVE", "UPDATING", "UPDATE_FAILED", "DELETING", "DELETE_FAILED"
6419
6501
  # resp.vpc_endpoint.endpoint #=> String
6420
6502
  #
@@ -6511,7 +6593,7 @@ module Aws::OpenSearchService
6511
6593
  tracer: tracer
6512
6594
  )
6513
6595
  context[:gem_name] = 'aws-sdk-opensearchservice'
6514
- context[:gem_version] = '1.97.0'
6596
+ context[:gem_version] = '1.99.0'
6515
6597
  Seahorse::Client::Request.new(handlers, context)
6516
6598
  end
6517
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"))
@@ -2376,6 +2399,7 @@ module Aws::OpenSearchService
2376
2399
  VPCDerivedInfo.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "SubnetIds"))
2377
2400
  VPCDerivedInfo.add_member(:availability_zones, Shapes::ShapeRef.new(shape: StringList, location_name: "AvailabilityZones"))
2378
2401
  VPCDerivedInfo.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "SecurityGroupIds"))
2402
+ VPCDerivedInfo.add_member(:egress_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "EgressEnabled"))
2379
2403
  VPCDerivedInfo.struct_class = Types::VPCDerivedInfo
2380
2404
 
2381
2405
  VPCDerivedInfoStatus.add_member(:options, Shapes::ShapeRef.new(shape: VPCDerivedInfo, required: true, location_name: "Options"))
@@ -2384,6 +2408,7 @@ module Aws::OpenSearchService
2384
2408
 
2385
2409
  VPCOptions.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "SubnetIds"))
2386
2410
  VPCOptions.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "SecurityGroupIds"))
2411
+ VPCOptions.add_member(:egress_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "EgressEnabled"))
2387
2412
  VPCOptions.struct_class = Types::VPCOptions
2388
2413
 
2389
2414
  ValidationException.struct_class = Types::ValidationException
@@ -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
@@ -9021,13 +9142,21 @@ module Aws::OpenSearchService
9021
9142
  # the domain.
9022
9143
  # @return [Array<String>]
9023
9144
  #
9145
+ # @!attribute [rw] egress_enabled
9146
+ # Indicates whether egress traffic from the domain is routed through
9147
+ # the customer VPC. When `true`, outbound traffic flows through the
9148
+ # VPC. When `false`, outbound traffic goes through the public
9149
+ # internet.
9150
+ # @return [Boolean]
9151
+ #
9024
9152
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/VPCDerivedInfo AWS API Documentation
9025
9153
  #
9026
9154
  class VPCDerivedInfo < Struct.new(
9027
9155
  :vpc_id,
9028
9156
  :subnet_ids,
9029
9157
  :availability_zones,
9030
- :security_group_ids)
9158
+ :security_group_ids,
9159
+ :egress_enabled)
9031
9160
  SENSITIVE = []
9032
9161
  include Aws::Structure
9033
9162
  end
@@ -9071,11 +9200,19 @@ module Aws::OpenSearchService
9071
9200
  # Service uses the default security group for the VPC.
9072
9201
  # @return [Array<String>]
9073
9202
  #
9203
+ # @!attribute [rw] egress_enabled
9204
+ # Controls whether egress traffic from the domain is routed through
9205
+ # the customer VPC. When `true`, outbound traffic flows through the
9206
+ # VPC. When `false`, outbound traffic goes through the public
9207
+ # internet.
9208
+ # @return [Boolean]
9209
+ #
9074
9210
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/VPCOptions AWS API Documentation
9075
9211
  #
9076
9212
  class VPCOptions < Struct.new(
9077
9213
  :subnet_ids,
9078
- :security_group_ids)
9214
+ :security_group_ids,
9215
+ :egress_enabled)
9079
9216
  SENSITIVE = []
9080
9217
  include Aws::Structure
9081
9218
  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.97.0'
57
+ GEM_VERSION = '1.99.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -320,7 +320,8 @@ module Aws
320
320
  },
321
321
  ?vpc_options: {
322
322
  subnet_ids: Array[::String]?,
323
- security_group_ids: Array[::String]?
323
+ security_group_ids: Array[::String]?,
324
+ egress_enabled: bool?
324
325
  },
325
326
  ?cognito_options: {
326
327
  enabled: bool?,
@@ -434,6 +435,11 @@ module Aws
434
435
  },
435
436
  ?deployment_strategy_options: {
436
437
  deployment_strategy: ("Default" | "CapacityOptimized")
438
+ },
439
+ ?automated_snapshot_pause_options: {
440
+ enabled: bool,
441
+ start_time: ::Time?,
442
+ end_time: ::Time?
437
443
  }
438
444
  ) -> _CreateDomainResponseSuccess
439
445
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDomainResponseSuccess
@@ -527,7 +533,8 @@ module Aws
527
533
  domain_arn: ::String,
528
534
  vpc_options: {
529
535
  subnet_ids: Array[::String]?,
530
- security_group_ids: Array[::String]?
536
+ security_group_ids: Array[::String]?,
537
+ egress_enabled: bool?
531
538
  },
532
539
  ?client_token: ::String
533
540
  ) -> _CreateVpcEndpointResponseSuccess
@@ -1441,7 +1448,8 @@ module Aws
1441
1448
  },
1442
1449
  ?vpc_options: {
1443
1450
  subnet_ids: Array[::String]?,
1444
- security_group_ids: Array[::String]?
1451
+ security_group_ids: Array[::String]?,
1452
+ egress_enabled: bool?
1445
1453
  },
1446
1454
  ?cognito_options: {
1447
1455
  enabled: bool?,
@@ -1554,6 +1562,11 @@ module Aws
1554
1562
  },
1555
1563
  ?deployment_strategy_options: {
1556
1564
  deployment_strategy: ("Default" | "CapacityOptimized")
1565
+ },
1566
+ ?automated_snapshot_pause_options: {
1567
+ enabled: bool,
1568
+ start_time: ::Time?,
1569
+ end_time: ::Time?
1557
1570
  }
1558
1571
  ) -> _UpdateDomainConfigResponseSuccess
1559
1572
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDomainConfigResponseSuccess
@@ -1634,7 +1647,8 @@ module Aws
1634
1647
  vpc_endpoint_id: ::String,
1635
1648
  vpc_options: {
1636
1649
  subnet_ids: Array[::String]?,
1637
- security_group_ids: Array[::String]?
1650
+ security_group_ids: Array[::String]?,
1651
+ egress_enabled: bool?
1638
1652
  }
1639
1653
  ) -> _UpdateVpcEndpointResponseSuccess
1640
1654
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateVpcEndpointResponseSuccess
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
 
@@ -2301,6 +2326,7 @@ module Aws::OpenSearchService
2301
2326
  attr_accessor subnet_ids: ::Array[::String]
2302
2327
  attr_accessor availability_zones: ::Array[::String]
2303
2328
  attr_accessor security_group_ids: ::Array[::String]
2329
+ attr_accessor egress_enabled: bool
2304
2330
  SENSITIVE: []
2305
2331
  end
2306
2332
 
@@ -2313,6 +2339,7 @@ module Aws::OpenSearchService
2313
2339
  class VPCOptions
2314
2340
  attr_accessor subnet_ids: ::Array[::String]
2315
2341
  attr_accessor security_group_ids: ::Array[::String]
2342
+ attr_accessor egress_enabled: bool
2316
2343
  SENSITIVE: []
2317
2344
  end
2318
2345
 
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.97.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