aws-sdk-rds 1.240.0 → 1.241.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +133 -56
- data/lib/aws-sdk-rds/client_api.rb +3 -0
- data/lib/aws-sdk-rds/db_cluster.rb +22 -24
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +12 -4
- data/lib/aws-sdk-rds/db_engine_version.rb +6 -2
- data/lib/aws-sdk-rds/db_instance.rb +24 -8
- data/lib/aws-sdk-rds/db_parameter_group.rb +6 -2
- data/lib/aws-sdk-rds/db_snapshot.rb +24 -8
- data/lib/aws-sdk-rds/event_subscription.rb +6 -2
- data/lib/aws-sdk-rds/option_group.rb +6 -2
- data/lib/aws-sdk-rds/reserved_db_instances_offering.rb +6 -2
- data/lib/aws-sdk-rds/resource.rb +6 -2
- data/lib/aws-sdk-rds/types.rb +191 -81
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +7 -1
- data/sig/types.rbs +3 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b91ae4bb77b9c33aa8f5bd6ccdc6f3df6217604fa94d8720b3d4db2a8a793075
|
4
|
+
data.tar.gz: 5f63f153e2d1fcd73c70c3d47fe0986c9b4107bf5c76c308c6287668c511361d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 91d0ae98d5dec43640a60fdef2f11c3fc45e72f81917806f60dd231feafca190d77ac2864e8699b9a4d887206ba02dc9e34fbde911a23ef2f6b911b5944d0bd2
|
7
|
+
data.tar.gz: 79284df79f8171f9f0ccd0e00d9589cf8e83587bf52aec44e86f5190c3659c58d03e0c03bdcd6211fc2a5b5da29bc1030fc87b4579666516ce206a8b4fd1e004
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.241.0 (2024-08-01)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for specifying optional MinACU parameter in CreateDBShardGroup and ModifyDBShardGroup API. DBShardGroup response will contain MinACU if specified.
|
8
|
+
|
4
9
|
1.240.0 (2024-07-18)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.241.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -1118,12 +1118,16 @@ module Aws::RDS
|
|
1118
1118
|
# A description for the copied DB cluster parameter group.
|
1119
1119
|
#
|
1120
1120
|
# @option params [Array<Types::Tag>] :tags
|
1121
|
-
# A list of tags.
|
1122
|
-
#
|
1121
|
+
# A list of tags.
|
1122
|
+
#
|
1123
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
1124
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
1125
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
1123
1126
|
#
|
1124
1127
|
#
|
1125
1128
|
#
|
1126
1129
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
1130
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
1127
1131
|
#
|
1128
1132
|
# @return [Types::CopyDBClusterParameterGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1129
1133
|
#
|
@@ -1354,12 +1358,16 @@ module Aws::RDS
|
|
1354
1358
|
# to the target DB cluster snapshot. By default, tags are not copied.
|
1355
1359
|
#
|
1356
1360
|
# @option params [Array<Types::Tag>] :tags
|
1357
|
-
# A list of tags.
|
1358
|
-
#
|
1361
|
+
# A list of tags.
|
1362
|
+
#
|
1363
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
1364
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
1365
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
1359
1366
|
#
|
1360
1367
|
#
|
1361
1368
|
#
|
1362
1369
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
1370
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
1363
1371
|
#
|
1364
1372
|
# @option params [String] :source_region
|
1365
1373
|
# The source region of the snapshot. This is only needed when the
|
@@ -1509,12 +1517,16 @@ module Aws::RDS
|
|
1509
1517
|
# A description for the copied DB parameter group.
|
1510
1518
|
#
|
1511
1519
|
# @option params [Array<Types::Tag>] :tags
|
1512
|
-
# A list of tags.
|
1513
|
-
#
|
1520
|
+
# A list of tags.
|
1521
|
+
#
|
1522
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
1523
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
1524
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
1514
1525
|
#
|
1515
1526
|
#
|
1516
1527
|
#
|
1517
1528
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
1529
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
1518
1530
|
#
|
1519
1531
|
# @return [Types::CopyDBParameterGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1520
1532
|
#
|
@@ -1658,12 +1670,16 @@ module Aws::RDS
|
|
1658
1670
|
# another Amazon Web Services Region.
|
1659
1671
|
#
|
1660
1672
|
# @option params [Array<Types::Tag>] :tags
|
1661
|
-
# A list of tags.
|
1662
|
-
#
|
1673
|
+
# A list of tags.
|
1674
|
+
#
|
1675
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
1676
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
1677
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
1663
1678
|
#
|
1664
1679
|
#
|
1665
1680
|
#
|
1666
1681
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
1682
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
1667
1683
|
#
|
1668
1684
|
# @option params [Boolean] :copy_tags
|
1669
1685
|
# Specifies whether to copy all tags from the source DB snapshot to the
|
@@ -1916,12 +1932,16 @@ module Aws::RDS
|
|
1916
1932
|
# The description for the copied option group.
|
1917
1933
|
#
|
1918
1934
|
# @option params [Array<Types::Tag>] :tags
|
1919
|
-
# A list of tags.
|
1920
|
-
#
|
1935
|
+
# A list of tags.
|
1936
|
+
#
|
1937
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
1938
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
1939
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
1921
1940
|
#
|
1922
1941
|
#
|
1923
1942
|
#
|
1924
1943
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
1944
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
1925
1945
|
#
|
1926
1946
|
# @return [Types::CopyOptionGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1927
1947
|
#
|
@@ -2377,12 +2397,16 @@ module Aws::RDS
|
|
2377
2397
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html#custom-cev.preparing.manifest
|
2378
2398
|
#
|
2379
2399
|
# @option params [Array<Types::Tag>] :tags
|
2380
|
-
# A list of tags.
|
2381
|
-
#
|
2400
|
+
# A list of tags.
|
2401
|
+
#
|
2402
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
2403
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
2404
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
2382
2405
|
#
|
2383
2406
|
#
|
2384
2407
|
#
|
2385
2408
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
2409
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
2386
2410
|
#
|
2387
2411
|
# @option params [String] :source_custom_db_engine_version_identifier
|
2388
2412
|
# The ARN of a CEV to use as a source for creating a new CEV. You can
|
@@ -6075,12 +6099,16 @@ module Aws::RDS
|
|
6075
6099
|
# For more information, see CreateDBInstance.
|
6076
6100
|
#
|
6077
6101
|
# @option params [Array<Types::Tag>] :tags
|
6078
|
-
# A list of tags.
|
6079
|
-
#
|
6102
|
+
# A list of tags.
|
6103
|
+
#
|
6104
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
6105
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
6106
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
6080
6107
|
#
|
6081
6108
|
#
|
6082
6109
|
#
|
6083
6110
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
6111
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
6084
6112
|
#
|
6085
6113
|
# @option params [String] :db_subnet_group_name
|
6086
6114
|
# A DB subnet group for the DB instance. The new DB instance is created
|
@@ -7156,12 +7184,16 @@ module Aws::RDS
|
|
7156
7184
|
# Microsoft SQL Server support is `READ_WRITE`.
|
7157
7185
|
#
|
7158
7186
|
# @option params [Array<Types::Tag>] :tags
|
7159
|
-
# A list of tags.
|
7160
|
-
#
|
7187
|
+
# A list of tags.
|
7188
|
+
#
|
7189
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
7190
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
7191
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
7161
7192
|
#
|
7162
7193
|
#
|
7163
7194
|
#
|
7164
7195
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
7196
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
7165
7197
|
#
|
7166
7198
|
# @return [Types::CreateDBProxyEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7167
7199
|
#
|
@@ -7338,6 +7370,10 @@ module Aws::RDS
|
|
7338
7370
|
# The maximum capacity of the DB shard group in Aurora capacity units
|
7339
7371
|
# (ACUs).
|
7340
7372
|
#
|
7373
|
+
# @option params [Float] :min_acu
|
7374
|
+
# The minimum capacity of the DB shard group in Aurora capacity units
|
7375
|
+
# (ACUs).
|
7376
|
+
#
|
7341
7377
|
# @option params [Boolean] :publicly_accessible
|
7342
7378
|
# Specifies whether the DB shard group is publicly accessible.
|
7343
7379
|
#
|
@@ -7379,6 +7415,7 @@ module Aws::RDS
|
|
7379
7415
|
# * {Types::DBShardGroup#db_shard_group_identifier #db_shard_group_identifier} => String
|
7380
7416
|
# * {Types::DBShardGroup#db_cluster_identifier #db_cluster_identifier} => String
|
7381
7417
|
# * {Types::DBShardGroup#max_acu #max_acu} => Float
|
7418
|
+
# * {Types::DBShardGroup#min_acu #min_acu} => Float
|
7382
7419
|
# * {Types::DBShardGroup#compute_redundancy #compute_redundancy} => Integer
|
7383
7420
|
# * {Types::DBShardGroup#status #status} => String
|
7384
7421
|
# * {Types::DBShardGroup#publicly_accessible #publicly_accessible} => Boolean
|
@@ -7391,6 +7428,7 @@ module Aws::RDS
|
|
7391
7428
|
# db_cluster_identifier: "String", # required
|
7392
7429
|
# compute_redundancy: 1,
|
7393
7430
|
# max_acu: 1.0, # required
|
7431
|
+
# min_acu: 1.0,
|
7394
7432
|
# publicly_accessible: false,
|
7395
7433
|
# })
|
7396
7434
|
#
|
@@ -7400,6 +7438,7 @@ module Aws::RDS
|
|
7400
7438
|
# resp.db_shard_group_identifier #=> String
|
7401
7439
|
# resp.db_cluster_identifier #=> String
|
7402
7440
|
# resp.max_acu #=> Float
|
7441
|
+
# resp.min_acu #=> Float
|
7403
7442
|
# resp.compute_redundancy #=> Integer
|
7404
7443
|
# resp.status #=> String
|
7405
7444
|
# resp.publicly_accessible #=> Boolean
|
@@ -7443,12 +7482,16 @@ module Aws::RDS
|
|
7443
7482
|
# ^
|
7444
7483
|
#
|
7445
7484
|
# @option params [Array<Types::Tag>] :tags
|
7446
|
-
# A list of tags.
|
7447
|
-
#
|
7485
|
+
# A list of tags.
|
7486
|
+
#
|
7487
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
7488
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
7489
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
7448
7490
|
#
|
7449
7491
|
#
|
7450
7492
|
#
|
7451
7493
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
7494
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
7452
7495
|
#
|
7453
7496
|
# @return [Types::CreateDBSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7454
7497
|
#
|
@@ -7794,12 +7837,16 @@ module Aws::RDS
|
|
7794
7837
|
# created but not active.
|
7795
7838
|
#
|
7796
7839
|
# @option params [Array<Types::Tag>] :tags
|
7797
|
-
# A list of tags.
|
7798
|
-
#
|
7840
|
+
# A list of tags.
|
7841
|
+
#
|
7842
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
7843
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
7844
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
7799
7845
|
#
|
7800
7846
|
#
|
7801
7847
|
#
|
7802
7848
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
7849
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
7803
7850
|
#
|
7804
7851
|
# @return [Types::CreateEventSubscriptionResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7805
7852
|
#
|
@@ -8108,12 +8155,16 @@ module Aws::RDS
|
|
8108
8155
|
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context
|
8109
8156
|
#
|
8110
8157
|
# @option params [Array<Types::Tag>] :tags
|
8111
|
-
# A list of tags.
|
8112
|
-
#
|
8158
|
+
# A list of tags.
|
8159
|
+
#
|
8160
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
8161
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
8162
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
8113
8163
|
#
|
8114
8164
|
#
|
8115
8165
|
#
|
8116
8166
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
8167
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
8117
8168
|
#
|
8118
8169
|
# @option params [String] :data_filter
|
8119
8170
|
# Data filtering options for the integration. For more information, see
|
@@ -8410,12 +8461,16 @@ module Aws::RDS
|
|
8410
8461
|
# The `NCHAR` value for the tenant database.
|
8411
8462
|
#
|
8412
8463
|
# @option params [Array<Types::Tag>] :tags
|
8413
|
-
# A list of tags.
|
8414
|
-
#
|
8464
|
+
# A list of tags.
|
8465
|
+
#
|
8466
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
8467
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
8468
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
8415
8469
|
#
|
8416
8470
|
#
|
8417
8471
|
#
|
8418
8472
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
8473
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
8419
8474
|
#
|
8420
8475
|
# @return [Types::CreateTenantDatabaseResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8421
8476
|
#
|
@@ -8868,14 +8923,14 @@ module Aws::RDS
|
|
8868
8923
|
#
|
8869
8924
|
# @option params [Boolean] :skip_final_snapshot
|
8870
8925
|
# Specifies whether to skip the creation of a final DB cluster snapshot
|
8871
|
-
# before the DB cluster
|
8872
|
-
#
|
8873
|
-
#
|
8874
|
-
#
|
8875
|
-
#
|
8926
|
+
# before RDS deletes the DB cluster. If you set this value to `true`,
|
8927
|
+
# RDS doesn't create a final DB cluster snapshot. If you set this value
|
8928
|
+
# to `false` or don't specify it, RDS creates a DB cluster snapshot
|
8929
|
+
# before it deletes the DB cluster. By default, this parameter is
|
8930
|
+
# disabled, so RDS creates a final DB cluster snapshot.
|
8876
8931
|
#
|
8877
|
-
# <note markdown="1">
|
8878
|
-
# `
|
8932
|
+
# <note markdown="1"> If `SkipFinalSnapshot` is disabled, you must specify a value for the
|
8933
|
+
# `FinalDBSnapshotIdentifier` parameter.
|
8879
8934
|
#
|
8880
8935
|
# </note>
|
8881
8936
|
#
|
@@ -8883,9 +8938,9 @@ module Aws::RDS
|
|
8883
8938
|
# The DB cluster snapshot identifier of the new DB cluster snapshot
|
8884
8939
|
# created when `SkipFinalSnapshot` is disabled.
|
8885
8940
|
#
|
8886
|
-
# <note markdown="1">
|
8887
|
-
# cluster snapshot with the `SkipFinalShapshot` parameter
|
8888
|
-
# error.
|
8941
|
+
# <note markdown="1"> If you specify this parameter and also skip the creation of a final DB
|
8942
|
+
# cluster snapshot with the `SkipFinalShapshot` parameter, the request
|
8943
|
+
# results in an error.
|
8889
8944
|
#
|
8890
8945
|
# </note>
|
8891
8946
|
#
|
@@ -8903,16 +8958,6 @@ module Aws::RDS
|
|
8903
8958
|
# is to remove automated backups immediately after the DB cluster is
|
8904
8959
|
# deleted.
|
8905
8960
|
#
|
8906
|
-
# <note markdown="1"> You must delete automated backups for Amazon RDS Multi-AZ DB clusters.
|
8907
|
-
# For more information about managing automated backups for RDS Multi-AZ
|
8908
|
-
# DB clusters, see [Managing automated backups][1].
|
8909
|
-
#
|
8910
|
-
# </note>
|
8911
|
-
#
|
8912
|
-
#
|
8913
|
-
#
|
8914
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ManagingAutomatedBackups.html
|
8915
|
-
#
|
8916
8961
|
# @return [Types::DeleteDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8917
8962
|
#
|
8918
8963
|
# * {Types::DeleteDBClusterResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -10023,6 +10068,7 @@ module Aws::RDS
|
|
10023
10068
|
# * {Types::DBShardGroup#db_shard_group_identifier #db_shard_group_identifier} => String
|
10024
10069
|
# * {Types::DBShardGroup#db_cluster_identifier #db_cluster_identifier} => String
|
10025
10070
|
# * {Types::DBShardGroup#max_acu #max_acu} => Float
|
10071
|
+
# * {Types::DBShardGroup#min_acu #min_acu} => Float
|
10026
10072
|
# * {Types::DBShardGroup#compute_redundancy #compute_redundancy} => Integer
|
10027
10073
|
# * {Types::DBShardGroup#status #status} => String
|
10028
10074
|
# * {Types::DBShardGroup#publicly_accessible #publicly_accessible} => Boolean
|
@@ -10040,6 +10086,7 @@ module Aws::RDS
|
|
10040
10086
|
# resp.db_shard_group_identifier #=> String
|
10041
10087
|
# resp.db_cluster_identifier #=> String
|
10042
10088
|
# resp.max_acu #=> Float
|
10089
|
+
# resp.min_acu #=> Float
|
10043
10090
|
# resp.compute_redundancy #=> Integer
|
10044
10091
|
# resp.status #=> String
|
10045
10092
|
# resp.publicly_accessible #=> Boolean
|
@@ -11747,7 +11794,7 @@ module Aws::RDS
|
|
11747
11794
|
#
|
11748
11795
|
# Valid Values:
|
11749
11796
|
#
|
11750
|
-
# * `
|
11797
|
+
# * `customer`
|
11751
11798
|
#
|
11752
11799
|
# * `engine`
|
11753
11800
|
#
|
@@ -14325,6 +14372,7 @@ module Aws::RDS
|
|
14325
14372
|
# resp.db_shard_groups[0].db_shard_group_identifier #=> String
|
14326
14373
|
# resp.db_shard_groups[0].db_cluster_identifier #=> String
|
14327
14374
|
# resp.db_shard_groups[0].max_acu #=> Float
|
14375
|
+
# resp.db_shard_groups[0].min_acu #=> Float
|
14328
14376
|
# resp.db_shard_groups[0].compute_redundancy #=> Integer
|
14329
14377
|
# resp.db_shard_groups[0].status #=> String
|
14330
14378
|
# resp.db_shard_groups[0].publicly_accessible #=> Boolean
|
@@ -21730,12 +21778,17 @@ module Aws::RDS
|
|
21730
21778
|
# The maximum capacity of the DB shard group in Aurora capacity units
|
21731
21779
|
# (ACUs).
|
21732
21780
|
#
|
21781
|
+
# @option params [Float] :min_acu
|
21782
|
+
# The minimum capacity of the DB shard group in Aurora capacity units
|
21783
|
+
# (ACUs).
|
21784
|
+
#
|
21733
21785
|
# @return [Types::DBShardGroup] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
21734
21786
|
#
|
21735
21787
|
# * {Types::DBShardGroup#db_shard_group_resource_id #db_shard_group_resource_id} => String
|
21736
21788
|
# * {Types::DBShardGroup#db_shard_group_identifier #db_shard_group_identifier} => String
|
21737
21789
|
# * {Types::DBShardGroup#db_cluster_identifier #db_cluster_identifier} => String
|
21738
21790
|
# * {Types::DBShardGroup#max_acu #max_acu} => Float
|
21791
|
+
# * {Types::DBShardGroup#min_acu #min_acu} => Float
|
21739
21792
|
# * {Types::DBShardGroup#compute_redundancy #compute_redundancy} => Integer
|
21740
21793
|
# * {Types::DBShardGroup#status #status} => String
|
21741
21794
|
# * {Types::DBShardGroup#publicly_accessible #publicly_accessible} => Boolean
|
@@ -21746,6 +21799,7 @@ module Aws::RDS
|
|
21746
21799
|
# resp = client.modify_db_shard_group({
|
21747
21800
|
# db_shard_group_identifier: "DBShardGroupIdentifier", # required
|
21748
21801
|
# max_acu: 1.0,
|
21802
|
+
# min_acu: 1.0,
|
21749
21803
|
# })
|
21750
21804
|
#
|
21751
21805
|
# @example Response structure
|
@@ -21754,6 +21808,7 @@ module Aws::RDS
|
|
21754
21808
|
# resp.db_shard_group_identifier #=> String
|
21755
21809
|
# resp.db_cluster_identifier #=> String
|
21756
21810
|
# resp.max_acu #=> Float
|
21811
|
+
# resp.min_acu #=> Float
|
21757
21812
|
# resp.compute_redundancy #=> Integer
|
21758
21813
|
# resp.status #=> String
|
21759
21814
|
# resp.publicly_accessible #=> Boolean
|
@@ -23240,12 +23295,16 @@ module Aws::RDS
|
|
23240
23295
|
# Default: `1`
|
23241
23296
|
#
|
23242
23297
|
# @option params [Array<Types::Tag>] :tags
|
23243
|
-
# A list of tags.
|
23244
|
-
#
|
23298
|
+
# A list of tags.
|
23299
|
+
#
|
23300
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
23301
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
23302
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
23245
23303
|
#
|
23246
23304
|
#
|
23247
23305
|
#
|
23248
23306
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
23307
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
23249
23308
|
#
|
23250
23309
|
# @return [Types::PurchaseReservedDBInstancesOfferingResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
23251
23310
|
#
|
@@ -23780,6 +23839,7 @@ module Aws::RDS
|
|
23780
23839
|
# * {Types::DBShardGroup#db_shard_group_identifier #db_shard_group_identifier} => String
|
23781
23840
|
# * {Types::DBShardGroup#db_cluster_identifier #db_cluster_identifier} => String
|
23782
23841
|
# * {Types::DBShardGroup#max_acu #max_acu} => Float
|
23842
|
+
# * {Types::DBShardGroup#min_acu #min_acu} => Float
|
23783
23843
|
# * {Types::DBShardGroup#compute_redundancy #compute_redundancy} => Integer
|
23784
23844
|
# * {Types::DBShardGroup#status #status} => String
|
23785
23845
|
# * {Types::DBShardGroup#publicly_accessible #publicly_accessible} => Boolean
|
@@ -23797,6 +23857,7 @@ module Aws::RDS
|
|
23797
23857
|
# resp.db_shard_group_identifier #=> String
|
23798
23858
|
# resp.db_cluster_identifier #=> String
|
23799
23859
|
# resp.max_acu #=> Float
|
23860
|
+
# resp.min_acu #=> Float
|
23800
23861
|
# resp.compute_redundancy #=> Integer
|
23801
23862
|
# resp.status #=> String
|
23802
23863
|
# resp.publicly_accessible #=> Boolean
|
@@ -24569,12 +24630,16 @@ module Aws::RDS
|
|
24569
24630
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow.Aurora
|
24570
24631
|
#
|
24571
24632
|
# @option params [Array<Types::Tag>] :tags
|
24572
|
-
# A list of tags.
|
24573
|
-
#
|
24633
|
+
# A list of tags.
|
24634
|
+
#
|
24635
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
24636
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
24637
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
24574
24638
|
#
|
24575
24639
|
#
|
24576
24640
|
#
|
24577
24641
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
24642
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
24578
24643
|
#
|
24579
24644
|
# @option params [Boolean] :storage_encrypted
|
24580
24645
|
# Specifies whether the restored DB cluster is encrypted.
|
@@ -25976,12 +26041,16 @@ module Aws::RDS
|
|
25976
26041
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
25977
26042
|
#
|
25978
26043
|
# @option params [Array<Types::Tag>] :tags
|
25979
|
-
# A list of tags.
|
25980
|
-
#
|
26044
|
+
# A list of tags.
|
26045
|
+
#
|
26046
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
26047
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
26048
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
25981
26049
|
#
|
25982
26050
|
#
|
25983
26051
|
#
|
25984
26052
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
26053
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
25985
26054
|
#
|
25986
26055
|
# @option params [String] :kms_key_id
|
25987
26056
|
# The Amazon Web Services KMS key identifier to use when restoring an
|
@@ -26815,12 +26884,16 @@ module Aws::RDS
|
|
26815
26884
|
# This setting doesn't apply to RDS Custom.
|
26816
26885
|
#
|
26817
26886
|
# @option params [Array<Types::Tag>] :tags
|
26818
|
-
# A list of tags.
|
26819
|
-
#
|
26887
|
+
# A list of tags.
|
26888
|
+
#
|
26889
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
26890
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
26891
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
26820
26892
|
#
|
26821
26893
|
#
|
26822
26894
|
#
|
26823
26895
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
26896
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
26824
26897
|
#
|
26825
26898
|
# @option params [String] :storage_type
|
26826
26899
|
# Specifies the storage type to be associated with the DB instance.
|
@@ -28510,12 +28583,16 @@ module Aws::RDS
|
|
28510
28583
|
# snapshots of the DB instance. By default, tags are not copied.
|
28511
28584
|
#
|
28512
28585
|
# @option params [Array<Types::Tag>] :tags
|
28513
|
-
# A list of tags.
|
28514
|
-
#
|
28586
|
+
# A list of tags.
|
28587
|
+
#
|
28588
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
28589
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
28590
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
28515
28591
|
#
|
28516
28592
|
#
|
28517
28593
|
#
|
28518
28594
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
28595
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
28519
28596
|
#
|
28520
28597
|
# @option params [String] :storage_type
|
28521
28598
|
# The storage type to associate with the DB instance.
|
@@ -31281,7 +31358,7 @@ module Aws::RDS
|
|
31281
31358
|
params: params,
|
31282
31359
|
config: config)
|
31283
31360
|
context[:gem_name] = 'aws-sdk-rds'
|
31284
|
-
context[:gem_version] = '1.
|
31361
|
+
context[:gem_version] = '1.241.0'
|
31285
31362
|
Seahorse::Client::Request.new(handlers, context)
|
31286
31363
|
end
|
31287
31364
|
|
@@ -1267,6 +1267,7 @@ module Aws::RDS
|
|
1267
1267
|
CreateDBShardGroupMessage.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterIdentifier"))
|
1268
1268
|
CreateDBShardGroupMessage.add_member(:compute_redundancy, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "ComputeRedundancy"))
|
1269
1269
|
CreateDBShardGroupMessage.add_member(:max_acu, Shapes::ShapeRef.new(shape: DoubleOptional, required: true, location_name: "MaxACU"))
|
1270
|
+
CreateDBShardGroupMessage.add_member(:min_acu, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MinACU"))
|
1270
1271
|
CreateDBShardGroupMessage.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "PubliclyAccessible"))
|
1271
1272
|
CreateDBShardGroupMessage.struct_class = Types::CreateDBShardGroupMessage
|
1272
1273
|
|
@@ -2018,6 +2019,7 @@ module Aws::RDS
|
|
2018
2019
|
DBShardGroup.add_member(:db_shard_group_identifier, Shapes::ShapeRef.new(shape: DBShardGroupIdentifier, location_name: "DBShardGroupIdentifier"))
|
2019
2020
|
DBShardGroup.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterIdentifier"))
|
2020
2021
|
DBShardGroup.add_member(:max_acu, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MaxACU"))
|
2022
|
+
DBShardGroup.add_member(:min_acu, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MinACU"))
|
2021
2023
|
DBShardGroup.add_member(:compute_redundancy, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "ComputeRedundancy"))
|
2022
2024
|
DBShardGroup.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
|
2023
2025
|
DBShardGroup.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "PubliclyAccessible"))
|
@@ -3212,6 +3214,7 @@ module Aws::RDS
|
|
3212
3214
|
|
3213
3215
|
ModifyDBShardGroupMessage.add_member(:db_shard_group_identifier, Shapes::ShapeRef.new(shape: DBShardGroupIdentifier, required: true, location_name: "DBShardGroupIdentifier"))
|
3214
3216
|
ModifyDBShardGroupMessage.add_member(:max_acu, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MaxACU"))
|
3217
|
+
ModifyDBShardGroupMessage.add_member(:min_acu, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MinACU"))
|
3215
3218
|
ModifyDBShardGroupMessage.struct_class = Types::ModifyDBShardGroupMessage
|
3216
3219
|
|
3217
3220
|
ModifyDBSnapshotAttributeMessage.add_member(:db_snapshot_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBSnapshotIdentifier"))
|
@@ -455,12 +455,16 @@ module Aws::RDS
|
|
455
455
|
data[:domain_memberships]
|
456
456
|
end
|
457
457
|
|
458
|
-
# A list of tags.
|
459
|
-
#
|
458
|
+
# A list of tags.
|
459
|
+
#
|
460
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
461
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
462
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
460
463
|
#
|
461
464
|
#
|
462
465
|
#
|
463
466
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
467
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
464
468
|
# @return [Array<Types::Tag>]
|
465
469
|
def tag_list
|
466
470
|
data[:tag_list]
|
@@ -1822,23 +1826,23 @@ module Aws::RDS
|
|
1822
1826
|
# @param [Hash] options ({})
|
1823
1827
|
# @option options [Boolean] :skip_final_snapshot
|
1824
1828
|
# Specifies whether to skip the creation of a final DB cluster snapshot
|
1825
|
-
# before the DB cluster
|
1826
|
-
#
|
1827
|
-
#
|
1828
|
-
#
|
1829
|
-
#
|
1829
|
+
# before RDS deletes the DB cluster. If you set this value to `true`,
|
1830
|
+
# RDS doesn't create a final DB cluster snapshot. If you set this value
|
1831
|
+
# to `false` or don't specify it, RDS creates a DB cluster snapshot
|
1832
|
+
# before it deletes the DB cluster. By default, this parameter is
|
1833
|
+
# disabled, so RDS creates a final DB cluster snapshot.
|
1830
1834
|
#
|
1831
|
-
# <note markdown="1">
|
1832
|
-
# `
|
1835
|
+
# <note markdown="1"> If `SkipFinalSnapshot` is disabled, you must specify a value for the
|
1836
|
+
# `FinalDBSnapshotIdentifier` parameter.
|
1833
1837
|
#
|
1834
1838
|
# </note>
|
1835
1839
|
# @option options [String] :final_db_snapshot_identifier
|
1836
1840
|
# The DB cluster snapshot identifier of the new DB cluster snapshot
|
1837
1841
|
# created when `SkipFinalSnapshot` is disabled.
|
1838
1842
|
#
|
1839
|
-
# <note markdown="1">
|
1840
|
-
# cluster snapshot with the `SkipFinalShapshot` parameter
|
1841
|
-
# error.
|
1843
|
+
# <note markdown="1"> If you specify this parameter and also skip the creation of a final DB
|
1844
|
+
# cluster snapshot with the `SkipFinalShapshot` parameter, the request
|
1845
|
+
# results in an error.
|
1842
1846
|
#
|
1843
1847
|
# </note>
|
1844
1848
|
#
|
@@ -1854,16 +1858,6 @@ module Aws::RDS
|
|
1854
1858
|
# cluster is deleted. This parameter isn't case-sensitive. The default
|
1855
1859
|
# is to remove automated backups immediately after the DB cluster is
|
1856
1860
|
# deleted.
|
1857
|
-
#
|
1858
|
-
# <note markdown="1"> You must delete automated backups for Amazon RDS Multi-AZ DB clusters.
|
1859
|
-
# For more information about managing automated backups for RDS Multi-AZ
|
1860
|
-
# DB clusters, see [Managing automated backups][1].
|
1861
|
-
#
|
1862
|
-
# </note>
|
1863
|
-
#
|
1864
|
-
#
|
1865
|
-
#
|
1866
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ManagingAutomatedBackups.html
|
1867
1861
|
# @return [DBCluster]
|
1868
1862
|
def delete(options = {})
|
1869
1863
|
options = options.merge(db_cluster_identifier: @id)
|
@@ -2755,12 +2749,16 @@ module Aws::RDS
|
|
2755
2749
|
#
|
2756
2750
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
2757
2751
|
# @option options [Array<Types::Tag>] :tags
|
2758
|
-
# A list of tags.
|
2759
|
-
#
|
2752
|
+
# A list of tags.
|
2753
|
+
#
|
2754
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
2755
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
2756
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
2760
2757
|
#
|
2761
2758
|
#
|
2762
2759
|
#
|
2763
2760
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
2761
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
2764
2762
|
# @option options [String] :kms_key_id
|
2765
2763
|
# The Amazon Web Services KMS key identifier to use when restoring an
|
2766
2764
|
# encrypted DB cluster from an encrypted DB cluster.
|