aws-sdk-rds 1.176.0 → 1.177.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +43 -62
- data/lib/aws-sdk-rds/db_cluster.rb +1 -11
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +3 -6
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +4 -4
- data/lib/aws-sdk-rds/db_instance.rb +6 -11
- data/lib/aws-sdk-rds/db_parameter_group.rb +1 -4
- data/lib/aws-sdk-rds/resource.rb +9 -17
- data/lib/aws-sdk-rds/types.rb +39 -61
- data/lib/aws-sdk-rds.rb +1 -1
- 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: c94e592b1fe5e6f71586ea456b0251b5a8db991ef01b80f562b40c451283515b
|
|
4
|
+
data.tar.gz: 1f8e980a3ad3d7966b6f34b51fb35e617c9cb4b1d50904c3f81a8d372c881831
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 98a89392bef7c1dc3e705e7d8530765ab125267d5282944172fd8758994ef230b768ade5ea7e7f1fae8c9ffd73e436accc23040cc6b5ec59aa4531b2a77e4aec
|
|
7
|
+
data.tar.gz: 12b8918d330cff8b77bf3256200a4f766e2a2a1b967df328bc60f000e1be95ddc0bc95f45bf2d373a623e022c24f5e81e0090889f0301e64b166abca8a8b95e5
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.177.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
|
@@ -2198,8 +2198,16 @@ module Aws::RDS
|
|
|
2198
2198
|
# If this setting isn't specified, no prefix is assumed.
|
|
2199
2199
|
#
|
|
2200
2200
|
# @option params [String] :image_id
|
|
2201
|
-
# The ID of the
|
|
2202
|
-
#
|
|
2201
|
+
# The ID of the Amazon Machine Image (AMI). For RDS Custom for SQL
|
|
2202
|
+
# Server, an AMI ID is required to create a CEV. For RDS Custom for
|
|
2203
|
+
# Oracle, the default is the most recent AMI available, but you can
|
|
2204
|
+
# specify an AMI ID that was used in a different Oracle CEV. Find the
|
|
2205
|
+
# AMIs used by your CEVs by calling the [DescribeDBEngineVersions][1]
|
|
2206
|
+
# operation.
|
|
2207
|
+
#
|
|
2208
|
+
#
|
|
2209
|
+
#
|
|
2210
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeDBEngineVersions.html
|
|
2203
2211
|
#
|
|
2204
2212
|
# @option params [String] :kms_key_id
|
|
2205
2213
|
# The Amazon Web Services KMS key identifier for an encrypted CEV. A
|
|
@@ -3220,9 +3228,9 @@ module Aws::RDS
|
|
|
3220
3228
|
# * {Types::CreateDBClusterResult#db_cluster #db_cluster} => Types::DBCluster
|
|
3221
3229
|
#
|
|
3222
3230
|
#
|
|
3223
|
-
# @example Example: To create a MySQL 5.7
|
|
3231
|
+
# @example Example: To create a MySQL 5.7-compatible DB cluster
|
|
3224
3232
|
#
|
|
3225
|
-
# # The following example
|
|
3233
|
+
# # The following example creates a MySQL 5.7-compatible Aurora DB cluster.
|
|
3226
3234
|
#
|
|
3227
3235
|
# resp = client.create_db_cluster({
|
|
3228
3236
|
# db_cluster_identifier: "sample-cluster",
|
|
@@ -3284,9 +3292,9 @@ module Aws::RDS
|
|
|
3284
3292
|
# },
|
|
3285
3293
|
# }
|
|
3286
3294
|
#
|
|
3287
|
-
# @example Example: To create a PostgreSQL
|
|
3295
|
+
# @example Example: To create a PostgreSQL-compatible DB cluster
|
|
3288
3296
|
#
|
|
3289
|
-
# # The following creates a PostgreSQL-compatible DB cluster.
|
|
3297
|
+
# # The following example creates a PostgreSQL-compatible Aurora DB cluster.
|
|
3290
3298
|
#
|
|
3291
3299
|
# resp = client.create_db_cluster({
|
|
3292
3300
|
# db_cluster_identifier: "sample-pg-cluster",
|
|
@@ -3725,11 +3733,11 @@ module Aws::RDS
|
|
|
3725
3733
|
#
|
|
3726
3734
|
# **Aurora MySQL**
|
|
3727
3735
|
#
|
|
3728
|
-
# Example: `
|
|
3736
|
+
# Example: `aurora-mysql5.7`, `aurora-mysql8.0`
|
|
3729
3737
|
#
|
|
3730
3738
|
# **Aurora PostgreSQL**
|
|
3731
3739
|
#
|
|
3732
|
-
# Example: `aurora-
|
|
3740
|
+
# Example: `aurora-postgresql14`
|
|
3733
3741
|
#
|
|
3734
3742
|
# **RDS for MySQL**
|
|
3735
3743
|
#
|
|
@@ -3758,10 +3766,7 @@ module Aws::RDS
|
|
|
3758
3766
|
#
|
|
3759
3767
|
# The following are the valid DB engine values:
|
|
3760
3768
|
#
|
|
3761
|
-
# * `aurora`
|
|
3762
|
-
#
|
|
3763
|
-
# * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
|
|
3764
|
-
# Aurora)
|
|
3769
|
+
# * `aurora-mysql`
|
|
3765
3770
|
#
|
|
3766
3771
|
# * `aurora-postgresql`
|
|
3767
3772
|
#
|
|
@@ -4237,12 +4242,9 @@ module Aws::RDS
|
|
|
4237
4242
|
#
|
|
4238
4243
|
# Valid Values:
|
|
4239
4244
|
#
|
|
4240
|
-
# * `aurora` (for MySQL
|
|
4245
|
+
# * `aurora-mysql` (for Aurora MySQL DB instances)
|
|
4241
4246
|
#
|
|
4242
|
-
# * `aurora-
|
|
4243
|
-
# Aurora)
|
|
4244
|
-
#
|
|
4245
|
-
# * `aurora-postgresql`
|
|
4247
|
+
# * `aurora-postgresql` (for Aurora PostgreSQL DB instances)
|
|
4246
4248
|
#
|
|
4247
4249
|
# * `custom-oracle-ee (for RDS Custom for Oracle DB instances)`
|
|
4248
4250
|
#
|
|
@@ -6420,10 +6422,7 @@ module Aws::RDS
|
|
|
6420
6422
|
#
|
|
6421
6423
|
# The following are the valid DB engine values:
|
|
6422
6424
|
#
|
|
6423
|
-
# * `aurora`
|
|
6424
|
-
#
|
|
6425
|
-
# * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
|
|
6426
|
-
# Aurora)
|
|
6425
|
+
# * `aurora-mysql`
|
|
6427
6426
|
#
|
|
6428
6427
|
# * `aurora-postgresql`
|
|
6429
6428
|
#
|
|
@@ -11110,11 +11109,12 @@ module Aws::RDS
|
|
|
11110
11109
|
#
|
|
11111
11110
|
# Valid Values:
|
|
11112
11111
|
#
|
|
11113
|
-
# * `aurora-mysql`
|
|
11114
|
-
# Aurora)
|
|
11112
|
+
# * `aurora-mysql`
|
|
11115
11113
|
#
|
|
11116
11114
|
# * `aurora-postgresql`
|
|
11117
11115
|
#
|
|
11116
|
+
# * `custom-oracle-ee`
|
|
11117
|
+
#
|
|
11118
11118
|
# * `mariadb`
|
|
11119
11119
|
#
|
|
11120
11120
|
# * `mysql`
|
|
@@ -13148,8 +13148,6 @@ module Aws::RDS
|
|
|
13148
13148
|
#
|
|
13149
13149
|
# Valid Values:
|
|
13150
13150
|
#
|
|
13151
|
-
# * `aurora5.6`
|
|
13152
|
-
#
|
|
13153
13151
|
# * `aurora-mysql5.7`
|
|
13154
13152
|
#
|
|
13155
13153
|
# * `aurora-mysql8.0`
|
|
@@ -14364,11 +14362,12 @@ module Aws::RDS
|
|
|
14364
14362
|
#
|
|
14365
14363
|
# Valid Values:
|
|
14366
14364
|
#
|
|
14367
|
-
# * `aurora-mysql`
|
|
14368
|
-
# Aurora)
|
|
14365
|
+
# * `aurora-mysql`
|
|
14369
14366
|
#
|
|
14370
14367
|
# * `aurora-postgresql`
|
|
14371
14368
|
#
|
|
14369
|
+
# * `custom-oracle-ee`
|
|
14370
|
+
#
|
|
14372
14371
|
# * `mariadb`
|
|
14373
14372
|
#
|
|
14374
14373
|
# * `mysql`
|
|
@@ -16426,19 +16425,12 @@ module Aws::RDS
|
|
|
16426
16425
|
# all replicas must be running an engine version that's the same or
|
|
16427
16426
|
# later than the version you specify.
|
|
16428
16427
|
#
|
|
16429
|
-
# To list all of the available engine versions for Aurora MySQL
|
|
16430
|
-
# 2 (5.7-compatible) and version 3 (MySQL 8.0-compatible), use the
|
|
16428
|
+
# To list all of the available engine versions for Aurora MySQL, use the
|
|
16431
16429
|
# following command:
|
|
16432
16430
|
#
|
|
16433
16431
|
# `aws rds describe-db-engine-versions --engine aurora-mysql --query
|
|
16434
16432
|
# "DBEngineVersions[].EngineVersion"`
|
|
16435
16433
|
#
|
|
16436
|
-
# To list all of the available engine versions for MySQL 5.6-compatible
|
|
16437
|
-
# Aurora, use the following command:
|
|
16438
|
-
#
|
|
16439
|
-
# `aws rds describe-db-engine-versions --engine aurora --query
|
|
16440
|
-
# "DBEngineVersions[].EngineVersion"`
|
|
16441
|
-
#
|
|
16442
16434
|
# To list all of the available engine versions for Aurora PostgreSQL,
|
|
16443
16435
|
# use the following command:
|
|
16444
16436
|
#
|
|
@@ -18404,7 +18396,7 @@ module Aws::RDS
|
|
|
18404
18396
|
# * {Types::ModifyDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
|
18405
18397
|
#
|
|
18406
18398
|
#
|
|
18407
|
-
# @example Example: To modify
|
|
18399
|
+
# @example Example: To modify a DB instance
|
|
18408
18400
|
#
|
|
18409
18401
|
# # The following example associates an option group and a parameter group with a compatible Microsoft SQL Server DB
|
|
18410
18402
|
# # instance. The ApplyImmediately parameter causes the option and parameter groups to be associated immediately, instead of
|
|
@@ -18451,7 +18443,7 @@ module Aws::RDS
|
|
|
18451
18443
|
# ],
|
|
18452
18444
|
# secondary_availability_zone: "us-west-2c",
|
|
18453
18445
|
# storage_type: "gp2",
|
|
18454
|
-
# },
|
|
18446
|
+
# }, # Some output ommitted.
|
|
18455
18447
|
# }
|
|
18456
18448
|
#
|
|
18457
18449
|
# @example Request syntax with placeholder values
|
|
@@ -19601,21 +19593,15 @@ module Aws::RDS
|
|
|
19601
19593
|
# applied during the next maintenance window unless `ApplyImmediately`
|
|
19602
19594
|
# is enabled.
|
|
19603
19595
|
#
|
|
19604
|
-
# To list all of the available engine versions for `aurora` (for MySQL
|
|
19605
|
-
# 5.6-compatible Aurora), use the following command:
|
|
19606
|
-
#
|
|
19607
|
-
# `` aws rds describe-db-engine-versions --engine aurora --query
|
|
19608
|
-
# '*[]|[?SupportsGlobalDatabases == `true`].[EngineVersion]' ``
|
|
19609
|
-
#
|
|
19610
19596
|
# To list all of the available engine versions for `aurora-mysql` (for
|
|
19611
|
-
# MySQL
|
|
19612
|
-
# following command:
|
|
19597
|
+
# MySQL-based Aurora global databases), use the following command:
|
|
19613
19598
|
#
|
|
19614
19599
|
# `` aws rds describe-db-engine-versions --engine aurora-mysql --query
|
|
19615
19600
|
# '*[]|[?SupportsGlobalDatabases == `true`].[EngineVersion]' ``
|
|
19616
19601
|
#
|
|
19617
|
-
# To list all of the available engine versions for `aurora-postgresql
|
|
19618
|
-
# use the following
|
|
19602
|
+
# To list all of the available engine versions for `aurora-postgresql`
|
|
19603
|
+
# (for PostgreSQL-based Aurora global databases), use the following
|
|
19604
|
+
# command:
|
|
19619
19605
|
#
|
|
19620
19606
|
# `` aws rds describe-db-engine-versions --engine aurora-postgresql
|
|
19621
19607
|
# --query '*[]|[?SupportsGlobalDatabases == `true`].[EngineVersion]' ``
|
|
@@ -21371,8 +21357,8 @@ module Aws::RDS
|
|
|
21371
21357
|
#
|
|
21372
21358
|
# @option params [String] :db_cluster_parameter_group_name
|
|
21373
21359
|
# The name of the DB cluster parameter group to associate with the
|
|
21374
|
-
# restored DB cluster. If this argument is omitted,
|
|
21375
|
-
# is used.
|
|
21360
|
+
# restored DB cluster. If this argument is omitted, the default
|
|
21361
|
+
# parameter group for the engine version is used.
|
|
21376
21362
|
#
|
|
21377
21363
|
# Constraints:
|
|
21378
21364
|
#
|
|
@@ -21396,15 +21382,13 @@ module Aws::RDS
|
|
|
21396
21382
|
# @option params [required, String] :engine
|
|
21397
21383
|
# The name of the database engine to be used for this DB cluster.
|
|
21398
21384
|
#
|
|
21399
|
-
# Valid Values: `aurora-mysql` (for
|
|
21400
|
-
# 8.0-compatible Aurora)
|
|
21385
|
+
# Valid Values: `aurora-mysql` (for Aurora MySQL)
|
|
21401
21386
|
#
|
|
21402
21387
|
# @option params [String] :engine_version
|
|
21403
21388
|
# The version number of the database engine to use.
|
|
21404
21389
|
#
|
|
21405
|
-
# To list all of the available engine versions for `aurora-mysql`
|
|
21406
|
-
#
|
|
21407
|
-
# command:
|
|
21390
|
+
# To list all of the available engine versions for `aurora-mysql`
|
|
21391
|
+
# (Aurora MySQL), use the following command:
|
|
21408
21392
|
#
|
|
21409
21393
|
# `aws rds describe-db-engine-versions --engine aurora-mysql --query
|
|
21410
21394
|
# "DBEngineVersions[].EngineVersion"`
|
|
@@ -22015,8 +21999,8 @@ module Aws::RDS
|
|
|
22015
21999
|
# you don't specify an engine version, the default version for the
|
|
22016
22000
|
# database engine in the Amazon Web Services Region is used.
|
|
22017
22001
|
#
|
|
22018
|
-
# To list all of the available engine versions for MySQL
|
|
22019
|
-
#
|
|
22002
|
+
# To list all of the available engine versions for Aurora MySQL, use the
|
|
22003
|
+
# following command:
|
|
22020
22004
|
#
|
|
22021
22005
|
# `aws rds describe-db-engine-versions --engine aurora-mysql --query
|
|
22022
22006
|
# "DBEngineVersions[].EngineVersion"`
|
|
@@ -22198,8 +22182,8 @@ module Aws::RDS
|
|
|
22198
22182
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
|
22199
22183
|
#
|
|
22200
22184
|
# @option params [String] :engine_mode
|
|
22201
|
-
# The DB engine mode of the DB cluster, either `provisioned
|
|
22202
|
-
# `serverless
|
|
22185
|
+
# The DB engine mode of the DB cluster, either `provisioned` or
|
|
22186
|
+
# `serverless`.
|
|
22203
22187
|
#
|
|
22204
22188
|
# For more information, see [ CreateDBCluster][1].
|
|
22205
22189
|
#
|
|
@@ -22673,9 +22657,6 @@ module Aws::RDS
|
|
|
22673
22657
|
# * `copy-on-write` - The new DB cluster is restored as a clone of the
|
|
22674
22658
|
# source DB cluster.
|
|
22675
22659
|
#
|
|
22676
|
-
# Constraints: You can't specify `copy-on-write` if the engine version
|
|
22677
|
-
# of the source DB cluster is earlier than 1.11.
|
|
22678
|
-
#
|
|
22679
22660
|
# If you don't specify a `RestoreType` value, then the new DB cluster
|
|
22680
22661
|
# is restored as a full copy of the source DB cluster.
|
|
22681
22662
|
#
|
|
@@ -27394,7 +27375,7 @@ module Aws::RDS
|
|
|
27394
27375
|
params: params,
|
|
27395
27376
|
config: config)
|
|
27396
27377
|
context[:gem_name] = 'aws-sdk-rds'
|
|
27397
|
-
context[:gem_version] = '1.
|
|
27378
|
+
context[:gem_version] = '1.177.0'
|
|
27398
27379
|
Seahorse::Client::Request.new(handlers, context)
|
|
27399
27380
|
end
|
|
27400
27381
|
|
|
@@ -1981,19 +1981,12 @@ module Aws::RDS
|
|
|
1981
1981
|
# all replicas must be running an engine version that's the same or
|
|
1982
1982
|
# later than the version you specify.
|
|
1983
1983
|
#
|
|
1984
|
-
# To list all of the available engine versions for Aurora MySQL
|
|
1985
|
-
# 2 (5.7-compatible) and version 3 (MySQL 8.0-compatible), use the
|
|
1984
|
+
# To list all of the available engine versions for Aurora MySQL, use the
|
|
1986
1985
|
# following command:
|
|
1987
1986
|
#
|
|
1988
1987
|
# `aws rds describe-db-engine-versions --engine aurora-mysql --query
|
|
1989
1988
|
# "DBEngineVersions[].EngineVersion"`
|
|
1990
1989
|
#
|
|
1991
|
-
# To list all of the available engine versions for MySQL 5.6-compatible
|
|
1992
|
-
# Aurora, use the following command:
|
|
1993
|
-
#
|
|
1994
|
-
# `aws rds describe-db-engine-versions --engine aurora --query
|
|
1995
|
-
# "DBEngineVersions[].EngineVersion"`
|
|
1996
|
-
#
|
|
1997
1990
|
# To list all of the available engine versions for Aurora PostgreSQL,
|
|
1998
1991
|
# use the following command:
|
|
1999
1992
|
#
|
|
@@ -2460,9 +2453,6 @@ module Aws::RDS
|
|
|
2460
2453
|
# * `copy-on-write` - The new DB cluster is restored as a clone of the
|
|
2461
2454
|
# source DB cluster.
|
|
2462
2455
|
#
|
|
2463
|
-
# Constraints: You can't specify `copy-on-write` if the engine version
|
|
2464
|
-
# of the source DB cluster is earlier than 1.11.
|
|
2465
|
-
#
|
|
2466
2456
|
# If you don't specify a `RestoreType` value, then the new DB cluster
|
|
2467
2457
|
# is restored as a full copy of the source DB cluster.
|
|
2468
2458
|
#
|
|
@@ -211,11 +211,11 @@ module Aws::RDS
|
|
|
211
211
|
#
|
|
212
212
|
# **Aurora MySQL**
|
|
213
213
|
#
|
|
214
|
-
# Example: `
|
|
214
|
+
# Example: `aurora-mysql5.7`, `aurora-mysql8.0`
|
|
215
215
|
#
|
|
216
216
|
# **Aurora PostgreSQL**
|
|
217
217
|
#
|
|
218
|
-
# Example: `aurora-
|
|
218
|
+
# Example: `aurora-postgresql14`
|
|
219
219
|
#
|
|
220
220
|
# **RDS for MySQL**
|
|
221
221
|
#
|
|
@@ -244,10 +244,7 @@ module Aws::RDS
|
|
|
244
244
|
#
|
|
245
245
|
# The following are the valid DB engine values:
|
|
246
246
|
#
|
|
247
|
-
# * `aurora`
|
|
248
|
-
#
|
|
249
|
-
# * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
|
|
250
|
-
# Aurora)
|
|
247
|
+
# * `aurora-mysql`
|
|
251
248
|
#
|
|
252
249
|
# * `aurora-postgresql`
|
|
253
250
|
#
|
|
@@ -590,8 +590,8 @@ module Aws::RDS
|
|
|
590
590
|
# you don't specify an engine version, the default version for the
|
|
591
591
|
# database engine in the Amazon Web Services Region is used.
|
|
592
592
|
#
|
|
593
|
-
# To list all of the available engine versions for MySQL
|
|
594
|
-
#
|
|
593
|
+
# To list all of the available engine versions for Aurora MySQL, use the
|
|
594
|
+
# following command:
|
|
595
595
|
#
|
|
596
596
|
# `aws rds describe-db-engine-versions --engine aurora-mysql --query
|
|
597
597
|
# "DBEngineVersions[].EngineVersion"`
|
|
@@ -762,8 +762,8 @@ module Aws::RDS
|
|
|
762
762
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
|
763
763
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
|
764
764
|
# @option options [String] :engine_mode
|
|
765
|
-
# The DB engine mode of the DB cluster, either `provisioned
|
|
766
|
-
# `serverless
|
|
765
|
+
# The DB engine mode of the DB cluster, either `provisioned` or
|
|
766
|
+
# `serverless`.
|
|
767
767
|
#
|
|
768
768
|
# For more information, see [ CreateDBCluster][1].
|
|
769
769
|
#
|
|
@@ -463,14 +463,12 @@ module Aws::RDS
|
|
|
463
463
|
# (IAM) accounts to database accounts is enabled, and otherwise false.
|
|
464
464
|
#
|
|
465
465
|
# IAM database authentication can be enabled for the following database
|
|
466
|
-
# engines
|
|
466
|
+
# engines:
|
|
467
467
|
#
|
|
468
|
-
# * For MySQL 5.
|
|
468
|
+
# * For MySQL 5.7, minor version 5.7.16 or higher.
|
|
469
469
|
#
|
|
470
|
-
# * For
|
|
471
|
-
#
|
|
472
|
-
# * Aurora 5.6 or higher. To enable IAM database authentication for
|
|
473
|
-
# Aurora, see DBCluster Type.
|
|
470
|
+
# * For Amazon Aurora, all versions of Aurora MySQL and Aurora
|
|
471
|
+
# PostgreSQL.
|
|
474
472
|
# @return [Boolean]
|
|
475
473
|
def iam_database_authentication_enabled
|
|
476
474
|
data[:iam_database_authentication_enabled]
|
|
@@ -1216,12 +1214,9 @@ module Aws::RDS
|
|
|
1216
1214
|
#
|
|
1217
1215
|
# Valid Values:
|
|
1218
1216
|
#
|
|
1219
|
-
# * `aurora` (for MySQL
|
|
1220
|
-
#
|
|
1221
|
-
# * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
|
|
1222
|
-
# Aurora)
|
|
1217
|
+
# * `aurora-mysql` (for Aurora MySQL DB instances)
|
|
1223
1218
|
#
|
|
1224
|
-
# * `aurora-postgresql`
|
|
1219
|
+
# * `aurora-postgresql` (for Aurora PostgreSQL DB instances)
|
|
1225
1220
|
#
|
|
1226
1221
|
# * `custom-oracle-ee (for RDS Custom for Oracle DB instances)`
|
|
1227
1222
|
#
|
|
@@ -226,10 +226,7 @@ module Aws::RDS
|
|
|
226
226
|
#
|
|
227
227
|
# The following are the valid DB engine values:
|
|
228
228
|
#
|
|
229
|
-
# * `aurora`
|
|
230
|
-
#
|
|
231
|
-
# * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
|
|
232
|
-
# Aurora)
|
|
229
|
+
# * `aurora-mysql`
|
|
233
230
|
#
|
|
234
231
|
# * `aurora-postgresql`
|
|
235
232
|
#
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
|
@@ -903,11 +903,11 @@ module Aws::RDS
|
|
|
903
903
|
#
|
|
904
904
|
# **Aurora MySQL**
|
|
905
905
|
#
|
|
906
|
-
# Example: `
|
|
906
|
+
# Example: `aurora-mysql5.7`, `aurora-mysql8.0`
|
|
907
907
|
#
|
|
908
908
|
# **Aurora PostgreSQL**
|
|
909
909
|
#
|
|
910
|
-
# Example: `aurora-
|
|
910
|
+
# Example: `aurora-postgresql14`
|
|
911
911
|
#
|
|
912
912
|
# **RDS for MySQL**
|
|
913
913
|
#
|
|
@@ -936,10 +936,7 @@ module Aws::RDS
|
|
|
936
936
|
#
|
|
937
937
|
# The following are the valid DB engine values:
|
|
938
938
|
#
|
|
939
|
-
# * `aurora`
|
|
940
|
-
#
|
|
941
|
-
# * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
|
|
942
|
-
# Aurora)
|
|
939
|
+
# * `aurora-mysql`
|
|
943
940
|
#
|
|
944
941
|
# * `aurora-postgresql`
|
|
945
942
|
#
|
|
@@ -1278,12 +1275,9 @@ module Aws::RDS
|
|
|
1278
1275
|
#
|
|
1279
1276
|
# Valid Values:
|
|
1280
1277
|
#
|
|
1281
|
-
# * `aurora` (for MySQL
|
|
1278
|
+
# * `aurora-mysql` (for Aurora MySQL DB instances)
|
|
1282
1279
|
#
|
|
1283
|
-
# * `aurora-
|
|
1284
|
-
# Aurora)
|
|
1285
|
-
#
|
|
1286
|
-
# * `aurora-postgresql`
|
|
1280
|
+
# * `aurora-postgresql` (for Aurora PostgreSQL DB instances)
|
|
1287
1281
|
#
|
|
1288
1282
|
# * `custom-oracle-ee (for RDS Custom for Oracle DB instances)`
|
|
1289
1283
|
#
|
|
@@ -2204,10 +2198,7 @@ module Aws::RDS
|
|
|
2204
2198
|
#
|
|
2205
2199
|
# The following are the valid DB engine values:
|
|
2206
2200
|
#
|
|
2207
|
-
# * `aurora`
|
|
2208
|
-
#
|
|
2209
|
-
# * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
|
|
2210
|
-
# Aurora)
|
|
2201
|
+
# * `aurora-mysql`
|
|
2211
2202
|
#
|
|
2212
2203
|
# * `aurora-postgresql`
|
|
2213
2204
|
#
|
|
@@ -2750,11 +2741,12 @@ module Aws::RDS
|
|
|
2750
2741
|
#
|
|
2751
2742
|
# Valid Values:
|
|
2752
2743
|
#
|
|
2753
|
-
# * `aurora-mysql`
|
|
2754
|
-
# Aurora)
|
|
2744
|
+
# * `aurora-mysql`
|
|
2755
2745
|
#
|
|
2756
2746
|
# * `aurora-postgresql`
|
|
2757
2747
|
#
|
|
2748
|
+
# * `custom-oracle-ee`
|
|
2749
|
+
#
|
|
2758
2750
|
# * `mariadb`
|
|
2759
2751
|
#
|
|
2760
2752
|
# * `mysql`
|
data/lib/aws-sdk-rds/types.rb
CHANGED
|
@@ -1800,8 +1800,16 @@ module Aws::RDS
|
|
|
1800
1800
|
# @return [String]
|
|
1801
1801
|
#
|
|
1802
1802
|
# @!attribute [rw] image_id
|
|
1803
|
-
# The ID of the
|
|
1804
|
-
#
|
|
1803
|
+
# The ID of the Amazon Machine Image (AMI). For RDS Custom for SQL
|
|
1804
|
+
# Server, an AMI ID is required to create a CEV. For RDS Custom for
|
|
1805
|
+
# Oracle, the default is the most recent AMI available, but you can
|
|
1806
|
+
# specify an AMI ID that was used in a different Oracle CEV. Find the
|
|
1807
|
+
# AMIs used by your CEVs by calling the [DescribeDBEngineVersions][1]
|
|
1808
|
+
# operation.
|
|
1809
|
+
#
|
|
1810
|
+
#
|
|
1811
|
+
#
|
|
1812
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeDBEngineVersions.html
|
|
1805
1813
|
# @return [String]
|
|
1806
1814
|
#
|
|
1807
1815
|
# @!attribute [rw] kms_key_id
|
|
@@ -2871,11 +2879,11 @@ module Aws::RDS
|
|
|
2871
2879
|
#
|
|
2872
2880
|
# **Aurora MySQL**
|
|
2873
2881
|
#
|
|
2874
|
-
# Example: `
|
|
2882
|
+
# Example: `aurora-mysql5.7`, `aurora-mysql8.0`
|
|
2875
2883
|
#
|
|
2876
2884
|
# **Aurora PostgreSQL**
|
|
2877
2885
|
#
|
|
2878
|
-
# Example: `aurora-
|
|
2886
|
+
# Example: `aurora-postgresql14`
|
|
2879
2887
|
#
|
|
2880
2888
|
# **RDS for MySQL**
|
|
2881
2889
|
#
|
|
@@ -2904,10 +2912,7 @@ module Aws::RDS
|
|
|
2904
2912
|
#
|
|
2905
2913
|
# The following are the valid DB engine values:
|
|
2906
2914
|
#
|
|
2907
|
-
# * `aurora`
|
|
2908
|
-
#
|
|
2909
|
-
# * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
|
|
2910
|
-
# Aurora)
|
|
2915
|
+
# * `aurora-mysql`
|
|
2911
2916
|
#
|
|
2912
2917
|
# * `aurora-postgresql`
|
|
2913
2918
|
#
|
|
@@ -3303,12 +3308,9 @@ module Aws::RDS
|
|
|
3303
3308
|
#
|
|
3304
3309
|
# Valid Values:
|
|
3305
3310
|
#
|
|
3306
|
-
# * `aurora` (for MySQL
|
|
3311
|
+
# * `aurora-mysql` (for Aurora MySQL DB instances)
|
|
3307
3312
|
#
|
|
3308
|
-
# * `aurora-
|
|
3309
|
-
# Aurora)
|
|
3310
|
-
#
|
|
3311
|
-
# * `aurora-postgresql`
|
|
3313
|
+
# * `aurora-postgresql` (for Aurora PostgreSQL DB instances)
|
|
3312
3314
|
#
|
|
3313
3315
|
# * `custom-oracle-ee (for RDS Custom for Oracle DB instances)`
|
|
3314
3316
|
#
|
|
@@ -5106,10 +5108,7 @@ module Aws::RDS
|
|
|
5106
5108
|
#
|
|
5107
5109
|
# The following are the valid DB engine values:
|
|
5108
5110
|
#
|
|
5109
|
-
# * `aurora`
|
|
5110
|
-
#
|
|
5111
|
-
# * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
|
|
5112
|
-
# Aurora)
|
|
5111
|
+
# * `aurora-mysql`
|
|
5113
5112
|
#
|
|
5114
5113
|
# * `aurora-postgresql`
|
|
5115
5114
|
#
|
|
@@ -7757,14 +7756,12 @@ module Aws::RDS
|
|
|
7757
7756
|
# otherwise false.
|
|
7758
7757
|
#
|
|
7759
7758
|
# IAM database authentication can be enabled for the following
|
|
7760
|
-
# database engines
|
|
7759
|
+
# database engines:
|
|
7761
7760
|
#
|
|
7762
|
-
# * For MySQL 5.
|
|
7761
|
+
# * For MySQL 5.7, minor version 5.7.16 or higher.
|
|
7763
7762
|
#
|
|
7764
|
-
# * For
|
|
7765
|
-
#
|
|
7766
|
-
# * Aurora 5.6 or higher. To enable IAM database authentication for
|
|
7767
|
-
# Aurora, see DBCluster Type.
|
|
7763
|
+
# * For Amazon Aurora, all versions of Aurora MySQL and Aurora
|
|
7764
|
+
# PostgreSQL.
|
|
7768
7765
|
# @return [Boolean]
|
|
7769
7766
|
#
|
|
7770
7767
|
# @!attribute [rw] performance_insights_enabled
|
|
@@ -10789,11 +10786,12 @@ module Aws::RDS
|
|
|
10789
10786
|
#
|
|
10790
10787
|
# Valid Values:
|
|
10791
10788
|
#
|
|
10792
|
-
# * `aurora-mysql`
|
|
10793
|
-
# Aurora)
|
|
10789
|
+
# * `aurora-mysql`
|
|
10794
10790
|
#
|
|
10795
10791
|
# * `aurora-postgresql`
|
|
10796
10792
|
#
|
|
10793
|
+
# * `custom-oracle-ee`
|
|
10794
|
+
#
|
|
10797
10795
|
# * `mariadb`
|
|
10798
10796
|
#
|
|
10799
10797
|
# * `mysql`
|
|
@@ -11833,8 +11831,6 @@ module Aws::RDS
|
|
|
11833
11831
|
#
|
|
11834
11832
|
# Valid Values:
|
|
11835
11833
|
#
|
|
11836
|
-
# * `aurora5.6`
|
|
11837
|
-
#
|
|
11838
11834
|
# * `aurora-mysql5.7`
|
|
11839
11835
|
#
|
|
11840
11836
|
# * `aurora-mysql8.0`
|
|
@@ -12414,11 +12410,12 @@ module Aws::RDS
|
|
|
12414
12410
|
#
|
|
12415
12411
|
# Valid Values:
|
|
12416
12412
|
#
|
|
12417
|
-
# * `aurora-mysql`
|
|
12418
|
-
# Aurora)
|
|
12413
|
+
# * `aurora-mysql`
|
|
12419
12414
|
#
|
|
12420
12415
|
# * `aurora-postgresql`
|
|
12421
12416
|
#
|
|
12417
|
+
# * `custom-oracle-ee`
|
|
12418
|
+
#
|
|
12422
12419
|
# * `mariadb`
|
|
12423
12420
|
#
|
|
12424
12421
|
# * `mysql`
|
|
@@ -14601,19 +14598,12 @@ module Aws::RDS
|
|
|
14601
14598
|
# all replicas must be running an engine version that's the same or
|
|
14602
14599
|
# later than the version you specify.
|
|
14603
14600
|
#
|
|
14604
|
-
# To list all of the available engine versions for Aurora MySQL
|
|
14605
|
-
# version 2 (5.7-compatible) and version 3 (MySQL 8.0-compatible), use
|
|
14601
|
+
# To list all of the available engine versions for Aurora MySQL, use
|
|
14606
14602
|
# the following command:
|
|
14607
14603
|
#
|
|
14608
14604
|
# `aws rds describe-db-engine-versions --engine aurora-mysql --query
|
|
14609
14605
|
# "DBEngineVersions[].EngineVersion"`
|
|
14610
14606
|
#
|
|
14611
|
-
# To list all of the available engine versions for MySQL
|
|
14612
|
-
# 5.6-compatible Aurora, use the following command:
|
|
14613
|
-
#
|
|
14614
|
-
# `aws rds describe-db-engine-versions --engine aurora --query
|
|
14615
|
-
# "DBEngineVersions[].EngineVersion"`
|
|
14616
|
-
#
|
|
14617
14607
|
# To list all of the available engine versions for Aurora PostgreSQL,
|
|
14618
14608
|
# use the following command:
|
|
14619
14609
|
#
|
|
@@ -16825,21 +16815,15 @@ module Aws::RDS
|
|
|
16825
16815
|
# applied during the next maintenance window unless `ApplyImmediately`
|
|
16826
16816
|
# is enabled.
|
|
16827
16817
|
#
|
|
16828
|
-
# To list all of the available engine versions for `aurora` (for MySQL
|
|
16829
|
-
# 5.6-compatible Aurora), use the following command:
|
|
16830
|
-
#
|
|
16831
|
-
# `` aws rds describe-db-engine-versions --engine aurora --query
|
|
16832
|
-
# '*[]|[?SupportsGlobalDatabases == `true`].[EngineVersion]' ``
|
|
16833
|
-
#
|
|
16834
16818
|
# To list all of the available engine versions for `aurora-mysql` (for
|
|
16835
|
-
# MySQL
|
|
16836
|
-
# following command:
|
|
16819
|
+
# MySQL-based Aurora global databases), use the following command:
|
|
16837
16820
|
#
|
|
16838
16821
|
# `` aws rds describe-db-engine-versions --engine aurora-mysql --query
|
|
16839
16822
|
# '*[]|[?SupportsGlobalDatabases == `true`].[EngineVersion]' ``
|
|
16840
16823
|
#
|
|
16841
|
-
# To list all of the available engine versions for
|
|
16842
|
-
#
|
|
16824
|
+
# To list all of the available engine versions for `aurora-postgresql`
|
|
16825
|
+
# (for PostgreSQL-based Aurora global databases), use the following
|
|
16826
|
+
# command:
|
|
16843
16827
|
#
|
|
16844
16828
|
# `` aws rds describe-db-engine-versions --engine aurora-postgresql
|
|
16845
16829
|
# --query '*[]|[?SupportsGlobalDatabases == `true`].[EngineVersion]'
|
|
@@ -18989,8 +18973,8 @@ module Aws::RDS
|
|
|
18989
18973
|
#
|
|
18990
18974
|
# @!attribute [rw] db_cluster_parameter_group_name
|
|
18991
18975
|
# The name of the DB cluster parameter group to associate with the
|
|
18992
|
-
# restored DB cluster. If this argument is omitted,
|
|
18993
|
-
#
|
|
18976
|
+
# restored DB cluster. If this argument is omitted, the default
|
|
18977
|
+
# parameter group for the engine version is used.
|
|
18994
18978
|
#
|
|
18995
18979
|
# Constraints:
|
|
18996
18980
|
#
|
|
@@ -19017,16 +19001,14 @@ module Aws::RDS
|
|
|
19017
19001
|
# @!attribute [rw] engine
|
|
19018
19002
|
# The name of the database engine to be used for this DB cluster.
|
|
19019
19003
|
#
|
|
19020
|
-
# Valid Values: `aurora-mysql` (for
|
|
19021
|
-
# 8.0-compatible Aurora)
|
|
19004
|
+
# Valid Values: `aurora-mysql` (for Aurora MySQL)
|
|
19022
19005
|
# @return [String]
|
|
19023
19006
|
#
|
|
19024
19007
|
# @!attribute [rw] engine_version
|
|
19025
19008
|
# The version number of the database engine to use.
|
|
19026
19009
|
#
|
|
19027
19010
|
# To list all of the available engine versions for `aurora-mysql`
|
|
19028
|
-
# (
|
|
19029
|
-
# following command:
|
|
19011
|
+
# (Aurora MySQL), use the following command:
|
|
19030
19012
|
#
|
|
19031
19013
|
# `aws rds describe-db-engine-versions --engine aurora-mysql --query
|
|
19032
19014
|
# "DBEngineVersions[].EngineVersion"`
|
|
@@ -19480,9 +19462,8 @@ module Aws::RDS
|
|
|
19480
19462
|
# you don't specify an engine version, the default version for the
|
|
19481
19463
|
# database engine in the Amazon Web Services Region is used.
|
|
19482
19464
|
#
|
|
19483
|
-
# To list all of the available engine versions for MySQL
|
|
19484
|
-
#
|
|
19485
|
-
# command:
|
|
19465
|
+
# To list all of the available engine versions for Aurora MySQL, use
|
|
19466
|
+
# the following command:
|
|
19486
19467
|
#
|
|
19487
19468
|
# `aws rds describe-db-engine-versions --engine aurora-mysql --query
|
|
19488
19469
|
# "DBEngineVersions[].EngineVersion"`
|
|
@@ -19677,8 +19658,8 @@ module Aws::RDS
|
|
|
19677
19658
|
# @return [Array<String>]
|
|
19678
19659
|
#
|
|
19679
19660
|
# @!attribute [rw] engine_mode
|
|
19680
|
-
# The DB engine mode of the DB cluster, either `provisioned
|
|
19681
|
-
# `serverless
|
|
19661
|
+
# The DB engine mode of the DB cluster, either `provisioned` or
|
|
19662
|
+
# `serverless`.
|
|
19682
19663
|
#
|
|
19683
19664
|
# For more information, see [ CreateDBCluster][1].
|
|
19684
19665
|
#
|
|
@@ -19974,9 +19955,6 @@ module Aws::RDS
|
|
|
19974
19955
|
# * `copy-on-write` - The new DB cluster is restored as a clone of the
|
|
19975
19956
|
# source DB cluster.
|
|
19976
19957
|
#
|
|
19977
|
-
# Constraints: You can't specify `copy-on-write` if the engine
|
|
19978
|
-
# version of the source DB cluster is earlier than 1.11.
|
|
19979
|
-
#
|
|
19980
19958
|
# If you don't specify a `RestoreType` value, then the new DB cluster
|
|
19981
19959
|
# is restored as a full copy of the source DB cluster.
|
|
19982
19960
|
#
|
data/lib/aws-sdk-rds.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-rds
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.177.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-04-
|
|
11
|
+
date: 2023-04-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sigv4
|