aws-sdk-rds 1.240.0 → 1.242.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 +151 -57
- 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 +8 -1
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +3 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3c81e0eb5323004fcb0e5d19fdc63fc902538ee8cb060399a03a2c44aed3f642
|
4
|
+
data.tar.gz: e1251c7a285a2541ebbdf36202c6fb9807c3c83457ce073dfa0e6a750f2308be
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0345a7b1d2b01b52a3b0c514d8f941099f3931de60e61a3a78e4bee78d72a53b40aae335616312a67fe42fec6773779422ad659caedf4a9756214ad8a068eca2
|
7
|
+
data.tar.gz: 2c86e89772b63f562fcc8cac960aefa739c42f1c1a055c01f97b75aefeb554d7e3ff17b3877714c74bd6704b3c2f34a7aeb81656fcfa222adbd7f90b9546d305
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.242.0 (2024-09-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.241.0 (2024-08-01)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds support for specifying optional MinACU parameter in CreateDBShardGroup and ModifyDBShardGroup API. DBShardGroup response will contain MinACU if specified.
|
13
|
+
|
4
14
|
1.240.0 (2024-07-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.242.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -32,6 +32,7 @@ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
|
32
32
|
require 'aws-sdk-core/plugins/request_compression.rb'
|
33
33
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
34
34
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
35
|
+
require 'aws-sdk-core/plugins/telemetry.rb'
|
35
36
|
require 'aws-sdk-core/plugins/sign.rb'
|
36
37
|
require 'aws-sdk-core/plugins/protocols/query.rb'
|
37
38
|
require 'aws-sdk-rds/plugins/cross_region_copying.rb'
|
@@ -84,6 +85,7 @@ module Aws::RDS
|
|
84
85
|
add_plugin(Aws::Plugins::RequestCompression)
|
85
86
|
add_plugin(Aws::Plugins::DefaultsMode)
|
86
87
|
add_plugin(Aws::Plugins::RecursionDetection)
|
88
|
+
add_plugin(Aws::Plugins::Telemetry)
|
87
89
|
add_plugin(Aws::Plugins::Sign)
|
88
90
|
add_plugin(Aws::Plugins::Protocols::Query)
|
89
91
|
add_plugin(Aws::RDS::Plugins::CrossRegionCopying)
|
@@ -332,6 +334,16 @@ module Aws::RDS
|
|
332
334
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
333
335
|
# requests are made, and retries are disabled.
|
334
336
|
#
|
337
|
+
# @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
|
338
|
+
# Allows you to provide a telemetry provider, which is used to
|
339
|
+
# emit telemetry data. By default, uses `NoOpTelemetryProvider` which
|
340
|
+
# will not record or emit any telemetry data. The SDK supports the
|
341
|
+
# following telemetry providers:
|
342
|
+
#
|
343
|
+
# * OpenTelemetry (OTel) - To use the OTel provider, install and require the
|
344
|
+
# `opentelemetry-sdk` gem and then, pass in an instance of a
|
345
|
+
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
346
|
+
#
|
335
347
|
# @option options [Aws::TokenProvider] :token_provider
|
336
348
|
# A Bearer Token Provider. This can be an instance of any one of the
|
337
349
|
# following classes:
|
@@ -1118,12 +1130,16 @@ module Aws::RDS
|
|
1118
1130
|
# A description for the copied DB cluster parameter group.
|
1119
1131
|
#
|
1120
1132
|
# @option params [Array<Types::Tag>] :tags
|
1121
|
-
# A list of tags.
|
1122
|
-
#
|
1133
|
+
# A list of tags.
|
1134
|
+
#
|
1135
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
1136
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
1137
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
1123
1138
|
#
|
1124
1139
|
#
|
1125
1140
|
#
|
1126
1141
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
1142
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
1127
1143
|
#
|
1128
1144
|
# @return [Types::CopyDBClusterParameterGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1129
1145
|
#
|
@@ -1354,12 +1370,16 @@ module Aws::RDS
|
|
1354
1370
|
# to the target DB cluster snapshot. By default, tags are not copied.
|
1355
1371
|
#
|
1356
1372
|
# @option params [Array<Types::Tag>] :tags
|
1357
|
-
# A list of tags.
|
1358
|
-
#
|
1373
|
+
# A list of tags.
|
1374
|
+
#
|
1375
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
1376
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
1377
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
1359
1378
|
#
|
1360
1379
|
#
|
1361
1380
|
#
|
1362
1381
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
1382
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
1363
1383
|
#
|
1364
1384
|
# @option params [String] :source_region
|
1365
1385
|
# The source region of the snapshot. This is only needed when the
|
@@ -1509,12 +1529,16 @@ module Aws::RDS
|
|
1509
1529
|
# A description for the copied DB parameter group.
|
1510
1530
|
#
|
1511
1531
|
# @option params [Array<Types::Tag>] :tags
|
1512
|
-
# A list of tags.
|
1513
|
-
#
|
1532
|
+
# A list of tags.
|
1533
|
+
#
|
1534
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
1535
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
1536
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
1514
1537
|
#
|
1515
1538
|
#
|
1516
1539
|
#
|
1517
1540
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
1541
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
1518
1542
|
#
|
1519
1543
|
# @return [Types::CopyDBParameterGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1520
1544
|
#
|
@@ -1658,12 +1682,16 @@ module Aws::RDS
|
|
1658
1682
|
# another Amazon Web Services Region.
|
1659
1683
|
#
|
1660
1684
|
# @option params [Array<Types::Tag>] :tags
|
1661
|
-
# A list of tags.
|
1662
|
-
#
|
1685
|
+
# A list of tags.
|
1686
|
+
#
|
1687
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
1688
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
1689
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
1663
1690
|
#
|
1664
1691
|
#
|
1665
1692
|
#
|
1666
1693
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
1694
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
1667
1695
|
#
|
1668
1696
|
# @option params [Boolean] :copy_tags
|
1669
1697
|
# Specifies whether to copy all tags from the source DB snapshot to the
|
@@ -1916,12 +1944,16 @@ module Aws::RDS
|
|
1916
1944
|
# The description for the copied option group.
|
1917
1945
|
#
|
1918
1946
|
# @option params [Array<Types::Tag>] :tags
|
1919
|
-
# A list of tags.
|
1920
|
-
#
|
1947
|
+
# A list of tags.
|
1948
|
+
#
|
1949
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
1950
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
1951
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
1921
1952
|
#
|
1922
1953
|
#
|
1923
1954
|
#
|
1924
1955
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
1956
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
1925
1957
|
#
|
1926
1958
|
# @return [Types::CopyOptionGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1927
1959
|
#
|
@@ -2377,12 +2409,16 @@ module Aws::RDS
|
|
2377
2409
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html#custom-cev.preparing.manifest
|
2378
2410
|
#
|
2379
2411
|
# @option params [Array<Types::Tag>] :tags
|
2380
|
-
# A list of tags.
|
2381
|
-
#
|
2412
|
+
# A list of tags.
|
2413
|
+
#
|
2414
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
2415
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
2416
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
2382
2417
|
#
|
2383
2418
|
#
|
2384
2419
|
#
|
2385
2420
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
2421
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
2386
2422
|
#
|
2387
2423
|
# @option params [String] :source_custom_db_engine_version_identifier
|
2388
2424
|
# The ARN of a CEV to use as a source for creating a new CEV. You can
|
@@ -6075,12 +6111,16 @@ module Aws::RDS
|
|
6075
6111
|
# For more information, see CreateDBInstance.
|
6076
6112
|
#
|
6077
6113
|
# @option params [Array<Types::Tag>] :tags
|
6078
|
-
# A list of tags.
|
6079
|
-
#
|
6114
|
+
# A list of tags.
|
6115
|
+
#
|
6116
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
6117
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
6118
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
6080
6119
|
#
|
6081
6120
|
#
|
6082
6121
|
#
|
6083
6122
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
6123
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
6084
6124
|
#
|
6085
6125
|
# @option params [String] :db_subnet_group_name
|
6086
6126
|
# A DB subnet group for the DB instance. The new DB instance is created
|
@@ -7156,12 +7196,16 @@ module Aws::RDS
|
|
7156
7196
|
# Microsoft SQL Server support is `READ_WRITE`.
|
7157
7197
|
#
|
7158
7198
|
# @option params [Array<Types::Tag>] :tags
|
7159
|
-
# A list of tags.
|
7160
|
-
#
|
7199
|
+
# A list of tags.
|
7200
|
+
#
|
7201
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
7202
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
7203
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
7161
7204
|
#
|
7162
7205
|
#
|
7163
7206
|
#
|
7164
7207
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
7208
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
7165
7209
|
#
|
7166
7210
|
# @return [Types::CreateDBProxyEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7167
7211
|
#
|
@@ -7338,6 +7382,10 @@ module Aws::RDS
|
|
7338
7382
|
# The maximum capacity of the DB shard group in Aurora capacity units
|
7339
7383
|
# (ACUs).
|
7340
7384
|
#
|
7385
|
+
# @option params [Float] :min_acu
|
7386
|
+
# The minimum capacity of the DB shard group in Aurora capacity units
|
7387
|
+
# (ACUs).
|
7388
|
+
#
|
7341
7389
|
# @option params [Boolean] :publicly_accessible
|
7342
7390
|
# Specifies whether the DB shard group is publicly accessible.
|
7343
7391
|
#
|
@@ -7379,6 +7427,7 @@ module Aws::RDS
|
|
7379
7427
|
# * {Types::DBShardGroup#db_shard_group_identifier #db_shard_group_identifier} => String
|
7380
7428
|
# * {Types::DBShardGroup#db_cluster_identifier #db_cluster_identifier} => String
|
7381
7429
|
# * {Types::DBShardGroup#max_acu #max_acu} => Float
|
7430
|
+
# * {Types::DBShardGroup#min_acu #min_acu} => Float
|
7382
7431
|
# * {Types::DBShardGroup#compute_redundancy #compute_redundancy} => Integer
|
7383
7432
|
# * {Types::DBShardGroup#status #status} => String
|
7384
7433
|
# * {Types::DBShardGroup#publicly_accessible #publicly_accessible} => Boolean
|
@@ -7391,6 +7440,7 @@ module Aws::RDS
|
|
7391
7440
|
# db_cluster_identifier: "String", # required
|
7392
7441
|
# compute_redundancy: 1,
|
7393
7442
|
# max_acu: 1.0, # required
|
7443
|
+
# min_acu: 1.0,
|
7394
7444
|
# publicly_accessible: false,
|
7395
7445
|
# })
|
7396
7446
|
#
|
@@ -7400,6 +7450,7 @@ module Aws::RDS
|
|
7400
7450
|
# resp.db_shard_group_identifier #=> String
|
7401
7451
|
# resp.db_cluster_identifier #=> String
|
7402
7452
|
# resp.max_acu #=> Float
|
7453
|
+
# resp.min_acu #=> Float
|
7403
7454
|
# resp.compute_redundancy #=> Integer
|
7404
7455
|
# resp.status #=> String
|
7405
7456
|
# resp.publicly_accessible #=> Boolean
|
@@ -7443,12 +7494,16 @@ module Aws::RDS
|
|
7443
7494
|
# ^
|
7444
7495
|
#
|
7445
7496
|
# @option params [Array<Types::Tag>] :tags
|
7446
|
-
# A list of tags.
|
7447
|
-
#
|
7497
|
+
# A list of tags.
|
7498
|
+
#
|
7499
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
7500
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
7501
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
7448
7502
|
#
|
7449
7503
|
#
|
7450
7504
|
#
|
7451
7505
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
7506
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
7452
7507
|
#
|
7453
7508
|
# @return [Types::CreateDBSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7454
7509
|
#
|
@@ -7794,12 +7849,16 @@ module Aws::RDS
|
|
7794
7849
|
# created but not active.
|
7795
7850
|
#
|
7796
7851
|
# @option params [Array<Types::Tag>] :tags
|
7797
|
-
# A list of tags.
|
7798
|
-
#
|
7852
|
+
# A list of tags.
|
7853
|
+
#
|
7854
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
7855
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
7856
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
7799
7857
|
#
|
7800
7858
|
#
|
7801
7859
|
#
|
7802
7860
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
7861
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
7803
7862
|
#
|
7804
7863
|
# @return [Types::CreateEventSubscriptionResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7805
7864
|
#
|
@@ -8108,12 +8167,16 @@ module Aws::RDS
|
|
8108
8167
|
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context
|
8109
8168
|
#
|
8110
8169
|
# @option params [Array<Types::Tag>] :tags
|
8111
|
-
# A list of tags.
|
8112
|
-
#
|
8170
|
+
# A list of tags.
|
8171
|
+
#
|
8172
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
8173
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
8174
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
8113
8175
|
#
|
8114
8176
|
#
|
8115
8177
|
#
|
8116
8178
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
8179
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
8117
8180
|
#
|
8118
8181
|
# @option params [String] :data_filter
|
8119
8182
|
# Data filtering options for the integration. For more information, see
|
@@ -8410,12 +8473,16 @@ module Aws::RDS
|
|
8410
8473
|
# The `NCHAR` value for the tenant database.
|
8411
8474
|
#
|
8412
8475
|
# @option params [Array<Types::Tag>] :tags
|
8413
|
-
# A list of tags.
|
8414
|
-
#
|
8476
|
+
# A list of tags.
|
8477
|
+
#
|
8478
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
8479
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
8480
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
8415
8481
|
#
|
8416
8482
|
#
|
8417
8483
|
#
|
8418
8484
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
8485
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
8419
8486
|
#
|
8420
8487
|
# @return [Types::CreateTenantDatabaseResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8421
8488
|
#
|
@@ -8868,14 +8935,14 @@ module Aws::RDS
|
|
8868
8935
|
#
|
8869
8936
|
# @option params [Boolean] :skip_final_snapshot
|
8870
8937
|
# Specifies whether to skip the creation of a final DB cluster snapshot
|
8871
|
-
# before the DB cluster
|
8872
|
-
#
|
8873
|
-
#
|
8874
|
-
#
|
8875
|
-
#
|
8938
|
+
# before RDS deletes the DB cluster. If you set this value to `true`,
|
8939
|
+
# RDS doesn't create a final DB cluster snapshot. If you set this value
|
8940
|
+
# to `false` or don't specify it, RDS creates a DB cluster snapshot
|
8941
|
+
# before it deletes the DB cluster. By default, this parameter is
|
8942
|
+
# disabled, so RDS creates a final DB cluster snapshot.
|
8876
8943
|
#
|
8877
|
-
# <note markdown="1">
|
8878
|
-
# `
|
8944
|
+
# <note markdown="1"> If `SkipFinalSnapshot` is disabled, you must specify a value for the
|
8945
|
+
# `FinalDBSnapshotIdentifier` parameter.
|
8879
8946
|
#
|
8880
8947
|
# </note>
|
8881
8948
|
#
|
@@ -8883,9 +8950,9 @@ module Aws::RDS
|
|
8883
8950
|
# The DB cluster snapshot identifier of the new DB cluster snapshot
|
8884
8951
|
# created when `SkipFinalSnapshot` is disabled.
|
8885
8952
|
#
|
8886
|
-
# <note markdown="1">
|
8887
|
-
# cluster snapshot with the `SkipFinalShapshot` parameter
|
8888
|
-
# error.
|
8953
|
+
# <note markdown="1"> If you specify this parameter and also skip the creation of a final DB
|
8954
|
+
# cluster snapshot with the `SkipFinalShapshot` parameter, the request
|
8955
|
+
# results in an error.
|
8889
8956
|
#
|
8890
8957
|
# </note>
|
8891
8958
|
#
|
@@ -8903,16 +8970,6 @@ module Aws::RDS
|
|
8903
8970
|
# is to remove automated backups immediately after the DB cluster is
|
8904
8971
|
# deleted.
|
8905
8972
|
#
|
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
8973
|
# @return [Types::DeleteDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8917
8974
|
#
|
8918
8975
|
# * {Types::DeleteDBClusterResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -10023,6 +10080,7 @@ module Aws::RDS
|
|
10023
10080
|
# * {Types::DBShardGroup#db_shard_group_identifier #db_shard_group_identifier} => String
|
10024
10081
|
# * {Types::DBShardGroup#db_cluster_identifier #db_cluster_identifier} => String
|
10025
10082
|
# * {Types::DBShardGroup#max_acu #max_acu} => Float
|
10083
|
+
# * {Types::DBShardGroup#min_acu #min_acu} => Float
|
10026
10084
|
# * {Types::DBShardGroup#compute_redundancy #compute_redundancy} => Integer
|
10027
10085
|
# * {Types::DBShardGroup#status #status} => String
|
10028
10086
|
# * {Types::DBShardGroup#publicly_accessible #publicly_accessible} => Boolean
|
@@ -10040,6 +10098,7 @@ module Aws::RDS
|
|
10040
10098
|
# resp.db_shard_group_identifier #=> String
|
10041
10099
|
# resp.db_cluster_identifier #=> String
|
10042
10100
|
# resp.max_acu #=> Float
|
10101
|
+
# resp.min_acu #=> Float
|
10043
10102
|
# resp.compute_redundancy #=> Integer
|
10044
10103
|
# resp.status #=> String
|
10045
10104
|
# resp.publicly_accessible #=> Boolean
|
@@ -11747,7 +11806,7 @@ module Aws::RDS
|
|
11747
11806
|
#
|
11748
11807
|
# Valid Values:
|
11749
11808
|
#
|
11750
|
-
# * `
|
11809
|
+
# * `customer`
|
11751
11810
|
#
|
11752
11811
|
# * `engine`
|
11753
11812
|
#
|
@@ -14325,6 +14384,7 @@ module Aws::RDS
|
|
14325
14384
|
# resp.db_shard_groups[0].db_shard_group_identifier #=> String
|
14326
14385
|
# resp.db_shard_groups[0].db_cluster_identifier #=> String
|
14327
14386
|
# resp.db_shard_groups[0].max_acu #=> Float
|
14387
|
+
# resp.db_shard_groups[0].min_acu #=> Float
|
14328
14388
|
# resp.db_shard_groups[0].compute_redundancy #=> Integer
|
14329
14389
|
# resp.db_shard_groups[0].status #=> String
|
14330
14390
|
# resp.db_shard_groups[0].publicly_accessible #=> Boolean
|
@@ -21730,12 +21790,17 @@ module Aws::RDS
|
|
21730
21790
|
# The maximum capacity of the DB shard group in Aurora capacity units
|
21731
21791
|
# (ACUs).
|
21732
21792
|
#
|
21793
|
+
# @option params [Float] :min_acu
|
21794
|
+
# The minimum capacity of the DB shard group in Aurora capacity units
|
21795
|
+
# (ACUs).
|
21796
|
+
#
|
21733
21797
|
# @return [Types::DBShardGroup] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
21734
21798
|
#
|
21735
21799
|
# * {Types::DBShardGroup#db_shard_group_resource_id #db_shard_group_resource_id} => String
|
21736
21800
|
# * {Types::DBShardGroup#db_shard_group_identifier #db_shard_group_identifier} => String
|
21737
21801
|
# * {Types::DBShardGroup#db_cluster_identifier #db_cluster_identifier} => String
|
21738
21802
|
# * {Types::DBShardGroup#max_acu #max_acu} => Float
|
21803
|
+
# * {Types::DBShardGroup#min_acu #min_acu} => Float
|
21739
21804
|
# * {Types::DBShardGroup#compute_redundancy #compute_redundancy} => Integer
|
21740
21805
|
# * {Types::DBShardGroup#status #status} => String
|
21741
21806
|
# * {Types::DBShardGroup#publicly_accessible #publicly_accessible} => Boolean
|
@@ -21746,6 +21811,7 @@ module Aws::RDS
|
|
21746
21811
|
# resp = client.modify_db_shard_group({
|
21747
21812
|
# db_shard_group_identifier: "DBShardGroupIdentifier", # required
|
21748
21813
|
# max_acu: 1.0,
|
21814
|
+
# min_acu: 1.0,
|
21749
21815
|
# })
|
21750
21816
|
#
|
21751
21817
|
# @example Response structure
|
@@ -21754,6 +21820,7 @@ module Aws::RDS
|
|
21754
21820
|
# resp.db_shard_group_identifier #=> String
|
21755
21821
|
# resp.db_cluster_identifier #=> String
|
21756
21822
|
# resp.max_acu #=> Float
|
21823
|
+
# resp.min_acu #=> Float
|
21757
21824
|
# resp.compute_redundancy #=> Integer
|
21758
21825
|
# resp.status #=> String
|
21759
21826
|
# resp.publicly_accessible #=> Boolean
|
@@ -23240,12 +23307,16 @@ module Aws::RDS
|
|
23240
23307
|
# Default: `1`
|
23241
23308
|
#
|
23242
23309
|
# @option params [Array<Types::Tag>] :tags
|
23243
|
-
# A list of tags.
|
23244
|
-
#
|
23310
|
+
# A list of tags.
|
23311
|
+
#
|
23312
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
23313
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
23314
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
23245
23315
|
#
|
23246
23316
|
#
|
23247
23317
|
#
|
23248
23318
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
23319
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
23249
23320
|
#
|
23250
23321
|
# @return [Types::PurchaseReservedDBInstancesOfferingResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
23251
23322
|
#
|
@@ -23780,6 +23851,7 @@ module Aws::RDS
|
|
23780
23851
|
# * {Types::DBShardGroup#db_shard_group_identifier #db_shard_group_identifier} => String
|
23781
23852
|
# * {Types::DBShardGroup#db_cluster_identifier #db_cluster_identifier} => String
|
23782
23853
|
# * {Types::DBShardGroup#max_acu #max_acu} => Float
|
23854
|
+
# * {Types::DBShardGroup#min_acu #min_acu} => Float
|
23783
23855
|
# * {Types::DBShardGroup#compute_redundancy #compute_redundancy} => Integer
|
23784
23856
|
# * {Types::DBShardGroup#status #status} => String
|
23785
23857
|
# * {Types::DBShardGroup#publicly_accessible #publicly_accessible} => Boolean
|
@@ -23797,6 +23869,7 @@ module Aws::RDS
|
|
23797
23869
|
# resp.db_shard_group_identifier #=> String
|
23798
23870
|
# resp.db_cluster_identifier #=> String
|
23799
23871
|
# resp.max_acu #=> Float
|
23872
|
+
# resp.min_acu #=> Float
|
23800
23873
|
# resp.compute_redundancy #=> Integer
|
23801
23874
|
# resp.status #=> String
|
23802
23875
|
# resp.publicly_accessible #=> Boolean
|
@@ -24569,12 +24642,16 @@ module Aws::RDS
|
|
24569
24642
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow.Aurora
|
24570
24643
|
#
|
24571
24644
|
# @option params [Array<Types::Tag>] :tags
|
24572
|
-
# A list of tags.
|
24573
|
-
#
|
24645
|
+
# A list of tags.
|
24646
|
+
#
|
24647
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
24648
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
24649
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
24574
24650
|
#
|
24575
24651
|
#
|
24576
24652
|
#
|
24577
24653
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
24654
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
24578
24655
|
#
|
24579
24656
|
# @option params [Boolean] :storage_encrypted
|
24580
24657
|
# Specifies whether the restored DB cluster is encrypted.
|
@@ -25976,12 +26053,16 @@ module Aws::RDS
|
|
25976
26053
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
25977
26054
|
#
|
25978
26055
|
# @option params [Array<Types::Tag>] :tags
|
25979
|
-
# A list of tags.
|
25980
|
-
#
|
26056
|
+
# A list of tags.
|
26057
|
+
#
|
26058
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
26059
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
26060
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
25981
26061
|
#
|
25982
26062
|
#
|
25983
26063
|
#
|
25984
26064
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
26065
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
25985
26066
|
#
|
25986
26067
|
# @option params [String] :kms_key_id
|
25987
26068
|
# The Amazon Web Services KMS key identifier to use when restoring an
|
@@ -26815,12 +26896,16 @@ module Aws::RDS
|
|
26815
26896
|
# This setting doesn't apply to RDS Custom.
|
26816
26897
|
#
|
26817
26898
|
# @option params [Array<Types::Tag>] :tags
|
26818
|
-
# A list of tags.
|
26819
|
-
#
|
26899
|
+
# A list of tags.
|
26900
|
+
#
|
26901
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
26902
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
26903
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
26820
26904
|
#
|
26821
26905
|
#
|
26822
26906
|
#
|
26823
26907
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
26908
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
26824
26909
|
#
|
26825
26910
|
# @option params [String] :storage_type
|
26826
26911
|
# Specifies the storage type to be associated with the DB instance.
|
@@ -28510,12 +28595,16 @@ module Aws::RDS
|
|
28510
28595
|
# snapshots of the DB instance. By default, tags are not copied.
|
28511
28596
|
#
|
28512
28597
|
# @option params [Array<Types::Tag>] :tags
|
28513
|
-
# A list of tags.
|
28514
|
-
#
|
28598
|
+
# A list of tags.
|
28599
|
+
#
|
28600
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
28601
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
28602
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
28515
28603
|
#
|
28516
28604
|
#
|
28517
28605
|
#
|
28518
28606
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
28607
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
28519
28608
|
#
|
28520
28609
|
# @option params [String] :storage_type
|
28521
28610
|
# The storage type to associate with the DB instance.
|
@@ -31274,14 +31363,19 @@ module Aws::RDS
|
|
31274
31363
|
# @api private
|
31275
31364
|
def build_request(operation_name, params = {})
|
31276
31365
|
handlers = @handlers.for(operation_name)
|
31366
|
+
tracer = config.telemetry_provider.tracer_provider.tracer(
|
31367
|
+
Aws::Telemetry.module_to_tracer_name('Aws::RDS')
|
31368
|
+
)
|
31277
31369
|
context = Seahorse::Client::RequestContext.new(
|
31278
31370
|
operation_name: operation_name,
|
31279
31371
|
operation: config.api.operation(operation_name),
|
31280
31372
|
client: self,
|
31281
31373
|
params: params,
|
31282
|
-
config: config
|
31374
|
+
config: config,
|
31375
|
+
tracer: tracer
|
31376
|
+
)
|
31283
31377
|
context[:gem_name] = 'aws-sdk-rds'
|
31284
|
-
context[:gem_version] = '1.
|
31378
|
+
context[:gem_version] = '1.242.0'
|
31285
31379
|
Seahorse::Client::Request.new(handlers, context)
|
31286
31380
|
end
|
31287
31381
|
|
@@ -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"))
|