aws-sdk-rds 1.239.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +162 -66
- data/lib/aws-sdk-rds/client_api.rb +3 -0
- data/lib/aws-sdk-rds/db_cluster.rb +38 -28
- 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 +48 -29
- 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 +22 -16
- data/lib/aws-sdk-rds/types.rb +224 -99
- 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,16 @@
|
|
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
|
+
|
9
|
+
1.240.0 (2024-07-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Updates Amazon RDS documentation to specify an eventual consistency model for DescribePendingMaintenanceActions.
|
13
|
+
|
4
14
|
1.239.0 (2024-07-12)
|
5
15
|
------------------
|
6
16
|
|
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
|
@@ -3180,13 +3204,14 @@ module Aws::RDS
|
|
3180
3204
|
# @option params [Boolean] :publicly_accessible
|
3181
3205
|
# Specifies whether the DB cluster is publicly accessible.
|
3182
3206
|
#
|
3183
|
-
# When the DB cluster is publicly accessible
|
3184
|
-
#
|
3185
|
-
#
|
3186
|
-
#
|
3187
|
-
#
|
3188
|
-
#
|
3189
|
-
#
|
3207
|
+
# When the DB cluster is publicly accessible and you connect from
|
3208
|
+
# outside of the DB cluster's virtual private cloud (VPC), its Domain
|
3209
|
+
# Name System (DNS) endpoint resolves to the public IP address. When you
|
3210
|
+
# connect from within the same VPC as the DB cluster, the endpoint
|
3211
|
+
# resolves to the private IP address. Access to the DB cluster is
|
3212
|
+
# ultimately controlled by the security group it uses. That public
|
3213
|
+
# access isn't permitted if the security group assigned to the DB
|
3214
|
+
# cluster doesn't permit it.
|
3190
3215
|
#
|
3191
3216
|
# When the DB cluster isn't publicly accessible, it is an internal DB
|
3192
3217
|
# cluster with a DNS name that resolves to a private IP address.
|
@@ -4965,13 +4990,14 @@ module Aws::RDS
|
|
4965
4990
|
# @option params [Boolean] :publicly_accessible
|
4966
4991
|
# Specifies whether the DB instance is publicly accessible.
|
4967
4992
|
#
|
4968
|
-
# When the DB instance is publicly accessible
|
4969
|
-
#
|
4970
|
-
#
|
4971
|
-
#
|
4972
|
-
#
|
4973
|
-
#
|
4974
|
-
#
|
4993
|
+
# When the DB instance is publicly accessible and you connect from
|
4994
|
+
# outside of the DB instance's virtual private cloud (VPC), its Domain
|
4995
|
+
# Name System (DNS) endpoint resolves to the public IP address. When you
|
4996
|
+
# connect from within the same VPC as the DB instance, the endpoint
|
4997
|
+
# resolves to the private IP address. Access to the DB instance is
|
4998
|
+
# ultimately controlled by the security group it uses. That public
|
4999
|
+
# access is not permitted if the security group assigned to the DB
|
5000
|
+
# instance doesn't permit it.
|
4975
5001
|
#
|
4976
5002
|
# When the DB instance isn't publicly accessible, it is an internal DB
|
4977
5003
|
# instance with a DNS name that resolves to a private IP address.
|
@@ -6073,12 +6099,16 @@ module Aws::RDS
|
|
6073
6099
|
# For more information, see CreateDBInstance.
|
6074
6100
|
#
|
6075
6101
|
# @option params [Array<Types::Tag>] :tags
|
6076
|
-
# A list of tags.
|
6077
|
-
#
|
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*.
|
6078
6107
|
#
|
6079
6108
|
#
|
6080
6109
|
#
|
6081
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
|
6082
6112
|
#
|
6083
6113
|
# @option params [String] :db_subnet_group_name
|
6084
6114
|
# A DB subnet group for the DB instance. The new DB instance is created
|
@@ -7154,12 +7184,16 @@ module Aws::RDS
|
|
7154
7184
|
# Microsoft SQL Server support is `READ_WRITE`.
|
7155
7185
|
#
|
7156
7186
|
# @option params [Array<Types::Tag>] :tags
|
7157
|
-
# A list of tags.
|
7158
|
-
#
|
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*.
|
7159
7192
|
#
|
7160
7193
|
#
|
7161
7194
|
#
|
7162
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
|
7163
7197
|
#
|
7164
7198
|
# @return [Types::CreateDBProxyEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7165
7199
|
#
|
@@ -7336,6 +7370,10 @@ module Aws::RDS
|
|
7336
7370
|
# The maximum capacity of the DB shard group in Aurora capacity units
|
7337
7371
|
# (ACUs).
|
7338
7372
|
#
|
7373
|
+
# @option params [Float] :min_acu
|
7374
|
+
# The minimum capacity of the DB shard group in Aurora capacity units
|
7375
|
+
# (ACUs).
|
7376
|
+
#
|
7339
7377
|
# @option params [Boolean] :publicly_accessible
|
7340
7378
|
# Specifies whether the DB shard group is publicly accessible.
|
7341
7379
|
#
|
@@ -7377,6 +7415,7 @@ module Aws::RDS
|
|
7377
7415
|
# * {Types::DBShardGroup#db_shard_group_identifier #db_shard_group_identifier} => String
|
7378
7416
|
# * {Types::DBShardGroup#db_cluster_identifier #db_cluster_identifier} => String
|
7379
7417
|
# * {Types::DBShardGroup#max_acu #max_acu} => Float
|
7418
|
+
# * {Types::DBShardGroup#min_acu #min_acu} => Float
|
7380
7419
|
# * {Types::DBShardGroup#compute_redundancy #compute_redundancy} => Integer
|
7381
7420
|
# * {Types::DBShardGroup#status #status} => String
|
7382
7421
|
# * {Types::DBShardGroup#publicly_accessible #publicly_accessible} => Boolean
|
@@ -7389,6 +7428,7 @@ module Aws::RDS
|
|
7389
7428
|
# db_cluster_identifier: "String", # required
|
7390
7429
|
# compute_redundancy: 1,
|
7391
7430
|
# max_acu: 1.0, # required
|
7431
|
+
# min_acu: 1.0,
|
7392
7432
|
# publicly_accessible: false,
|
7393
7433
|
# })
|
7394
7434
|
#
|
@@ -7398,6 +7438,7 @@ module Aws::RDS
|
|
7398
7438
|
# resp.db_shard_group_identifier #=> String
|
7399
7439
|
# resp.db_cluster_identifier #=> String
|
7400
7440
|
# resp.max_acu #=> Float
|
7441
|
+
# resp.min_acu #=> Float
|
7401
7442
|
# resp.compute_redundancy #=> Integer
|
7402
7443
|
# resp.status #=> String
|
7403
7444
|
# resp.publicly_accessible #=> Boolean
|
@@ -7441,12 +7482,16 @@ module Aws::RDS
|
|
7441
7482
|
# ^
|
7442
7483
|
#
|
7443
7484
|
# @option params [Array<Types::Tag>] :tags
|
7444
|
-
# A list of tags.
|
7445
|
-
#
|
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*.
|
7446
7490
|
#
|
7447
7491
|
#
|
7448
7492
|
#
|
7449
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
|
7450
7495
|
#
|
7451
7496
|
# @return [Types::CreateDBSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7452
7497
|
#
|
@@ -7792,12 +7837,16 @@ module Aws::RDS
|
|
7792
7837
|
# created but not active.
|
7793
7838
|
#
|
7794
7839
|
# @option params [Array<Types::Tag>] :tags
|
7795
|
-
# A list of tags.
|
7796
|
-
#
|
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*.
|
7797
7845
|
#
|
7798
7846
|
#
|
7799
7847
|
#
|
7800
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
|
7801
7850
|
#
|
7802
7851
|
# @return [Types::CreateEventSubscriptionResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7803
7852
|
#
|
@@ -8106,12 +8155,16 @@ module Aws::RDS
|
|
8106
8155
|
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context
|
8107
8156
|
#
|
8108
8157
|
# @option params [Array<Types::Tag>] :tags
|
8109
|
-
# A list of tags.
|
8110
|
-
#
|
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*.
|
8111
8163
|
#
|
8112
8164
|
#
|
8113
8165
|
#
|
8114
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
|
8115
8168
|
#
|
8116
8169
|
# @option params [String] :data_filter
|
8117
8170
|
# Data filtering options for the integration. For more information, see
|
@@ -8408,12 +8461,16 @@ module Aws::RDS
|
|
8408
8461
|
# The `NCHAR` value for the tenant database.
|
8409
8462
|
#
|
8410
8463
|
# @option params [Array<Types::Tag>] :tags
|
8411
|
-
# A list of tags.
|
8412
|
-
#
|
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*.
|
8413
8469
|
#
|
8414
8470
|
#
|
8415
8471
|
#
|
8416
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
|
8417
8474
|
#
|
8418
8475
|
# @return [Types::CreateTenantDatabaseResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8419
8476
|
#
|
@@ -8866,14 +8923,14 @@ module Aws::RDS
|
|
8866
8923
|
#
|
8867
8924
|
# @option params [Boolean] :skip_final_snapshot
|
8868
8925
|
# Specifies whether to skip the creation of a final DB cluster snapshot
|
8869
|
-
# before the DB cluster
|
8870
|
-
#
|
8871
|
-
#
|
8872
|
-
#
|
8873
|
-
#
|
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.
|
8874
8931
|
#
|
8875
|
-
# <note markdown="1">
|
8876
|
-
# `
|
8932
|
+
# <note markdown="1"> If `SkipFinalSnapshot` is disabled, you must specify a value for the
|
8933
|
+
# `FinalDBSnapshotIdentifier` parameter.
|
8877
8934
|
#
|
8878
8935
|
# </note>
|
8879
8936
|
#
|
@@ -8881,9 +8938,9 @@ module Aws::RDS
|
|
8881
8938
|
# The DB cluster snapshot identifier of the new DB cluster snapshot
|
8882
8939
|
# created when `SkipFinalSnapshot` is disabled.
|
8883
8940
|
#
|
8884
|
-
# <note markdown="1">
|
8885
|
-
# cluster snapshot with the `SkipFinalShapshot` parameter
|
8886
|
-
# 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.
|
8887
8944
|
#
|
8888
8945
|
# </note>
|
8889
8946
|
#
|
@@ -10011,6 +10068,7 @@ module Aws::RDS
|
|
10011
10068
|
# * {Types::DBShardGroup#db_shard_group_identifier #db_shard_group_identifier} => String
|
10012
10069
|
# * {Types::DBShardGroup#db_cluster_identifier #db_cluster_identifier} => String
|
10013
10070
|
# * {Types::DBShardGroup#max_acu #max_acu} => Float
|
10071
|
+
# * {Types::DBShardGroup#min_acu #min_acu} => Float
|
10014
10072
|
# * {Types::DBShardGroup#compute_redundancy #compute_redundancy} => Integer
|
10015
10073
|
# * {Types::DBShardGroup#status #status} => String
|
10016
10074
|
# * {Types::DBShardGroup#publicly_accessible #publicly_accessible} => Boolean
|
@@ -10028,6 +10086,7 @@ module Aws::RDS
|
|
10028
10086
|
# resp.db_shard_group_identifier #=> String
|
10029
10087
|
# resp.db_cluster_identifier #=> String
|
10030
10088
|
# resp.max_acu #=> Float
|
10089
|
+
# resp.min_acu #=> Float
|
10031
10090
|
# resp.compute_redundancy #=> Integer
|
10032
10091
|
# resp.status #=> String
|
10033
10092
|
# resp.publicly_accessible #=> Boolean
|
@@ -14313,6 +14372,7 @@ module Aws::RDS
|
|
14313
14372
|
# resp.db_shard_groups[0].db_shard_group_identifier #=> String
|
14314
14373
|
# resp.db_shard_groups[0].db_cluster_identifier #=> String
|
14315
14374
|
# resp.db_shard_groups[0].max_acu #=> Float
|
14375
|
+
# resp.db_shard_groups[0].min_acu #=> Float
|
14316
14376
|
# resp.db_shard_groups[0].compute_redundancy #=> Integer
|
14317
14377
|
# resp.db_shard_groups[0].status #=> String
|
14318
14378
|
# resp.db_shard_groups[0].publicly_accessible #=> Boolean
|
@@ -16591,6 +16651,12 @@ module Aws::RDS
|
|
16591
16651
|
# Returns a list of resources (for example, DB instances) that have at
|
16592
16652
|
# least one pending maintenance action.
|
16593
16653
|
#
|
16654
|
+
# This API follows an eventual consistency model. This means that the
|
16655
|
+
# result of the `DescribePendingMaintenanceActions` command might not be
|
16656
|
+
# immediately visible to all subsequent RDS commands. Keep this in mind
|
16657
|
+
# when you use `DescribePendingMaintenanceActions` immediately after
|
16658
|
+
# using a previous API command such as `ApplyPendingMaintenanceActions`.
|
16659
|
+
#
|
16594
16660
|
# @option params [String] :resource_identifier
|
16595
16661
|
# The ARN of a resource to return pending maintenance actions for.
|
16596
16662
|
#
|
@@ -20511,13 +20577,14 @@ module Aws::RDS
|
|
20511
20577
|
# @option params [Boolean] :publicly_accessible
|
20512
20578
|
# Specifies whether the DB instance is publicly accessible.
|
20513
20579
|
#
|
20514
|
-
# When the DB
|
20515
|
-
#
|
20516
|
-
#
|
20517
|
-
#
|
20518
|
-
#
|
20519
|
-
#
|
20520
|
-
#
|
20580
|
+
# When the DB instance is publicly accessible and you connect from
|
20581
|
+
# outside of the DB instance's virtual private cloud (VPC), its Domain
|
20582
|
+
# Name System (DNS) endpoint resolves to the public IP address. When you
|
20583
|
+
# connect from within the same VPC as the DB instance, the endpoint
|
20584
|
+
# resolves to the private IP address. Access to the DB instance is
|
20585
|
+
# ultimately controlled by the security group it uses. That public
|
20586
|
+
# access isn't permitted if the security group assigned to the DB
|
20587
|
+
# instance doesn't permit it.
|
20521
20588
|
#
|
20522
20589
|
# When the DB instance isn't publicly accessible, it is an internal DB
|
20523
20590
|
# instance with a DNS name that resolves to a private IP address.
|
@@ -21711,12 +21778,17 @@ module Aws::RDS
|
|
21711
21778
|
# The maximum capacity of the DB shard group in Aurora capacity units
|
21712
21779
|
# (ACUs).
|
21713
21780
|
#
|
21781
|
+
# @option params [Float] :min_acu
|
21782
|
+
# The minimum capacity of the DB shard group in Aurora capacity units
|
21783
|
+
# (ACUs).
|
21784
|
+
#
|
21714
21785
|
# @return [Types::DBShardGroup] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
21715
21786
|
#
|
21716
21787
|
# * {Types::DBShardGroup#db_shard_group_resource_id #db_shard_group_resource_id} => String
|
21717
21788
|
# * {Types::DBShardGroup#db_shard_group_identifier #db_shard_group_identifier} => String
|
21718
21789
|
# * {Types::DBShardGroup#db_cluster_identifier #db_cluster_identifier} => String
|
21719
21790
|
# * {Types::DBShardGroup#max_acu #max_acu} => Float
|
21791
|
+
# * {Types::DBShardGroup#min_acu #min_acu} => Float
|
21720
21792
|
# * {Types::DBShardGroup#compute_redundancy #compute_redundancy} => Integer
|
21721
21793
|
# * {Types::DBShardGroup#status #status} => String
|
21722
21794
|
# * {Types::DBShardGroup#publicly_accessible #publicly_accessible} => Boolean
|
@@ -21727,6 +21799,7 @@ module Aws::RDS
|
|
21727
21799
|
# resp = client.modify_db_shard_group({
|
21728
21800
|
# db_shard_group_identifier: "DBShardGroupIdentifier", # required
|
21729
21801
|
# max_acu: 1.0,
|
21802
|
+
# min_acu: 1.0,
|
21730
21803
|
# })
|
21731
21804
|
#
|
21732
21805
|
# @example Response structure
|
@@ -21735,6 +21808,7 @@ module Aws::RDS
|
|
21735
21808
|
# resp.db_shard_group_identifier #=> String
|
21736
21809
|
# resp.db_cluster_identifier #=> String
|
21737
21810
|
# resp.max_acu #=> Float
|
21811
|
+
# resp.min_acu #=> Float
|
21738
21812
|
# resp.compute_redundancy #=> Integer
|
21739
21813
|
# resp.status #=> String
|
21740
21814
|
# resp.publicly_accessible #=> Boolean
|
@@ -23221,12 +23295,16 @@ module Aws::RDS
|
|
23221
23295
|
# Default: `1`
|
23222
23296
|
#
|
23223
23297
|
# @option params [Array<Types::Tag>] :tags
|
23224
|
-
# A list of tags.
|
23225
|
-
#
|
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*.
|
23226
23303
|
#
|
23227
23304
|
#
|
23228
23305
|
#
|
23229
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
|
23230
23308
|
#
|
23231
23309
|
# @return [Types::PurchaseReservedDBInstancesOfferingResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
23232
23310
|
#
|
@@ -23761,6 +23839,7 @@ module Aws::RDS
|
|
23761
23839
|
# * {Types::DBShardGroup#db_shard_group_identifier #db_shard_group_identifier} => String
|
23762
23840
|
# * {Types::DBShardGroup#db_cluster_identifier #db_cluster_identifier} => String
|
23763
23841
|
# * {Types::DBShardGroup#max_acu #max_acu} => Float
|
23842
|
+
# * {Types::DBShardGroup#min_acu #min_acu} => Float
|
23764
23843
|
# * {Types::DBShardGroup#compute_redundancy #compute_redundancy} => Integer
|
23765
23844
|
# * {Types::DBShardGroup#status #status} => String
|
23766
23845
|
# * {Types::DBShardGroup#publicly_accessible #publicly_accessible} => Boolean
|
@@ -23778,6 +23857,7 @@ module Aws::RDS
|
|
23778
23857
|
# resp.db_shard_group_identifier #=> String
|
23779
23858
|
# resp.db_cluster_identifier #=> String
|
23780
23859
|
# resp.max_acu #=> Float
|
23860
|
+
# resp.min_acu #=> Float
|
23781
23861
|
# resp.compute_redundancy #=> Integer
|
23782
23862
|
# resp.status #=> String
|
23783
23863
|
# resp.publicly_accessible #=> Boolean
|
@@ -24550,12 +24630,16 @@ module Aws::RDS
|
|
24550
24630
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow.Aurora
|
24551
24631
|
#
|
24552
24632
|
# @option params [Array<Types::Tag>] :tags
|
24553
|
-
# A list of tags.
|
24554
|
-
#
|
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*.
|
24555
24638
|
#
|
24556
24639
|
#
|
24557
24640
|
#
|
24558
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
|
24559
24643
|
#
|
24560
24644
|
# @option params [Boolean] :storage_encrypted
|
24561
24645
|
# Specifies whether the restored DB cluster is encrypted.
|
@@ -25957,12 +26041,16 @@ module Aws::RDS
|
|
25957
26041
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
25958
26042
|
#
|
25959
26043
|
# @option params [Array<Types::Tag>] :tags
|
25960
|
-
# A list of tags.
|
25961
|
-
#
|
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*.
|
25962
26049
|
#
|
25963
26050
|
#
|
25964
26051
|
#
|
25965
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
|
25966
26054
|
#
|
25967
26055
|
# @option params [String] :kms_key_id
|
25968
26056
|
# The Amazon Web Services KMS key identifier to use when restoring an
|
@@ -26796,12 +26884,16 @@ module Aws::RDS
|
|
26796
26884
|
# This setting doesn't apply to RDS Custom.
|
26797
26885
|
#
|
26798
26886
|
# @option params [Array<Types::Tag>] :tags
|
26799
|
-
# A list of tags.
|
26800
|
-
#
|
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*.
|
26801
26892
|
#
|
26802
26893
|
#
|
26803
26894
|
#
|
26804
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
|
26805
26897
|
#
|
26806
26898
|
# @option params [String] :storage_type
|
26807
26899
|
# Specifies the storage type to be associated with the DB instance.
|
@@ -28491,12 +28583,16 @@ module Aws::RDS
|
|
28491
28583
|
# snapshots of the DB instance. By default, tags are not copied.
|
28492
28584
|
#
|
28493
28585
|
# @option params [Array<Types::Tag>] :tags
|
28494
|
-
# A list of tags.
|
28495
|
-
#
|
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*.
|
28496
28591
|
#
|
28497
28592
|
#
|
28498
28593
|
#
|
28499
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
|
28500
28596
|
#
|
28501
28597
|
# @option params [String] :storage_type
|
28502
28598
|
# The storage type to associate with the DB instance.
|
@@ -31262,7 +31358,7 @@ module Aws::RDS
|
|
31262
31358
|
params: params,
|
31263
31359
|
config: config)
|
31264
31360
|
context[:gem_name] = 'aws-sdk-rds'
|
31265
|
-
context[:gem_version] = '1.
|
31361
|
+
context[:gem_version] = '1.241.0'
|
31266
31362
|
Seahorse::Client::Request.new(handlers, context)
|
31267
31363
|
end
|
31268
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"))
|