aws-sdk-rds 1.124.0 → 1.128.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +54 -17
- data/lib/aws-sdk-rds/client_api.rb +4 -0
- data/lib/aws-sdk-rds/db_cluster.rb +9 -0
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +1 -0
- data/lib/aws-sdk-rds/db_instance.rb +25 -13
- data/lib/aws-sdk-rds/resource.rb +5 -3
- data/lib/aws-sdk-rds/types.rb +65 -23
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '02269ba3f99118b4cfbc753c7323c445c9d948e191318d69656b7f833845ff6f'
|
|
4
|
+
data.tar.gz: 9ebd69746e8ceb2cfe88e61c2e4c056311e0ba1b957153ee2b435763d0ce5816
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a773b09514c0402477e45e29e667abfc941fb78a21a720ca39adac544a9e387b02863a2d2add6b60ac50d14be0a538244f625c839908cf3d71316f4fa650d542
|
|
7
|
+
data.tar.gz: 6d8ecf0b6a3cd5845b9d453c240f73b30775da028d96363802b1de16f3287dbebb512c6865c204f2ff01e9e75f3f442c76c6e11df081814d31d6dbd6eaeb0d1c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,26 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.128.0 (2021-10-18)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
1.127.0 (2021-09-10)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - This release adds support for providing a custom timeout value for finding a scaling point during autoscaling in Aurora Serverless v1.
|
|
13
|
+
|
|
14
|
+
1.126.0 (2021-09-01)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
18
|
+
|
|
19
|
+
1.125.0 (2021-08-04)
|
|
20
|
+
------------------
|
|
21
|
+
|
|
22
|
+
* Feature - This release adds AutomaticRestartTime to the DescribeDBInstances and DescribeDBClusters operations. AutomaticRestartTime indicates the time when a stopped DB instance or DB cluster is restarted automatically.
|
|
23
|
+
|
|
4
24
|
1.124.0 (2021-07-30)
|
|
5
25
|
------------------
|
|
6
26
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.128.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
|
@@ -2360,6 +2360,7 @@ module Aws::RDS
|
|
|
2360
2360
|
# auto_pause: false,
|
|
2361
2361
|
# seconds_until_auto_pause: 1,
|
|
2362
2362
|
# timeout_action: "String",
|
|
2363
|
+
# seconds_before_timeout: 1,
|
|
2363
2364
|
# },
|
|
2364
2365
|
# deletion_protection: false,
|
|
2365
2366
|
# global_cluster_identifier: "String",
|
|
@@ -2383,6 +2384,7 @@ module Aws::RDS
|
|
|
2383
2384
|
# resp.db_cluster.db_cluster_parameter_group #=> String
|
|
2384
2385
|
# resp.db_cluster.db_subnet_group #=> String
|
|
2385
2386
|
# resp.db_cluster.status #=> String
|
|
2387
|
+
# resp.db_cluster.automatic_restart_time #=> Time
|
|
2386
2388
|
# resp.db_cluster.percent_progress #=> String
|
|
2387
2389
|
# resp.db_cluster.earliest_restorable_time #=> Time
|
|
2388
2390
|
# resp.db_cluster.endpoint #=> String
|
|
@@ -2435,6 +2437,7 @@ module Aws::RDS
|
|
|
2435
2437
|
# resp.db_cluster.scaling_configuration_info.auto_pause #=> Boolean
|
|
2436
2438
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
|
2437
2439
|
# resp.db_cluster.scaling_configuration_info.timeout_action #=> String
|
|
2440
|
+
# resp.db_cluster.scaling_configuration_info.seconds_before_timeout #=> Integer
|
|
2438
2441
|
# resp.db_cluster.deletion_protection #=> Boolean
|
|
2439
2442
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
|
2440
2443
|
# resp.db_cluster.activity_stream_mode #=> String, one of "sync", "async"
|
|
@@ -2928,7 +2931,8 @@ module Aws::RDS
|
|
|
2928
2931
|
# Example: `mydbinstance`
|
|
2929
2932
|
#
|
|
2930
2933
|
# @option params [Integer] :allocated_storage
|
|
2931
|
-
# The amount of storage
|
|
2934
|
+
# The amount of storage in gibibytes (GiB) to allocate for the DB
|
|
2935
|
+
# instance.
|
|
2932
2936
|
#
|
|
2933
2937
|
# Type: Integer
|
|
2934
2938
|
#
|
|
@@ -3694,8 +3698,8 @@ module Aws::RDS
|
|
|
3694
3698
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
|
|
3695
3699
|
#
|
|
3696
3700
|
# @option params [Integer] :max_allocated_storage
|
|
3697
|
-
# The upper limit to which Amazon RDS can
|
|
3698
|
-
# storage of the DB instance.
|
|
3701
|
+
# The upper limit in gibibytes (GiB) to which Amazon RDS can
|
|
3702
|
+
# automatically scale the storage of the DB instance.
|
|
3699
3703
|
#
|
|
3700
3704
|
# For more information about this setting, including limitations that
|
|
3701
3705
|
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
|
@@ -3819,6 +3823,7 @@ module Aws::RDS
|
|
|
3819
3823
|
# resp.db_instance.db_instance_class #=> String
|
|
3820
3824
|
# resp.db_instance.engine #=> String
|
|
3821
3825
|
# resp.db_instance.db_instance_status #=> String
|
|
3826
|
+
# resp.db_instance.automatic_restart_time #=> Time
|
|
3822
3827
|
# resp.db_instance.master_username #=> String
|
|
3823
3828
|
# resp.db_instance.db_name #=> String
|
|
3824
3829
|
# resp.db_instance.endpoint.address #=> String
|
|
@@ -4392,8 +4397,8 @@ module Aws::RDS
|
|
|
4392
4397
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
|
4393
4398
|
#
|
|
4394
4399
|
# @option params [Integer] :max_allocated_storage
|
|
4395
|
-
# The upper limit to which Amazon RDS can
|
|
4396
|
-
# storage of the DB instance.
|
|
4400
|
+
# The upper limit in gibibytes (GiB) to which Amazon RDS can
|
|
4401
|
+
# automatically scale the storage of the DB instance.
|
|
4397
4402
|
#
|
|
4398
4403
|
# For more information about this setting, including limitations that
|
|
4399
4404
|
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
|
@@ -4492,6 +4497,7 @@ module Aws::RDS
|
|
|
4492
4497
|
# resp.db_instance.db_instance_class #=> String
|
|
4493
4498
|
# resp.db_instance.engine #=> String
|
|
4494
4499
|
# resp.db_instance.db_instance_status #=> String
|
|
4500
|
+
# resp.db_instance.automatic_restart_time #=> Time
|
|
4495
4501
|
# resp.db_instance.master_username #=> String
|
|
4496
4502
|
# resp.db_instance.db_name #=> String
|
|
4497
4503
|
# resp.db_instance.endpoint.address #=> String
|
|
@@ -5792,6 +5798,7 @@ module Aws::RDS
|
|
|
5792
5798
|
# resp.db_cluster.db_cluster_parameter_group #=> String
|
|
5793
5799
|
# resp.db_cluster.db_subnet_group #=> String
|
|
5794
5800
|
# resp.db_cluster.status #=> String
|
|
5801
|
+
# resp.db_cluster.automatic_restart_time #=> Time
|
|
5795
5802
|
# resp.db_cluster.percent_progress #=> String
|
|
5796
5803
|
# resp.db_cluster.earliest_restorable_time #=> Time
|
|
5797
5804
|
# resp.db_cluster.endpoint #=> String
|
|
@@ -5844,6 +5851,7 @@ module Aws::RDS
|
|
|
5844
5851
|
# resp.db_cluster.scaling_configuration_info.auto_pause #=> Boolean
|
|
5845
5852
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
|
5846
5853
|
# resp.db_cluster.scaling_configuration_info.timeout_action #=> String
|
|
5854
|
+
# resp.db_cluster.scaling_configuration_info.seconds_before_timeout #=> Integer
|
|
5847
5855
|
# resp.db_cluster.deletion_protection #=> Boolean
|
|
5848
5856
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
|
5849
5857
|
# resp.db_cluster.activity_stream_mode #=> String, one of "sync", "async"
|
|
@@ -6192,6 +6200,7 @@ module Aws::RDS
|
|
|
6192
6200
|
# resp.db_instance.db_instance_class #=> String
|
|
6193
6201
|
# resp.db_instance.engine #=> String
|
|
6194
6202
|
# resp.db_instance.db_instance_status #=> String
|
|
6203
|
+
# resp.db_instance.automatic_restart_time #=> Time
|
|
6195
6204
|
# resp.db_instance.master_username #=> String
|
|
6196
6205
|
# resp.db_instance.db_name #=> String
|
|
6197
6206
|
# resp.db_instance.endpoint.address #=> String
|
|
@@ -7938,6 +7947,7 @@ module Aws::RDS
|
|
|
7938
7947
|
# resp.db_clusters[0].db_cluster_parameter_group #=> String
|
|
7939
7948
|
# resp.db_clusters[0].db_subnet_group #=> String
|
|
7940
7949
|
# resp.db_clusters[0].status #=> String
|
|
7950
|
+
# resp.db_clusters[0].automatic_restart_time #=> Time
|
|
7941
7951
|
# resp.db_clusters[0].percent_progress #=> String
|
|
7942
7952
|
# resp.db_clusters[0].earliest_restorable_time #=> Time
|
|
7943
7953
|
# resp.db_clusters[0].endpoint #=> String
|
|
@@ -7990,6 +8000,7 @@ module Aws::RDS
|
|
|
7990
8000
|
# resp.db_clusters[0].scaling_configuration_info.auto_pause #=> Boolean
|
|
7991
8001
|
# resp.db_clusters[0].scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
|
7992
8002
|
# resp.db_clusters[0].scaling_configuration_info.timeout_action #=> String
|
|
8003
|
+
# resp.db_clusters[0].scaling_configuration_info.seconds_before_timeout #=> Integer
|
|
7993
8004
|
# resp.db_clusters[0].deletion_protection #=> Boolean
|
|
7994
8005
|
# resp.db_clusters[0].http_endpoint_enabled #=> Boolean
|
|
7995
8006
|
# resp.db_clusters[0].activity_stream_mode #=> String, one of "sync", "async"
|
|
@@ -8441,6 +8452,7 @@ module Aws::RDS
|
|
|
8441
8452
|
# resp.db_instances[0].db_instance_class #=> String
|
|
8442
8453
|
# resp.db_instances[0].engine #=> String
|
|
8443
8454
|
# resp.db_instances[0].db_instance_status #=> String
|
|
8455
|
+
# resp.db_instances[0].automatic_restart_time #=> Time
|
|
8444
8456
|
# resp.db_instances[0].master_username #=> String
|
|
8445
8457
|
# resp.db_instances[0].db_name #=> String
|
|
8446
8458
|
# resp.db_instances[0].endpoint.address #=> String
|
|
@@ -11544,6 +11556,7 @@ module Aws::RDS
|
|
|
11544
11556
|
# resp.db_cluster.db_cluster_parameter_group #=> String
|
|
11545
11557
|
# resp.db_cluster.db_subnet_group #=> String
|
|
11546
11558
|
# resp.db_cluster.status #=> String
|
|
11559
|
+
# resp.db_cluster.automatic_restart_time #=> Time
|
|
11547
11560
|
# resp.db_cluster.percent_progress #=> String
|
|
11548
11561
|
# resp.db_cluster.earliest_restorable_time #=> Time
|
|
11549
11562
|
# resp.db_cluster.endpoint #=> String
|
|
@@ -11596,6 +11609,7 @@ module Aws::RDS
|
|
|
11596
11609
|
# resp.db_cluster.scaling_configuration_info.auto_pause #=> Boolean
|
|
11597
11610
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
|
11598
11611
|
# resp.db_cluster.scaling_configuration_info.timeout_action #=> String
|
|
11612
|
+
# resp.db_cluster.scaling_configuration_info.seconds_before_timeout #=> Integer
|
|
11599
11613
|
# resp.db_cluster.deletion_protection #=> Boolean
|
|
11600
11614
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
|
11601
11615
|
# resp.db_cluster.activity_stream_mode #=> String, one of "sync", "async"
|
|
@@ -11980,7 +11994,7 @@ module Aws::RDS
|
|
|
11980
11994
|
# scaling points, see [ Autoscaling for Aurora Serverless][2] in the
|
|
11981
11995
|
# *Amazon Aurora User Guide*.
|
|
11982
11996
|
#
|
|
11983
|
-
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
|
11997
|
+
# <note markdown="1"> This action only applies to Aurora Serverless DB clusters.
|
|
11984
11998
|
#
|
|
11985
11999
|
# </note>
|
|
11986
12000
|
#
|
|
@@ -12018,9 +12032,7 @@ module Aws::RDS
|
|
|
12018
12032
|
# scaling point to perform seamless scaling before enforcing the timeout
|
|
12019
12033
|
# action. The default is 300.
|
|
12020
12034
|
#
|
|
12021
|
-
#
|
|
12022
|
-
#
|
|
12023
|
-
# ^
|
|
12035
|
+
# Specify a value between 10 and 600 seconds.
|
|
12024
12036
|
#
|
|
12025
12037
|
# @option params [String] :timeout_action
|
|
12026
12038
|
# The action to take when the timeout is reached, either
|
|
@@ -12409,6 +12421,7 @@ module Aws::RDS
|
|
|
12409
12421
|
# auto_pause: false,
|
|
12410
12422
|
# seconds_until_auto_pause: 1,
|
|
12411
12423
|
# timeout_action: "String",
|
|
12424
|
+
# seconds_before_timeout: 1,
|
|
12412
12425
|
# },
|
|
12413
12426
|
# deletion_protection: false,
|
|
12414
12427
|
# enable_http_endpoint: false,
|
|
@@ -12428,6 +12441,7 @@ module Aws::RDS
|
|
|
12428
12441
|
# resp.db_cluster.db_cluster_parameter_group #=> String
|
|
12429
12442
|
# resp.db_cluster.db_subnet_group #=> String
|
|
12430
12443
|
# resp.db_cluster.status #=> String
|
|
12444
|
+
# resp.db_cluster.automatic_restart_time #=> Time
|
|
12431
12445
|
# resp.db_cluster.percent_progress #=> String
|
|
12432
12446
|
# resp.db_cluster.earliest_restorable_time #=> Time
|
|
12433
12447
|
# resp.db_cluster.endpoint #=> String
|
|
@@ -12480,6 +12494,7 @@ module Aws::RDS
|
|
|
12480
12494
|
# resp.db_cluster.scaling_configuration_info.auto_pause #=> Boolean
|
|
12481
12495
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
|
12482
12496
|
# resp.db_cluster.scaling_configuration_info.timeout_action #=> String
|
|
12497
|
+
# resp.db_cluster.scaling_configuration_info.seconds_before_timeout #=> Integer
|
|
12483
12498
|
# resp.db_cluster.deletion_protection #=> Boolean
|
|
12484
12499
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
|
12485
12500
|
# resp.db_cluster.activity_stream_mode #=> String, one of "sync", "async"
|
|
@@ -12841,7 +12856,7 @@ module Aws::RDS
|
|
|
12841
12856
|
# ^
|
|
12842
12857
|
#
|
|
12843
12858
|
# @option params [Integer] :allocated_storage
|
|
12844
|
-
# The new amount of storage
|
|
12859
|
+
# The new amount of storage in gibibytes (GiB) to allocate for the DB
|
|
12845
12860
|
# instance.
|
|
12846
12861
|
#
|
|
12847
12862
|
# For MariaDB, MySQL, Oracle, and PostgreSQL, the value supplied must be
|
|
@@ -13437,8 +13452,8 @@ module Aws::RDS
|
|
|
13437
13452
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
|
|
13438
13453
|
#
|
|
13439
13454
|
# @option params [Integer] :max_allocated_storage
|
|
13440
|
-
# The upper limit to which Amazon RDS can
|
|
13441
|
-
# storage of the DB instance.
|
|
13455
|
+
# The upper limit in gibibytes (GiB) to which Amazon RDS can
|
|
13456
|
+
# automatically scale the storage of the DB instance.
|
|
13442
13457
|
#
|
|
13443
13458
|
# For more information about this setting, including limitations that
|
|
13444
13459
|
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
|
@@ -13611,6 +13626,7 @@ module Aws::RDS
|
|
|
13611
13626
|
# resp.db_instance.db_instance_class #=> String
|
|
13612
13627
|
# resp.db_instance.engine #=> String
|
|
13613
13628
|
# resp.db_instance.db_instance_status #=> String
|
|
13629
|
+
# resp.db_instance.automatic_restart_time #=> Time
|
|
13614
13630
|
# resp.db_instance.master_username #=> String
|
|
13615
13631
|
# resp.db_instance.db_name #=> String
|
|
13616
13632
|
# resp.db_instance.endpoint.address #=> String
|
|
@@ -14814,6 +14830,7 @@ module Aws::RDS
|
|
|
14814
14830
|
# resp.db_instance.db_instance_class #=> String
|
|
14815
14831
|
# resp.db_instance.engine #=> String
|
|
14816
14832
|
# resp.db_instance.db_instance_status #=> String
|
|
14833
|
+
# resp.db_instance.automatic_restart_time #=> Time
|
|
14817
14834
|
# resp.db_instance.master_username #=> String
|
|
14818
14835
|
# resp.db_instance.db_name #=> String
|
|
14819
14836
|
# resp.db_instance.endpoint.address #=> String
|
|
@@ -14989,6 +15006,7 @@ module Aws::RDS
|
|
|
14989
15006
|
# resp.db_cluster.db_cluster_parameter_group #=> String
|
|
14990
15007
|
# resp.db_cluster.db_subnet_group #=> String
|
|
14991
15008
|
# resp.db_cluster.status #=> String
|
|
15009
|
+
# resp.db_cluster.automatic_restart_time #=> Time
|
|
14992
15010
|
# resp.db_cluster.percent_progress #=> String
|
|
14993
15011
|
# resp.db_cluster.earliest_restorable_time #=> Time
|
|
14994
15012
|
# resp.db_cluster.endpoint #=> String
|
|
@@ -15041,6 +15059,7 @@ module Aws::RDS
|
|
|
15041
15059
|
# resp.db_cluster.scaling_configuration_info.auto_pause #=> Boolean
|
|
15042
15060
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
|
15043
15061
|
# resp.db_cluster.scaling_configuration_info.timeout_action #=> String
|
|
15062
|
+
# resp.db_cluster.scaling_configuration_info.seconds_before_timeout #=> Integer
|
|
15044
15063
|
# resp.db_cluster.deletion_protection #=> Boolean
|
|
15045
15064
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
|
15046
15065
|
# resp.db_cluster.activity_stream_mode #=> String, one of "sync", "async"
|
|
@@ -15232,6 +15251,7 @@ module Aws::RDS
|
|
|
15232
15251
|
# resp.db_instance.db_instance_class #=> String
|
|
15233
15252
|
# resp.db_instance.engine #=> String
|
|
15234
15253
|
# resp.db_instance.db_instance_status #=> String
|
|
15254
|
+
# resp.db_instance.automatic_restart_time #=> Time
|
|
15235
15255
|
# resp.db_instance.master_username #=> String
|
|
15236
15256
|
# resp.db_instance.db_name #=> String
|
|
15237
15257
|
# resp.db_instance.endpoint.address #=> String
|
|
@@ -16243,6 +16263,7 @@ module Aws::RDS
|
|
|
16243
16263
|
# resp.db_cluster.db_cluster_parameter_group #=> String
|
|
16244
16264
|
# resp.db_cluster.db_subnet_group #=> String
|
|
16245
16265
|
# resp.db_cluster.status #=> String
|
|
16266
|
+
# resp.db_cluster.automatic_restart_time #=> Time
|
|
16246
16267
|
# resp.db_cluster.percent_progress #=> String
|
|
16247
16268
|
# resp.db_cluster.earliest_restorable_time #=> Time
|
|
16248
16269
|
# resp.db_cluster.endpoint #=> String
|
|
@@ -16295,6 +16316,7 @@ module Aws::RDS
|
|
|
16295
16316
|
# resp.db_cluster.scaling_configuration_info.auto_pause #=> Boolean
|
|
16296
16317
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
|
16297
16318
|
# resp.db_cluster.scaling_configuration_info.timeout_action #=> String
|
|
16319
|
+
# resp.db_cluster.scaling_configuration_info.seconds_before_timeout #=> Integer
|
|
16298
16320
|
# resp.db_cluster.deletion_protection #=> Boolean
|
|
16299
16321
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
|
16300
16322
|
# resp.db_cluster.activity_stream_mode #=> String, one of "sync", "async"
|
|
@@ -16626,6 +16648,7 @@ module Aws::RDS
|
|
|
16626
16648
|
# auto_pause: false,
|
|
16627
16649
|
# seconds_until_auto_pause: 1,
|
|
16628
16650
|
# timeout_action: "String",
|
|
16651
|
+
# seconds_before_timeout: 1,
|
|
16629
16652
|
# },
|
|
16630
16653
|
# db_cluster_parameter_group_name: "String",
|
|
16631
16654
|
# deletion_protection: false,
|
|
@@ -16646,6 +16669,7 @@ module Aws::RDS
|
|
|
16646
16669
|
# resp.db_cluster.db_cluster_parameter_group #=> String
|
|
16647
16670
|
# resp.db_cluster.db_subnet_group #=> String
|
|
16648
16671
|
# resp.db_cluster.status #=> String
|
|
16672
|
+
# resp.db_cluster.automatic_restart_time #=> Time
|
|
16649
16673
|
# resp.db_cluster.percent_progress #=> String
|
|
16650
16674
|
# resp.db_cluster.earliest_restorable_time #=> Time
|
|
16651
16675
|
# resp.db_cluster.endpoint #=> String
|
|
@@ -16698,6 +16722,7 @@ module Aws::RDS
|
|
|
16698
16722
|
# resp.db_cluster.scaling_configuration_info.auto_pause #=> Boolean
|
|
16699
16723
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
|
16700
16724
|
# resp.db_cluster.scaling_configuration_info.timeout_action #=> String
|
|
16725
|
+
# resp.db_cluster.scaling_configuration_info.seconds_before_timeout #=> Integer
|
|
16701
16726
|
# resp.db_cluster.deletion_protection #=> Boolean
|
|
16702
16727
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
|
16703
16728
|
# resp.db_cluster.activity_stream_mode #=> String, one of "sync", "async"
|
|
@@ -17031,6 +17056,7 @@ module Aws::RDS
|
|
|
17031
17056
|
# auto_pause: false,
|
|
17032
17057
|
# seconds_until_auto_pause: 1,
|
|
17033
17058
|
# timeout_action: "String",
|
|
17059
|
+
# seconds_before_timeout: 1,
|
|
17034
17060
|
# },
|
|
17035
17061
|
# engine_mode: "String",
|
|
17036
17062
|
# })
|
|
@@ -17047,6 +17073,7 @@ module Aws::RDS
|
|
|
17047
17073
|
# resp.db_cluster.db_cluster_parameter_group #=> String
|
|
17048
17074
|
# resp.db_cluster.db_subnet_group #=> String
|
|
17049
17075
|
# resp.db_cluster.status #=> String
|
|
17076
|
+
# resp.db_cluster.automatic_restart_time #=> Time
|
|
17050
17077
|
# resp.db_cluster.percent_progress #=> String
|
|
17051
17078
|
# resp.db_cluster.earliest_restorable_time #=> Time
|
|
17052
17079
|
# resp.db_cluster.endpoint #=> String
|
|
@@ -17099,6 +17126,7 @@ module Aws::RDS
|
|
|
17099
17126
|
# resp.db_cluster.scaling_configuration_info.auto_pause #=> Boolean
|
|
17100
17127
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
|
17101
17128
|
# resp.db_cluster.scaling_configuration_info.timeout_action #=> String
|
|
17129
|
+
# resp.db_cluster.scaling_configuration_info.seconds_before_timeout #=> Integer
|
|
17102
17130
|
# resp.db_cluster.deletion_protection #=> Boolean
|
|
17103
17131
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
|
17104
17132
|
# resp.db_cluster.activity_stream_mode #=> String, one of "sync", "async"
|
|
@@ -17607,6 +17635,7 @@ module Aws::RDS
|
|
|
17607
17635
|
# resp.db_instance.db_instance_class #=> String
|
|
17608
17636
|
# resp.db_instance.engine #=> String
|
|
17609
17637
|
# resp.db_instance.db_instance_status #=> String
|
|
17638
|
+
# resp.db_instance.automatic_restart_time #=> Time
|
|
17610
17639
|
# resp.db_instance.master_username #=> String
|
|
17611
17640
|
# resp.db_instance.db_name #=> String
|
|
17612
17641
|
# resp.db_instance.endpoint.address #=> String
|
|
@@ -18117,8 +18146,8 @@ module Aws::RDS
|
|
|
18117
18146
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
|
|
18118
18147
|
#
|
|
18119
18148
|
# @option params [Integer] :max_allocated_storage
|
|
18120
|
-
# The upper limit to which Amazon RDS can
|
|
18121
|
-
# storage of the DB instance.
|
|
18149
|
+
# The upper limit in gibibytes (GiB) to which Amazon RDS can
|
|
18150
|
+
# automatically scale the storage of the DB instance.
|
|
18122
18151
|
#
|
|
18123
18152
|
# For more information about this setting, including limitations that
|
|
18124
18153
|
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
|
@@ -18197,6 +18226,7 @@ module Aws::RDS
|
|
|
18197
18226
|
# resp.db_instance.db_instance_class #=> String
|
|
18198
18227
|
# resp.db_instance.engine #=> String
|
|
18199
18228
|
# resp.db_instance.db_instance_status #=> String
|
|
18229
|
+
# resp.db_instance.automatic_restart_time #=> Time
|
|
18200
18230
|
# resp.db_instance.master_username #=> String
|
|
18201
18231
|
# resp.db_instance.db_name #=> String
|
|
18202
18232
|
# resp.db_instance.endpoint.address #=> String
|
|
@@ -18638,8 +18668,8 @@ module Aws::RDS
|
|
|
18638
18668
|
# The resource ID of the source DB instance from which to restore.
|
|
18639
18669
|
#
|
|
18640
18670
|
# @option params [Integer] :max_allocated_storage
|
|
18641
|
-
# The upper limit to which Amazon RDS can
|
|
18642
|
-
# storage of the DB instance.
|
|
18671
|
+
# The upper limit in gibibytes (GiB) to which Amazon RDS can
|
|
18672
|
+
# automatically scale the storage of the DB instance.
|
|
18643
18673
|
#
|
|
18644
18674
|
# For more information about this setting, including limitations that
|
|
18645
18675
|
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
|
@@ -18830,6 +18860,7 @@ module Aws::RDS
|
|
|
18830
18860
|
# resp.db_instance.db_instance_class #=> String
|
|
18831
18861
|
# resp.db_instance.engine #=> String
|
|
18832
18862
|
# resp.db_instance.db_instance_status #=> String
|
|
18863
|
+
# resp.db_instance.automatic_restart_time #=> Time
|
|
18833
18864
|
# resp.db_instance.master_username #=> String
|
|
18834
18865
|
# resp.db_instance.db_name #=> String
|
|
18835
18866
|
# resp.db_instance.endpoint.address #=> String
|
|
@@ -19166,6 +19197,7 @@ module Aws::RDS
|
|
|
19166
19197
|
# resp.db_cluster.db_cluster_parameter_group #=> String
|
|
19167
19198
|
# resp.db_cluster.db_subnet_group #=> String
|
|
19168
19199
|
# resp.db_cluster.status #=> String
|
|
19200
|
+
# resp.db_cluster.automatic_restart_time #=> Time
|
|
19169
19201
|
# resp.db_cluster.percent_progress #=> String
|
|
19170
19202
|
# resp.db_cluster.earliest_restorable_time #=> Time
|
|
19171
19203
|
# resp.db_cluster.endpoint #=> String
|
|
@@ -19218,6 +19250,7 @@ module Aws::RDS
|
|
|
19218
19250
|
# resp.db_cluster.scaling_configuration_info.auto_pause #=> Boolean
|
|
19219
19251
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
|
19220
19252
|
# resp.db_cluster.scaling_configuration_info.timeout_action #=> String
|
|
19253
|
+
# resp.db_cluster.scaling_configuration_info.seconds_before_timeout #=> Integer
|
|
19221
19254
|
# resp.db_cluster.deletion_protection #=> Boolean
|
|
19222
19255
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
|
19223
19256
|
# resp.db_cluster.activity_stream_mode #=> String, one of "sync", "async"
|
|
@@ -19289,6 +19322,7 @@ module Aws::RDS
|
|
|
19289
19322
|
# resp.db_instance.db_instance_class #=> String
|
|
19290
19323
|
# resp.db_instance.engine #=> String
|
|
19291
19324
|
# resp.db_instance.db_instance_status #=> String
|
|
19325
|
+
# resp.db_instance.automatic_restart_time #=> Time
|
|
19292
19326
|
# resp.db_instance.master_username #=> String
|
|
19293
19327
|
# resp.db_instance.db_name #=> String
|
|
19294
19328
|
# resp.db_instance.endpoint.address #=> String
|
|
@@ -19733,6 +19767,7 @@ module Aws::RDS
|
|
|
19733
19767
|
# resp.db_cluster.db_cluster_parameter_group #=> String
|
|
19734
19768
|
# resp.db_cluster.db_subnet_group #=> String
|
|
19735
19769
|
# resp.db_cluster.status #=> String
|
|
19770
|
+
# resp.db_cluster.automatic_restart_time #=> Time
|
|
19736
19771
|
# resp.db_cluster.percent_progress #=> String
|
|
19737
19772
|
# resp.db_cluster.earliest_restorable_time #=> Time
|
|
19738
19773
|
# resp.db_cluster.endpoint #=> String
|
|
@@ -19785,6 +19820,7 @@ module Aws::RDS
|
|
|
19785
19820
|
# resp.db_cluster.scaling_configuration_info.auto_pause #=> Boolean
|
|
19786
19821
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
|
19787
19822
|
# resp.db_cluster.scaling_configuration_info.timeout_action #=> String
|
|
19823
|
+
# resp.db_cluster.scaling_configuration_info.seconds_before_timeout #=> Integer
|
|
19788
19824
|
# resp.db_cluster.deletion_protection #=> Boolean
|
|
19789
19825
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
|
19790
19826
|
# resp.db_cluster.activity_stream_mode #=> String, one of "sync", "async"
|
|
@@ -19863,6 +19899,7 @@ module Aws::RDS
|
|
|
19863
19899
|
# resp.db_instance.db_instance_class #=> String
|
|
19864
19900
|
# resp.db_instance.engine #=> String
|
|
19865
19901
|
# resp.db_instance.db_instance_status #=> String
|
|
19902
|
+
# resp.db_instance.automatic_restart_time #=> Time
|
|
19866
19903
|
# resp.db_instance.master_username #=> String
|
|
19867
19904
|
# resp.db_instance.db_name #=> String
|
|
19868
19905
|
# resp.db_instance.endpoint.address #=> String
|
|
@@ -20075,7 +20112,7 @@ module Aws::RDS
|
|
|
20075
20112
|
params: params,
|
|
20076
20113
|
config: config)
|
|
20077
20114
|
context[:gem_name] = 'aws-sdk-rds'
|
|
20078
|
-
context[:gem_version] = '1.
|
|
20115
|
+
context[:gem_version] = '1.128.0'
|
|
20079
20116
|
Seahorse::Client::Request.new(handlers, context)
|
|
20080
20117
|
end
|
|
20081
20118
|
|
|
@@ -1072,6 +1072,7 @@ module Aws::RDS
|
|
|
1072
1072
|
DBCluster.add_member(:db_cluster_parameter_group, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterParameterGroup"))
|
|
1073
1073
|
DBCluster.add_member(:db_subnet_group, Shapes::ShapeRef.new(shape: String, location_name: "DBSubnetGroup"))
|
|
1074
1074
|
DBCluster.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
|
|
1075
|
+
DBCluster.add_member(:automatic_restart_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "AutomaticRestartTime"))
|
|
1075
1076
|
DBCluster.add_member(:percent_progress, Shapes::ShapeRef.new(shape: String, location_name: "PercentProgress"))
|
|
1076
1077
|
DBCluster.add_member(:earliest_restorable_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "EarliestRestorableTime"))
|
|
1077
1078
|
DBCluster.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "Endpoint"))
|
|
@@ -1302,6 +1303,7 @@ module Aws::RDS
|
|
|
1302
1303
|
DBInstance.add_member(:db_instance_class, Shapes::ShapeRef.new(shape: String, location_name: "DBInstanceClass"))
|
|
1303
1304
|
DBInstance.add_member(:engine, Shapes::ShapeRef.new(shape: String, location_name: "Engine"))
|
|
1304
1305
|
DBInstance.add_member(:db_instance_status, Shapes::ShapeRef.new(shape: String, location_name: "DBInstanceStatus"))
|
|
1306
|
+
DBInstance.add_member(:automatic_restart_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "AutomaticRestartTime"))
|
|
1305
1307
|
DBInstance.add_member(:master_username, Shapes::ShapeRef.new(shape: String, location_name: "MasterUsername"))
|
|
1306
1308
|
DBInstance.add_member(:db_name, Shapes::ShapeRef.new(shape: String, location_name: "DBName"))
|
|
1307
1309
|
DBInstance.add_member(:endpoint, Shapes::ShapeRef.new(shape: Endpoint, location_name: "Endpoint"))
|
|
@@ -3175,6 +3177,7 @@ module Aws::RDS
|
|
|
3175
3177
|
ScalingConfiguration.add_member(:auto_pause, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AutoPause"))
|
|
3176
3178
|
ScalingConfiguration.add_member(:seconds_until_auto_pause, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "SecondsUntilAutoPause"))
|
|
3177
3179
|
ScalingConfiguration.add_member(:timeout_action, Shapes::ShapeRef.new(shape: String, location_name: "TimeoutAction"))
|
|
3180
|
+
ScalingConfiguration.add_member(:seconds_before_timeout, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "SecondsBeforeTimeout"))
|
|
3178
3181
|
ScalingConfiguration.struct_class = Types::ScalingConfiguration
|
|
3179
3182
|
|
|
3180
3183
|
ScalingConfigurationInfo.add_member(:min_capacity, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MinCapacity"))
|
|
@@ -3182,6 +3185,7 @@ module Aws::RDS
|
|
|
3182
3185
|
ScalingConfigurationInfo.add_member(:auto_pause, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AutoPause"))
|
|
3183
3186
|
ScalingConfigurationInfo.add_member(:seconds_until_auto_pause, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "SecondsUntilAutoPause"))
|
|
3184
3187
|
ScalingConfigurationInfo.add_member(:timeout_action, Shapes::ShapeRef.new(shape: String, location_name: "TimeoutAction"))
|
|
3188
|
+
ScalingConfigurationInfo.add_member(:seconds_before_timeout, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "SecondsBeforeTimeout"))
|
|
3185
3189
|
ScalingConfigurationInfo.struct_class = Types::ScalingConfigurationInfo
|
|
3186
3190
|
|
|
3187
3191
|
SharedSnapshotQuotaExceededFault.struct_class = Types::SharedSnapshotQuotaExceededFault
|
|
@@ -94,6 +94,12 @@ module Aws::RDS
|
|
|
94
94
|
data[:status]
|
|
95
95
|
end
|
|
96
96
|
|
|
97
|
+
# The time when a stopped DB cluster is restarted automatically.
|
|
98
|
+
# @return [Time]
|
|
99
|
+
def automatic_restart_time
|
|
100
|
+
data[:automatic_restart_time]
|
|
101
|
+
end
|
|
102
|
+
|
|
97
103
|
# Specifies the progress of the operation as a percentage.
|
|
98
104
|
# @return [String]
|
|
99
105
|
def percent_progress
|
|
@@ -655,6 +661,7 @@ module Aws::RDS
|
|
|
655
661
|
# auto_pause: false,
|
|
656
662
|
# seconds_until_auto_pause: 1,
|
|
657
663
|
# timeout_action: "String",
|
|
664
|
+
# seconds_before_timeout: 1,
|
|
658
665
|
# },
|
|
659
666
|
# deletion_protection: false,
|
|
660
667
|
# global_cluster_identifier: "String",
|
|
@@ -1192,6 +1199,7 @@ module Aws::RDS
|
|
|
1192
1199
|
# auto_pause: false,
|
|
1193
1200
|
# seconds_until_auto_pause: 1,
|
|
1194
1201
|
# timeout_action: "String",
|
|
1202
|
+
# seconds_before_timeout: 1,
|
|
1195
1203
|
# },
|
|
1196
1204
|
# deletion_protection: false,
|
|
1197
1205
|
# enable_http_endpoint: false,
|
|
@@ -1486,6 +1494,7 @@ module Aws::RDS
|
|
|
1486
1494
|
# auto_pause: false,
|
|
1487
1495
|
# seconds_until_auto_pause: 1,
|
|
1488
1496
|
# timeout_action: "String",
|
|
1497
|
+
# seconds_before_timeout: 1,
|
|
1489
1498
|
# },
|
|
1490
1499
|
# engine_mode: "String",
|
|
1491
1500
|
# })
|
|
@@ -61,6 +61,12 @@ module Aws::RDS
|
|
|
61
61
|
data[:db_instance_status]
|
|
62
62
|
end
|
|
63
63
|
|
|
64
|
+
# The time when a stopped DB instance is restarted automatically.
|
|
65
|
+
# @return [Time]
|
|
66
|
+
def automatic_restart_time
|
|
67
|
+
data[:automatic_restart_time]
|
|
68
|
+
end
|
|
69
|
+
|
|
64
70
|
# Contains the master username for the DB instance.
|
|
65
71
|
# @return [String]
|
|
66
72
|
def master_username
|
|
@@ -89,12 +95,17 @@ module Aws::RDS
|
|
|
89
95
|
end
|
|
90
96
|
|
|
91
97
|
# Specifies the connection endpoint.
|
|
98
|
+
#
|
|
99
|
+
# <note markdown="1"> The endpoint might not be shown for instances whose status is
|
|
100
|
+
# `creating`.
|
|
101
|
+
#
|
|
102
|
+
# </note>
|
|
92
103
|
# @return [Types::Endpoint]
|
|
93
104
|
def endpoint
|
|
94
105
|
data[:endpoint]
|
|
95
106
|
end
|
|
96
107
|
|
|
97
|
-
# Specifies the allocated storage size specified in gibibytes.
|
|
108
|
+
# Specifies the allocated storage size specified in gibibytes (GiB).
|
|
98
109
|
# @return [Integer]
|
|
99
110
|
def allocated_storage
|
|
100
111
|
data[:allocated_storage]
|
|
@@ -524,8 +535,8 @@ module Aws::RDS
|
|
|
524
535
|
data[:listener_endpoint]
|
|
525
536
|
end
|
|
526
537
|
|
|
527
|
-
# The upper limit to which Amazon RDS can
|
|
528
|
-
# storage of the DB instance.
|
|
538
|
+
# The upper limit in gibibytes (GiB) to which Amazon RDS can
|
|
539
|
+
# automatically scale the storage of the DB instance.
|
|
529
540
|
# @return [Integer]
|
|
530
541
|
def max_allocated_storage
|
|
531
542
|
data[:max_allocated_storage]
|
|
@@ -910,7 +921,8 @@ module Aws::RDS
|
|
|
910
921
|
#
|
|
911
922
|
# * It can't be a word reserved by the database engine.
|
|
912
923
|
# @option options [Integer] :allocated_storage
|
|
913
|
-
# The amount of storage
|
|
924
|
+
# The amount of storage in gibibytes (GiB) to allocate for the DB
|
|
925
|
+
# instance.
|
|
914
926
|
#
|
|
915
927
|
# Type: Integer
|
|
916
928
|
#
|
|
@@ -1632,8 +1644,8 @@ module Aws::RDS
|
|
|
1632
1644
|
#
|
|
1633
1645
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
|
|
1634
1646
|
# @option options [Integer] :max_allocated_storage
|
|
1635
|
-
# The upper limit to which Amazon RDS can
|
|
1636
|
-
# storage of the DB instance.
|
|
1647
|
+
# The upper limit in gibibytes (GiB) to which Amazon RDS can
|
|
1648
|
+
# automatically scale the storage of the DB instance.
|
|
1637
1649
|
#
|
|
1638
1650
|
# For more information about this setting, including limitations that
|
|
1639
1651
|
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
|
@@ -2066,8 +2078,8 @@ module Aws::RDS
|
|
|
2066
2078
|
#
|
|
2067
2079
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
|
2068
2080
|
# @option options [Integer] :max_allocated_storage
|
|
2069
|
-
# The upper limit to which Amazon RDS can
|
|
2070
|
-
# storage of the DB instance.
|
|
2081
|
+
# The upper limit in gibibytes (GiB) to which Amazon RDS can
|
|
2082
|
+
# automatically scale the storage of the DB instance.
|
|
2071
2083
|
#
|
|
2072
2084
|
# For more information about this setting, including limitations that
|
|
2073
2085
|
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
|
@@ -2252,7 +2264,7 @@ module Aws::RDS
|
|
|
2252
2264
|
# })
|
|
2253
2265
|
# @param [Hash] options ({})
|
|
2254
2266
|
# @option options [Integer] :allocated_storage
|
|
2255
|
-
# The new amount of storage
|
|
2267
|
+
# The new amount of storage in gibibytes (GiB) to allocate for the DB
|
|
2256
2268
|
# instance.
|
|
2257
2269
|
#
|
|
2258
2270
|
# For MariaDB, MySQL, Oracle, and PostgreSQL, the value supplied must be
|
|
@@ -2809,8 +2821,8 @@ module Aws::RDS
|
|
|
2809
2821
|
#
|
|
2810
2822
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
|
|
2811
2823
|
# @option options [Integer] :max_allocated_storage
|
|
2812
|
-
# The upper limit to which Amazon RDS can
|
|
2813
|
-
# storage of the DB instance.
|
|
2824
|
+
# The upper limit in gibibytes (GiB) to which Amazon RDS can
|
|
2825
|
+
# automatically scale the storage of the DB instance.
|
|
2814
2826
|
#
|
|
2815
2827
|
# For more information about this setting, including limitations that
|
|
2816
2828
|
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
|
@@ -3271,8 +3283,8 @@ module Aws::RDS
|
|
|
3271
3283
|
# @option options [String] :source_dbi_resource_id
|
|
3272
3284
|
# The resource ID of the source DB instance from which to restore.
|
|
3273
3285
|
# @option options [Integer] :max_allocated_storage
|
|
3274
|
-
# The upper limit to which Amazon RDS can
|
|
3275
|
-
# storage of the DB instance.
|
|
3286
|
+
# The upper limit in gibibytes (GiB) to which Amazon RDS can
|
|
3287
|
+
# automatically scale the storage of the DB instance.
|
|
3276
3288
|
#
|
|
3277
3289
|
# For more information about this setting, including limitations that
|
|
3278
3290
|
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
|
@@ -74,6 +74,7 @@ module Aws::RDS
|
|
|
74
74
|
# auto_pause: false,
|
|
75
75
|
# seconds_until_auto_pause: 1,
|
|
76
76
|
# timeout_action: "String",
|
|
77
|
+
# seconds_before_timeout: 1,
|
|
77
78
|
# },
|
|
78
79
|
# deletion_protection: false,
|
|
79
80
|
# global_cluster_identifier: "String",
|
|
@@ -736,7 +737,8 @@ module Aws::RDS
|
|
|
736
737
|
#
|
|
737
738
|
# Example: `mydbinstance`
|
|
738
739
|
# @option options [Integer] :allocated_storage
|
|
739
|
-
# The amount of storage
|
|
740
|
+
# The amount of storage in gibibytes (GiB) to allocate for the DB
|
|
741
|
+
# instance.
|
|
740
742
|
#
|
|
741
743
|
# Type: Integer
|
|
742
744
|
#
|
|
@@ -1458,8 +1460,8 @@ module Aws::RDS
|
|
|
1458
1460
|
#
|
|
1459
1461
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
|
|
1460
1462
|
# @option options [Integer] :max_allocated_storage
|
|
1461
|
-
# The upper limit to which Amazon RDS can
|
|
1462
|
-
# storage of the DB instance.
|
|
1463
|
+
# The upper limit in gibibytes (GiB) to which Amazon RDS can
|
|
1464
|
+
# automatically scale the storage of the DB instance.
|
|
1463
1465
|
#
|
|
1464
1466
|
# For more information about this setting, including limitations that
|
|
1465
1467
|
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
data/lib/aws-sdk-rds/types.rb
CHANGED
|
@@ -1776,6 +1776,7 @@ module Aws::RDS
|
|
|
1776
1776
|
# auto_pause: false,
|
|
1777
1777
|
# seconds_until_auto_pause: 1,
|
|
1778
1778
|
# timeout_action: "String",
|
|
1779
|
+
# seconds_before_timeout: 1,
|
|
1779
1780
|
# },
|
|
1780
1781
|
# deletion_protection: false,
|
|
1781
1782
|
# global_cluster_identifier: "String",
|
|
@@ -2653,7 +2654,7 @@ module Aws::RDS
|
|
|
2653
2654
|
# @return [String]
|
|
2654
2655
|
#
|
|
2655
2656
|
# @!attribute [rw] allocated_storage
|
|
2656
|
-
# The amount of storage
|
|
2657
|
+
# The amount of storage in gibibytes (GiB) to allocate for the DB
|
|
2657
2658
|
# instance.
|
|
2658
2659
|
#
|
|
2659
2660
|
# Type: Integer
|
|
@@ -3469,8 +3470,8 @@ module Aws::RDS
|
|
|
3469
3470
|
# @return [Boolean]
|
|
3470
3471
|
#
|
|
3471
3472
|
# @!attribute [rw] max_allocated_storage
|
|
3472
|
-
# The upper limit to which Amazon RDS can
|
|
3473
|
-
# storage of the DB instance.
|
|
3473
|
+
# The upper limit in gibibytes (GiB) to which Amazon RDS can
|
|
3474
|
+
# automatically scale the storage of the DB instance.
|
|
3474
3475
|
#
|
|
3475
3476
|
# For more information about this setting, including limitations that
|
|
3476
3477
|
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
|
@@ -4064,8 +4065,8 @@ module Aws::RDS
|
|
|
4064
4065
|
# @return [String]
|
|
4065
4066
|
#
|
|
4066
4067
|
# @!attribute [rw] max_allocated_storage
|
|
4067
|
-
# The upper limit to which Amazon RDS can
|
|
4068
|
-
# storage of the DB instance.
|
|
4068
|
+
# The upper limit in gibibytes (GiB) to which Amazon RDS can
|
|
4069
|
+
# automatically scale the storage of the DB instance.
|
|
4069
4070
|
#
|
|
4070
4071
|
# For more information about this setting, including limitations that
|
|
4071
4072
|
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
|
@@ -5098,6 +5099,10 @@ module Aws::RDS
|
|
|
5098
5099
|
# Specifies the current state of this DB cluster.
|
|
5099
5100
|
# @return [String]
|
|
5100
5101
|
#
|
|
5102
|
+
# @!attribute [rw] automatic_restart_time
|
|
5103
|
+
# The time when a stopped DB cluster is restarted automatically.
|
|
5104
|
+
# @return [Time]
|
|
5105
|
+
#
|
|
5101
5106
|
# @!attribute [rw] percent_progress
|
|
5102
5107
|
# Specifies the progress of the operation as a percentage.
|
|
5103
5108
|
# @return [String]
|
|
@@ -5409,6 +5414,7 @@ module Aws::RDS
|
|
|
5409
5414
|
:db_cluster_parameter_group,
|
|
5410
5415
|
:db_subnet_group,
|
|
5411
5416
|
:status,
|
|
5417
|
+
:automatic_restart_time,
|
|
5412
5418
|
:percent_progress,
|
|
5413
5419
|
:earliest_restorable_time,
|
|
5414
5420
|
:endpoint,
|
|
@@ -6381,6 +6387,10 @@ module Aws::RDS
|
|
|
6381
6387
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/accessing-monitoring.html#Overview.DBInstance.Status
|
|
6382
6388
|
# @return [String]
|
|
6383
6389
|
#
|
|
6390
|
+
# @!attribute [rw] automatic_restart_time
|
|
6391
|
+
# The time when a stopped DB instance is restarted automatically.
|
|
6392
|
+
# @return [Time]
|
|
6393
|
+
#
|
|
6384
6394
|
# @!attribute [rw] master_username
|
|
6385
6395
|
# Contains the master username for the DB instance.
|
|
6386
6396
|
# @return [String]
|
|
@@ -6407,10 +6417,15 @@ module Aws::RDS
|
|
|
6407
6417
|
#
|
|
6408
6418
|
# @!attribute [rw] endpoint
|
|
6409
6419
|
# Specifies the connection endpoint.
|
|
6420
|
+
#
|
|
6421
|
+
# <note markdown="1"> The endpoint might not be shown for instances whose status is
|
|
6422
|
+
# `creating`.
|
|
6423
|
+
#
|
|
6424
|
+
# </note>
|
|
6410
6425
|
# @return [Types::Endpoint]
|
|
6411
6426
|
#
|
|
6412
6427
|
# @!attribute [rw] allocated_storage
|
|
6413
|
-
# Specifies the allocated storage size specified in gibibytes.
|
|
6428
|
+
# Specifies the allocated storage size specified in gibibytes (GiB).
|
|
6414
6429
|
# @return [Integer]
|
|
6415
6430
|
#
|
|
6416
6431
|
# @!attribute [rw] instance_create_time
|
|
@@ -6740,8 +6755,8 @@ module Aws::RDS
|
|
|
6740
6755
|
# @return [Types::Endpoint]
|
|
6741
6756
|
#
|
|
6742
6757
|
# @!attribute [rw] max_allocated_storage
|
|
6743
|
-
# The upper limit to which Amazon RDS can
|
|
6744
|
-
# storage of the DB instance.
|
|
6758
|
+
# The upper limit in gibibytes (GiB) to which Amazon RDS can
|
|
6759
|
+
# automatically scale the storage of the DB instance.
|
|
6745
6760
|
# @return [Integer]
|
|
6746
6761
|
#
|
|
6747
6762
|
# @!attribute [rw] tag_list
|
|
@@ -6820,6 +6835,7 @@ module Aws::RDS
|
|
|
6820
6835
|
:db_instance_class,
|
|
6821
6836
|
:engine,
|
|
6822
6837
|
:db_instance_status,
|
|
6838
|
+
:automatic_restart_time,
|
|
6823
6839
|
:master_username,
|
|
6824
6840
|
:db_name,
|
|
6825
6841
|
:endpoint,
|
|
@@ -13541,9 +13557,7 @@ module Aws::RDS
|
|
|
13541
13557
|
# a scaling point to perform seamless scaling before enforcing the
|
|
13542
13558
|
# timeout action. The default is 300.
|
|
13543
13559
|
#
|
|
13544
|
-
#
|
|
13545
|
-
#
|
|
13546
|
-
# ^
|
|
13560
|
+
# Specify a value between 10 and 600 seconds.
|
|
13547
13561
|
# @return [Integer]
|
|
13548
13562
|
#
|
|
13549
13563
|
# @!attribute [rw] timeout_action
|
|
@@ -13642,6 +13656,7 @@ module Aws::RDS
|
|
|
13642
13656
|
# auto_pause: false,
|
|
13643
13657
|
# seconds_until_auto_pause: 1,
|
|
13644
13658
|
# timeout_action: "String",
|
|
13659
|
+
# seconds_before_timeout: 1,
|
|
13645
13660
|
# },
|
|
13646
13661
|
# deletion_protection: false,
|
|
13647
13662
|
# enable_http_endpoint: false,
|
|
@@ -14206,7 +14221,7 @@ module Aws::RDS
|
|
|
14206
14221
|
# @return [String]
|
|
14207
14222
|
#
|
|
14208
14223
|
# @!attribute [rw] allocated_storage
|
|
14209
|
-
# The new amount of storage
|
|
14224
|
+
# The new amount of storage in gibibytes (GiB) to allocate for the DB
|
|
14210
14225
|
# instance.
|
|
14211
14226
|
#
|
|
14212
14227
|
# For MariaDB, MySQL, Oracle, and PostgreSQL, the value supplied must
|
|
@@ -14850,8 +14865,8 @@ module Aws::RDS
|
|
|
14850
14865
|
# @return [Boolean]
|
|
14851
14866
|
#
|
|
14852
14867
|
# @!attribute [rw] max_allocated_storage
|
|
14853
|
-
# The upper limit to which Amazon RDS can
|
|
14854
|
-
# storage of the DB instance.
|
|
14868
|
+
# The upper limit in gibibytes (GiB) to which Amazon RDS can
|
|
14869
|
+
# automatically scale the storage of the DB instance.
|
|
14855
14870
|
#
|
|
14856
14871
|
# For more information about this setting, including limitations that
|
|
14857
14872
|
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
|
@@ -16670,7 +16685,7 @@ module Aws::RDS
|
|
|
16670
16685
|
#
|
|
16671
16686
|
# @!attribute [rw] allocated_storage
|
|
16672
16687
|
# The allocated storage size for the DB instance specified in
|
|
16673
|
-
# gibibytes .
|
|
16688
|
+
# gibibytes (GiB).
|
|
16674
16689
|
# @return [Integer]
|
|
16675
16690
|
#
|
|
16676
16691
|
# @!attribute [rw] master_user_password
|
|
@@ -18207,6 +18222,7 @@ module Aws::RDS
|
|
|
18207
18222
|
# auto_pause: false,
|
|
18208
18223
|
# seconds_until_auto_pause: 1,
|
|
18209
18224
|
# timeout_action: "String",
|
|
18225
|
+
# seconds_before_timeout: 1,
|
|
18210
18226
|
# },
|
|
18211
18227
|
# db_cluster_parameter_group_name: "String",
|
|
18212
18228
|
# deletion_protection: false,
|
|
@@ -18533,6 +18549,7 @@ module Aws::RDS
|
|
|
18533
18549
|
# auto_pause: false,
|
|
18534
18550
|
# seconds_until_auto_pause: 1,
|
|
18535
18551
|
# timeout_action: "String",
|
|
18552
|
+
# seconds_before_timeout: 1,
|
|
18536
18553
|
# },
|
|
18537
18554
|
# engine_mode: "String",
|
|
18538
18555
|
# }
|
|
@@ -19716,8 +19733,8 @@ module Aws::RDS
|
|
|
19716
19733
|
# @return [Boolean]
|
|
19717
19734
|
#
|
|
19718
19735
|
# @!attribute [rw] max_allocated_storage
|
|
19719
|
-
# The upper limit to which Amazon RDS can
|
|
19720
|
-
# storage of the DB instance.
|
|
19736
|
+
# The upper limit in gibibytes (GiB) to which Amazon RDS can
|
|
19737
|
+
# automatically scale the storage of the DB instance.
|
|
19721
19738
|
#
|
|
19722
19739
|
# For more information about this setting, including limitations that
|
|
19723
19740
|
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
|
@@ -20166,8 +20183,8 @@ module Aws::RDS
|
|
|
20166
20183
|
# @return [String]
|
|
20167
20184
|
#
|
|
20168
20185
|
# @!attribute [rw] max_allocated_storage
|
|
20169
|
-
# The upper limit to which Amazon RDS can
|
|
20170
|
-
# storage of the DB instance.
|
|
20186
|
+
# The upper limit in gibibytes (GiB) to which Amazon RDS can
|
|
20187
|
+
# automatically scale the storage of the DB instance.
|
|
20171
20188
|
#
|
|
20172
20189
|
# For more information about this setting, including limitations that
|
|
20173
20190
|
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
|
@@ -20390,6 +20407,7 @@ module Aws::RDS
|
|
|
20390
20407
|
# auto_pause: false,
|
|
20391
20408
|
# seconds_until_auto_pause: 1,
|
|
20392
20409
|
# timeout_action: "String",
|
|
20410
|
+
# seconds_before_timeout: 1,
|
|
20393
20411
|
# }
|
|
20394
20412
|
#
|
|
20395
20413
|
# @!attribute [rw] min_capacity
|
|
@@ -20460,6 +20478,14 @@ module Aws::RDS
|
|
|
20460
20478
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.how-it-works.html#aurora-serverless.how-it-works.auto-scaling
|
|
20461
20479
|
# @return [String]
|
|
20462
20480
|
#
|
|
20481
|
+
# @!attribute [rw] seconds_before_timeout
|
|
20482
|
+
# The amount of time, in seconds, that Aurora Serverless tries to find
|
|
20483
|
+
# a scaling point to perform seamless scaling before enforcing the
|
|
20484
|
+
# timeout action. The default is 300.
|
|
20485
|
+
#
|
|
20486
|
+
# Specify a value between 60 and 600 seconds.
|
|
20487
|
+
# @return [Integer]
|
|
20488
|
+
#
|
|
20463
20489
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ScalingConfiguration AWS API Documentation
|
|
20464
20490
|
#
|
|
20465
20491
|
class ScalingConfiguration < Struct.new(
|
|
@@ -20467,7 +20493,8 @@ module Aws::RDS
|
|
|
20467
20493
|
:max_capacity,
|
|
20468
20494
|
:auto_pause,
|
|
20469
20495
|
:seconds_until_auto_pause,
|
|
20470
|
-
:timeout_action
|
|
20496
|
+
:timeout_action,
|
|
20497
|
+
:seconds_before_timeout)
|
|
20471
20498
|
SENSITIVE = []
|
|
20472
20499
|
include Aws::Structure
|
|
20473
20500
|
end
|
|
@@ -20507,10 +20534,23 @@ module Aws::RDS
|
|
|
20507
20534
|
# @return [Integer]
|
|
20508
20535
|
#
|
|
20509
20536
|
# @!attribute [rw] timeout_action
|
|
20510
|
-
# The
|
|
20537
|
+
# The action that occurs when Aurora times out while attempting to
|
|
20538
|
+
# change the capacity of an Aurora Serverless cluster. The value is
|
|
20511
20539
|
# either `ForceApplyCapacityChange` or `RollbackCapacityChange`.
|
|
20540
|
+
#
|
|
20541
|
+
# `ForceApplyCapacityChange`, the default, sets the capacity to the
|
|
20542
|
+
# specified value as soon as possible.
|
|
20543
|
+
#
|
|
20544
|
+
# `RollbackCapacityChange` ignores the capacity change if a scaling
|
|
20545
|
+
# point isn't found in the timeout period.
|
|
20512
20546
|
# @return [String]
|
|
20513
20547
|
#
|
|
20548
|
+
# @!attribute [rw] seconds_before_timeout
|
|
20549
|
+
# The number of seconds before scaling times out. What happens when an
|
|
20550
|
+
# attempted scaling action times out is determined by the
|
|
20551
|
+
# `TimeoutAction` setting.
|
|
20552
|
+
# @return [Integer]
|
|
20553
|
+
#
|
|
20514
20554
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ScalingConfigurationInfo AWS API Documentation
|
|
20515
20555
|
#
|
|
20516
20556
|
class ScalingConfigurationInfo < Struct.new(
|
|
@@ -20518,7 +20558,8 @@ module Aws::RDS
|
|
|
20518
20558
|
:max_capacity,
|
|
20519
20559
|
:auto_pause,
|
|
20520
20560
|
:seconds_until_auto_pause,
|
|
20521
|
-
:timeout_action
|
|
20561
|
+
:timeout_action,
|
|
20562
|
+
:seconds_before_timeout)
|
|
20522
20563
|
SENSITIVE = []
|
|
20523
20564
|
include Aws::Structure
|
|
20524
20565
|
end
|
|
@@ -21454,7 +21495,8 @@ module Aws::RDS
|
|
|
21454
21495
|
# @return [String]
|
|
21455
21496
|
#
|
|
21456
21497
|
# @!attribute [rw] storage_size
|
|
21457
|
-
# The valid range of storage in gibibytes. For example, 100 to
|
|
21498
|
+
# The valid range of storage in gibibytes (GiB). For example, 100 to
|
|
21499
|
+
# 16384.
|
|
21458
21500
|
# @return [Array<Types::Range>]
|
|
21459
21501
|
#
|
|
21460
21502
|
# @!attribute [rw] provisioned_iops
|
data/lib/aws-sdk-rds.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-rds
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.128.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-10-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sigv4
|
|
@@ -33,7 +33,7 @@ dependencies:
|
|
|
33
33
|
version: '3'
|
|
34
34
|
- - ">="
|
|
35
35
|
- !ruby/object:Gem::Version
|
|
36
|
-
version: 3.
|
|
36
|
+
version: 3.121.2
|
|
37
37
|
type: :runtime
|
|
38
38
|
prerelease: false
|
|
39
39
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -43,7 +43,7 @@ dependencies:
|
|
|
43
43
|
version: '3'
|
|
44
44
|
- - ">="
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
|
-
version: 3.
|
|
46
|
+
version: 3.121.2
|
|
47
47
|
description: Official AWS Ruby gem for Amazon Relational Database Service (Amazon
|
|
48
48
|
RDS). This gem is part of the AWS SDK for Ruby.
|
|
49
49
|
email:
|
|
@@ -104,7 +104,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
104
104
|
requirements:
|
|
105
105
|
- - ">="
|
|
106
106
|
- !ruby/object:Gem::Version
|
|
107
|
-
version: '
|
|
107
|
+
version: '2.3'
|
|
108
108
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
109
109
|
requirements:
|
|
110
110
|
- - ">="
|