aws-sdk-rds 1.277.0 → 1.280.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +140 -52
- data/lib/aws-sdk-rds/client_api.rb +1 -0
- data/lib/aws-sdk-rds/db_cluster.rb +8 -0
- data/lib/aws-sdk-rds/db_instance.rb +96 -36
- data/lib/aws-sdk-rds/db_subnet_group.rb +4 -1
- data/lib/aws-sdk-rds/types.rb +147 -59
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/db_cluster.rbs +3 -0
- data/sig/types.rbs +1 -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: 2853e9f356af260ed3fd570cc4d68f2e634a983847f365738a23428a370e16a3
|
4
|
+
data.tar.gz: 23edb5b225280d21c97e84c5a0c1cb24c8e3f7a22a4dc5bec4b038d4135b95a4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c6b9e66a3a724bcd1fa9ebb3fbed94769f6983bf3e61d2b2dd026a0a7dcbecd537e124bdc6b912e7d2b0b6110498fee09d365f16dc94b745dbf5c16fb81c67af
|
7
|
+
data.tar.gz: 16ce31748f483d12130db990a01f580542b52fd6b739cce4c4e22c38d394cf2e0888fcda0c738828e5c10e1721f5b0563af1cb57ef659c2d6e11d075d9608837
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.280.0 (2025-06-11)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Updates Amazon RDS documentation for Amazon RDS for Db2 cross-Region replicas in standby mode.
|
8
|
+
|
9
|
+
1.279.0 (2025-06-06)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Include Global Cluster Identifier in DBCluster if the DBCluster is a Global Cluster Member.
|
13
|
+
|
14
|
+
1.278.0 (2025-06-02)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
4
19
|
1.277.0 (2025-05-20)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.280.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -3906,6 +3906,7 @@ module Aws::RDS
|
|
3906
3906
|
# resp.db_cluster.tag_list #=> Array
|
3907
3907
|
# resp.db_cluster.tag_list[0].key #=> String
|
3908
3908
|
# resp.db_cluster.tag_list[0].value #=> String
|
3909
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
3909
3910
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
3910
3911
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
3911
3912
|
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
@@ -6094,20 +6095,22 @@ module Aws::RDS
|
|
6094
6095
|
|
6095
6096
|
# Creates a new DB instance that acts as a read replica for an existing
|
6096
6097
|
# source DB instance or Multi-AZ DB cluster. You can create a read
|
6097
|
-
# replica for a DB instance running
|
6098
|
-
#
|
6099
|
-
#
|
6100
|
-
#
|
6101
|
-
#
|
6102
|
-
#
|
6098
|
+
# replica for a DB instance running MariaDB, MySQL, Oracle, PostgreSQL,
|
6099
|
+
# or SQL Server. You can create a read replica for a Multi-AZ DB cluster
|
6100
|
+
# running MySQL or PostgreSQL. For more information, see [Working with
|
6101
|
+
# read replicas][1] and [Migrating from a Multi-AZ DB cluster to a DB
|
6102
|
+
# instance using a read replica][2] in the *Amazon RDS User Guide*.
|
6103
|
+
#
|
6104
|
+
# Amazon RDS for Db2 supports this operation for standby replicas. To
|
6105
|
+
# create a standby replica for a DB instance running Db2, you must set
|
6106
|
+
# `ReplicaMode` to `mounted`.
|
6103
6107
|
#
|
6104
6108
|
# Amazon Aurora doesn't support this operation. To create a DB instance
|
6105
6109
|
# for an Aurora DB cluster, use the `CreateDBInstance` operation.
|
6106
6110
|
#
|
6107
|
-
#
|
6108
|
-
#
|
6109
|
-
#
|
6110
|
-
# as specified.
|
6111
|
+
# RDS creates read replicas with backups disabled. All other attributes
|
6112
|
+
# (including DB security groups and DB parameter groups) are inherited
|
6113
|
+
# from the source DB instance or cluster, except as specified.
|
6111
6114
|
#
|
6112
6115
|
# Your source DB instance or cluster must have backup retention enabled.
|
6113
6116
|
#
|
@@ -6123,8 +6126,14 @@ module Aws::RDS
|
|
6123
6126
|
#
|
6124
6127
|
# @option params [String] :source_db_instance_identifier
|
6125
6128
|
# The identifier of the DB instance that will act as the source for the
|
6126
|
-
# read replica. Each DB instance can have up to 15 read replicas,
|
6127
|
-
# the
|
6129
|
+
# read replica. Each DB instance can have up to 15 read replicas, except
|
6130
|
+
# for the following engines:
|
6131
|
+
#
|
6132
|
+
# * Db2 - Can have up to three replicas.
|
6133
|
+
#
|
6134
|
+
# * Oracle - Can have up to five read replicas.
|
6135
|
+
#
|
6136
|
+
# * SQL Server - Can have up to five read replicas.
|
6128
6137
|
#
|
6129
6138
|
# Constraints:
|
6130
6139
|
#
|
@@ -6233,6 +6242,16 @@ module Aws::RDS
|
|
6233
6242
|
# The name of the DB parameter group to associate with this read replica
|
6234
6243
|
# DB instance.
|
6235
6244
|
#
|
6245
|
+
# For the Db2 DB engine, if your source DB instance uses the Bring Your
|
6246
|
+
# Own License model, then a custom parameter group must be associated
|
6247
|
+
# with the replica. For a same Amazon Web Services Region replica, if
|
6248
|
+
# you don't specify a custom parameter group, Amazon RDS associates the
|
6249
|
+
# custom parameter group associated with the source DB instance. For a
|
6250
|
+
# cross-Region replica, you must specify a custom parameter group. This
|
6251
|
+
# custom parameter group must include your IBM Site ID and IBM Customer
|
6252
|
+
# ID. For more information, see [ IBM IDs for Bring Your Own License for
|
6253
|
+
# Db2][1].
|
6254
|
+
#
|
6236
6255
|
# For Single-AZ or Multi-AZ DB instance read replica instances, if you
|
6237
6256
|
# don't specify a value for `DBParameterGroupName`, then Amazon RDS
|
6238
6257
|
# uses the `DBParameterGroup` of the source DB instance for a same
|
@@ -6245,9 +6264,9 @@ module Aws::RDS
|
|
6245
6264
|
#
|
6246
6265
|
# Specifying a parameter group for this operation is only supported for
|
6247
6266
|
# MySQL DB instances for cross-Region read replicas, for Multi-AZ DB
|
6248
|
-
# cluster read replica instances,
|
6249
|
-
# supported for MySQL DB instances for same
|
6250
|
-
# RDS Custom.
|
6267
|
+
# cluster read replica instances, for Db2 DB instances, and for Oracle
|
6268
|
+
# DB instances. It isn't supported for MySQL DB instances for same
|
6269
|
+
# Region read replicas or for RDS Custom.
|
6251
6270
|
#
|
6252
6271
|
# Constraints:
|
6253
6272
|
#
|
@@ -6257,6 +6276,10 @@ module Aws::RDS
|
|
6257
6276
|
#
|
6258
6277
|
# * Can't end with a hyphen or contain two consecutive hyphens.
|
6259
6278
|
#
|
6279
|
+
#
|
6280
|
+
#
|
6281
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-licensing.html#db2-prereqs-ibm-info
|
6282
|
+
#
|
6260
6283
|
# @option params [Boolean] :publicly_accessible
|
6261
6284
|
# Specifies whether the DB instance is publicly accessible.
|
6262
6285
|
#
|
@@ -6630,31 +6653,50 @@ module Aws::RDS
|
|
6630
6653
|
# Example: `123.124.125.126,234.235.236.237`
|
6631
6654
|
#
|
6632
6655
|
# @option params [String] :replica_mode
|
6633
|
-
# The open mode of the replica database
|
6656
|
+
# The open mode of the replica database.
|
6634
6657
|
#
|
6635
|
-
# <note markdown="1"> This parameter is only supported for
|
6658
|
+
# <note markdown="1"> This parameter is only supported for Db2 DB instances and Oracle DB
|
6659
|
+
# instances.
|
6636
6660
|
#
|
6637
6661
|
# </note>
|
6638
6662
|
#
|
6639
|
-
#
|
6640
|
-
# Edition. The main use case for mounted replicas is cross-Region
|
6641
|
-
# disaster recovery. The primary database doesn't use Active Data Guard
|
6642
|
-
# to transmit information to the mounted replica. Because it doesn't
|
6643
|
-
# accept user connections, a mounted replica can't serve a read-only
|
6644
|
-
# workload.
|
6663
|
+
# Db2
|
6645
6664
|
#
|
6646
|
-
#
|
6647
|
-
#
|
6648
|
-
#
|
6649
|
-
#
|
6665
|
+
# : Standby DB replicas are included in Db2 Advanced Edition (AE) and
|
6666
|
+
# Db2 Standard Edition (SE). The main use case for standby replicas is
|
6667
|
+
# cross-Region disaster recovery. Because it doesn't accept user
|
6668
|
+
# connections, a standby replica can't serve a read-only workload.
|
6669
|
+
#
|
6670
|
+
# You can create a combination of standby and read-only DB replicas
|
6671
|
+
# for the same primary DB instance. For more information, see [Working
|
6672
|
+
# with read replicas for Amazon RDS for Db2][1] in the *Amazon RDS
|
6673
|
+
# User Guide*.
|
6650
6674
|
#
|
6651
|
-
#
|
6652
|
-
#
|
6653
|
-
# you can manage the open mode manually.
|
6675
|
+
# To create standby DB replicas for RDS for Db2, set this parameter to
|
6676
|
+
# `mounted`.
|
6654
6677
|
#
|
6678
|
+
# Oracle
|
6679
|
+
#
|
6680
|
+
# : Mounted DB replicas are included in Oracle Database Enterprise
|
6681
|
+
# Edition. The main use case for mounted replicas is cross-Region
|
6682
|
+
# disaster recovery. The primary database doesn't use Active Data
|
6683
|
+
# Guard to transmit information to the mounted replica. Because it
|
6684
|
+
# doesn't accept user connections, a mounted replica can't serve a
|
6685
|
+
# read-only workload.
|
6686
|
+
#
|
6687
|
+
# You can create a combination of mounted and read-only DB replicas
|
6688
|
+
# for the same primary DB instance. For more information, see [Working
|
6689
|
+
# with read replicas for Amazon RDS for Oracle][2] in the *Amazon RDS
|
6690
|
+
# User Guide*.
|
6655
6691
|
#
|
6692
|
+
# For RDS Custom, you must specify this parameter and set it to
|
6693
|
+
# `mounted`. The value won't be set by default. After replica
|
6694
|
+
# creation, you can manage the open mode manually.
|
6656
6695
|
#
|
6657
|
-
#
|
6696
|
+
#
|
6697
|
+
#
|
6698
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-replication.html
|
6699
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
6658
6700
|
#
|
6659
6701
|
# @option params [Integer] :max_allocated_storage
|
6660
6702
|
# The upper limit in gibibytes (GiB) to which Amazon RDS can
|
@@ -7520,17 +7562,17 @@ module Aws::RDS
|
|
7520
7562
|
# The name of the primary DB cluster for the DB shard group.
|
7521
7563
|
#
|
7522
7564
|
# @option params [Integer] :compute_redundancy
|
7523
|
-
# Specifies whether to create standby DB shard
|
7524
|
-
# group. Valid values are the following:
|
7565
|
+
# Specifies whether to create standby standby DB data access shard for
|
7566
|
+
# the DB shard group. Valid values are the following:
|
7525
7567
|
#
|
7526
|
-
# * 0 - Creates a DB shard group without a standby DB shard
|
7527
|
-
# is the default value.
|
7568
|
+
# * 0 - Creates a DB shard group without a standby DB data access shard.
|
7569
|
+
# This is the default value.
|
7528
7570
|
#
|
7529
|
-
# * 1 - Creates a DB shard group with a standby DB shard
|
7530
|
-
# different Availability Zone (AZ).
|
7571
|
+
# * 1 - Creates a DB shard group with a standby DB data access shard in
|
7572
|
+
# a different Availability Zone (AZ).
|
7531
7573
|
#
|
7532
|
-
# * 2 - Creates a DB shard group with two standby DB
|
7533
|
-
# different AZs.
|
7574
|
+
# * 2 - Creates a DB shard group with two standby DB data access shard
|
7575
|
+
# in two different AZs.
|
7534
7576
|
#
|
7535
7577
|
# @option params [required, Float] :max_acu
|
7536
7578
|
# The maximum capacity of the DB shard group in Aurora capacity units
|
@@ -9350,6 +9392,7 @@ module Aws::RDS
|
|
9350
9392
|
# resp.db_cluster.tag_list #=> Array
|
9351
9393
|
# resp.db_cluster.tag_list[0].key #=> String
|
9352
9394
|
# resp.db_cluster.tag_list[0].value #=> String
|
9395
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
9353
9396
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
9354
9397
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
9355
9398
|
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
@@ -12802,6 +12845,7 @@ module Aws::RDS
|
|
12802
12845
|
# resp.db_clusters[0].tag_list #=> Array
|
12803
12846
|
# resp.db_clusters[0].tag_list[0].key #=> String
|
12804
12847
|
# resp.db_clusters[0].tag_list[0].value #=> String
|
12848
|
+
# resp.db_clusters[0].global_cluster_identifier #=> String
|
12805
12849
|
# resp.db_clusters[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
12806
12850
|
# resp.db_clusters[0].global_write_forwarding_requested #=> Boolean
|
12807
12851
|
# resp.db_clusters[0].pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
@@ -17912,6 +17956,17 @@ module Aws::RDS
|
|
17912
17956
|
#
|
17913
17957
|
# This command doesn't apply to RDS Custom.
|
17914
17958
|
#
|
17959
|
+
# <note markdown="1"> This operation uses resources on database instances. Because of this,
|
17960
|
+
# we recommend publishing database logs to CloudWatch and then using the
|
17961
|
+
# GetLogEvents operation. For more information, see [GetLogEvents][1] in
|
17962
|
+
# the *Amazon CloudWatch Logs API Reference*.
|
17963
|
+
#
|
17964
|
+
# </note>
|
17965
|
+
#
|
17966
|
+
#
|
17967
|
+
#
|
17968
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_GetLogEvents.html
|
17969
|
+
#
|
17915
17970
|
# @option params [required, String] :db_instance_identifier
|
17916
17971
|
# The customer-assigned name of the DB instance that contains the log
|
17917
17972
|
# files you want to list.
|
@@ -18226,6 +18281,7 @@ module Aws::RDS
|
|
18226
18281
|
# resp.db_cluster.tag_list #=> Array
|
18227
18282
|
# resp.db_cluster.tag_list[0].key #=> String
|
18228
18283
|
# resp.db_cluster.tag_list[0].value #=> String
|
18284
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
18229
18285
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
18230
18286
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
18231
18287
|
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
@@ -19952,6 +20008,7 @@ module Aws::RDS
|
|
19952
20008
|
# resp.db_cluster.tag_list #=> Array
|
19953
20009
|
# resp.db_cluster.tag_list[0].key #=> String
|
19954
20010
|
# resp.db_cluster.tag_list[0].value #=> String
|
20011
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
19955
20012
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
19956
20013
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
19957
20014
|
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
@@ -21267,26 +21324,50 @@ module Aws::RDS
|
|
21267
21324
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL-certificate-rotation.html
|
21268
21325
|
#
|
21269
21326
|
# @option params [String] :replica_mode
|
21270
|
-
#
|
21271
|
-
# mounted or read-only.
|
21327
|
+
# The open mode of a replica database.
|
21272
21328
|
#
|
21273
|
-
# <note markdown="1">
|
21329
|
+
# <note markdown="1"> This parameter is only supported for Db2 DB instances and Oracle DB
|
21330
|
+
# instances.
|
21274
21331
|
#
|
21275
21332
|
# </note>
|
21276
21333
|
#
|
21277
|
-
#
|
21278
|
-
# main use case for mounted replicas is cross-Region disaster recovery.
|
21279
|
-
# The primary database doesn't use Active Data Guard to transmit
|
21280
|
-
# information to the mounted replica. Because it doesn't accept user
|
21281
|
-
# connections, a mounted replica can't serve a read-only workload. For
|
21282
|
-
# more information, see [Working with Oracle Read Replicas for Amazon
|
21283
|
-
# RDS][1] in the *Amazon RDS User Guide*.
|
21334
|
+
# Db2
|
21284
21335
|
#
|
21285
|
-
#
|
21336
|
+
# : Standby DB replicas are included in Db2 Advanced Edition (AE) and
|
21337
|
+
# Db2 Standard Edition (SE). The main use case for standby replicas is
|
21338
|
+
# cross-Region disaster recovery. Because it doesn't accept user
|
21339
|
+
# connections, a standby replica can't serve a read-only workload.
|
21340
|
+
#
|
21341
|
+
# You can create a combination of standby and read-only DB replicas
|
21342
|
+
# for the same primary DB instance. For more information, see [Working
|
21343
|
+
# with read replicas for Amazon RDS for Db2][1] in the *Amazon RDS
|
21344
|
+
# User Guide*.
|
21345
|
+
#
|
21346
|
+
# To create standby DB replicas for RDS for Db2, set this parameter to
|
21347
|
+
# `mounted`.
|
21348
|
+
#
|
21349
|
+
# Oracle
|
21350
|
+
#
|
21351
|
+
# : Mounted DB replicas are included in Oracle Database Enterprise
|
21352
|
+
# Edition. The main use case for mounted replicas is cross-Region
|
21353
|
+
# disaster recovery. The primary database doesn't use Active Data
|
21354
|
+
# Guard to transmit information to the mounted replica. Because it
|
21355
|
+
# doesn't accept user connections, a mounted replica can't serve a
|
21356
|
+
# read-only workload.
|
21357
|
+
#
|
21358
|
+
# You can create a combination of mounted and read-only DB replicas
|
21359
|
+
# for the same primary DB instance. For more information, see [Working
|
21360
|
+
# with read replicas for Amazon RDS for Oracle][2] in the *Amazon RDS
|
21361
|
+
# User Guide*.
|
21362
|
+
#
|
21363
|
+
# For RDS Custom, you must specify this parameter and set it to
|
21364
|
+
# `mounted`. The value won't be set by default. After replica
|
21365
|
+
# creation, you can manage the open mode manually.
|
21286
21366
|
#
|
21287
21367
|
#
|
21288
21368
|
#
|
21289
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
21369
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-replication.html
|
21370
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
21290
21371
|
#
|
21291
21372
|
# @option params [Boolean] :enable_customer_owned_ip
|
21292
21373
|
# Specifies whether to enable a customer-owned IP address (CoIP) for an
|
@@ -23832,6 +23913,7 @@ module Aws::RDS
|
|
23832
23913
|
# resp.db_cluster.tag_list #=> Array
|
23833
23914
|
# resp.db_cluster.tag_list[0].key #=> String
|
23834
23915
|
# resp.db_cluster.tag_list[0].value #=> String
|
23916
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
23835
23917
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
23836
23918
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
23837
23919
|
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
@@ -24135,6 +24217,7 @@ module Aws::RDS
|
|
24135
24217
|
# resp.db_cluster.tag_list #=> Array
|
24136
24218
|
# resp.db_cluster.tag_list[0].key #=> String
|
24137
24219
|
# resp.db_cluster.tag_list[0].value #=> String
|
24220
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
24138
24221
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
24139
24222
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
24140
24223
|
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
@@ -25737,6 +25820,7 @@ module Aws::RDS
|
|
25737
25820
|
# resp.db_cluster.tag_list #=> Array
|
25738
25821
|
# resp.db_cluster.tag_list[0].key #=> String
|
25739
25822
|
# resp.db_cluster.tag_list[0].value #=> String
|
25823
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
25740
25824
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
25741
25825
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
25742
25826
|
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
@@ -26561,6 +26645,7 @@ module Aws::RDS
|
|
26561
26645
|
# resp.db_cluster.tag_list #=> Array
|
26562
26646
|
# resp.db_cluster.tag_list[0].key #=> String
|
26563
26647
|
# resp.db_cluster.tag_list[0].value #=> String
|
26648
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
26564
26649
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
26565
26650
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
26566
26651
|
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
@@ -27368,6 +27453,7 @@ module Aws::RDS
|
|
27368
27453
|
# resp.db_cluster.tag_list #=> Array
|
27369
27454
|
# resp.db_cluster.tag_list[0].key #=> String
|
27370
27455
|
# resp.db_cluster.tag_list[0].value #=> String
|
27456
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
27371
27457
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
27372
27458
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
27373
27459
|
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
@@ -30541,6 +30627,7 @@ module Aws::RDS
|
|
30541
30627
|
# resp.db_cluster.tag_list #=> Array
|
30542
30628
|
# resp.db_cluster.tag_list[0].key #=> String
|
30543
30629
|
# resp.db_cluster.tag_list[0].value #=> String
|
30630
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
30544
30631
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
30545
30632
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
30546
30633
|
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
@@ -31375,6 +31462,7 @@ module Aws::RDS
|
|
31375
31462
|
# resp.db_cluster.tag_list #=> Array
|
31376
31463
|
# resp.db_cluster.tag_list[0].key #=> String
|
31377
31464
|
# resp.db_cluster.tag_list[0].value #=> String
|
31465
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
31378
31466
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
31379
31467
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
31380
31468
|
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
@@ -32285,7 +32373,7 @@ module Aws::RDS
|
|
32285
32373
|
tracer: tracer
|
32286
32374
|
)
|
32287
32375
|
context[:gem_name] = 'aws-sdk-rds'
|
32288
|
-
context[:gem_version] = '1.
|
32376
|
+
context[:gem_version] = '1.280.0'
|
32289
32377
|
Seahorse::Client::Request.new(handlers, context)
|
32290
32378
|
end
|
32291
32379
|
|
@@ -1439,6 +1439,7 @@ module Aws::RDS
|
|
1439
1439
|
DBCluster.add_member(:cross_account_clone, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CrossAccountClone"))
|
1440
1440
|
DBCluster.add_member(:domain_memberships, Shapes::ShapeRef.new(shape: DomainMembershipList, location_name: "DomainMemberships"))
|
1441
1441
|
DBCluster.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
1442
|
+
DBCluster.add_member(:global_cluster_identifier, Shapes::ShapeRef.new(shape: GlobalClusterIdentifier, location_name: "GlobalClusterIdentifier"))
|
1442
1443
|
DBCluster.add_member(:global_write_forwarding_status, Shapes::ShapeRef.new(shape: WriteForwardingStatus, location_name: "GlobalWriteForwardingStatus"))
|
1443
1444
|
DBCluster.add_member(:global_write_forwarding_requested, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "GlobalWriteForwardingRequested"))
|
1444
1445
|
DBCluster.add_member(:pending_modified_values, Shapes::ShapeRef.new(shape: ClusterPendingModifiedValues, location_name: "PendingModifiedValues"))
|
@@ -480,6 +480,14 @@ module Aws::RDS
|
|
480
480
|
data[:tag_list]
|
481
481
|
end
|
482
482
|
|
483
|
+
# Contains a user-supplied global database cluster identifier. This
|
484
|
+
# identifier is the unique key that identifies a global database
|
485
|
+
# cluster.
|
486
|
+
# @return [String]
|
487
|
+
def global_cluster_identifier
|
488
|
+
data[:global_cluster_identifier]
|
489
|
+
end
|
490
|
+
|
483
491
|
# The status of write forwarding for a secondary cluster in an Aurora
|
484
492
|
# global database.
|
485
493
|
# @return [String]
|
@@ -227,17 +227,20 @@ module Aws::RDS
|
|
227
227
|
data[:read_replica_db_cluster_identifiers]
|
228
228
|
end
|
229
229
|
|
230
|
-
# The open mode of an Oracle read replica. The default is
|
231
|
-
# `open-read-only`. For more information, see [Working with
|
232
|
-
#
|
230
|
+
# The open mode of a Db2 or an Oracle read replica. The default is
|
231
|
+
# `open-read-only`. For more information, see [Working with read
|
232
|
+
# replicas for Amazon RDS for Db2][1] and [Working with read replicas
|
233
|
+
# for Amazon RDS for Oracle][2] in the *Amazon RDS User Guide*.
|
233
234
|
#
|
234
|
-
# <note markdown="1"> This attribute is only supported in RDS for Oracle
|
235
|
+
# <note markdown="1"> This attribute is only supported in RDS for Db2, RDS for Oracle, and
|
236
|
+
# RDS Custom for Oracle.
|
235
237
|
#
|
236
238
|
# </note>
|
237
239
|
#
|
238
240
|
#
|
239
241
|
#
|
240
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
242
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-replication.html
|
243
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
241
244
|
# @return [String]
|
242
245
|
def replica_mode
|
243
246
|
data[:replica_mode]
|
@@ -2411,6 +2414,16 @@ module Aws::RDS
|
|
2411
2414
|
# The name of the DB parameter group to associate with this read replica
|
2412
2415
|
# DB instance.
|
2413
2416
|
#
|
2417
|
+
# For the Db2 DB engine, if your source DB instance uses the Bring Your
|
2418
|
+
# Own License model, then a custom parameter group must be associated
|
2419
|
+
# with the replica. For a same Amazon Web Services Region replica, if
|
2420
|
+
# you don't specify a custom parameter group, Amazon RDS associates the
|
2421
|
+
# custom parameter group associated with the source DB instance. For a
|
2422
|
+
# cross-Region replica, you must specify a custom parameter group. This
|
2423
|
+
# custom parameter group must include your IBM Site ID and IBM Customer
|
2424
|
+
# ID. For more information, see [ IBM IDs for Bring Your Own License for
|
2425
|
+
# Db2][1].
|
2426
|
+
#
|
2414
2427
|
# For Single-AZ or Multi-AZ DB instance read replica instances, if you
|
2415
2428
|
# don't specify a value for `DBParameterGroupName`, then Amazon RDS
|
2416
2429
|
# uses the `DBParameterGroup` of the source DB instance for a same
|
@@ -2423,9 +2436,9 @@ module Aws::RDS
|
|
2423
2436
|
#
|
2424
2437
|
# Specifying a parameter group for this operation is only supported for
|
2425
2438
|
# MySQL DB instances for cross-Region read replicas, for Multi-AZ DB
|
2426
|
-
# cluster read replica instances,
|
2427
|
-
# supported for MySQL DB instances for same
|
2428
|
-
# RDS Custom.
|
2439
|
+
# cluster read replica instances, for Db2 DB instances, and for Oracle
|
2440
|
+
# DB instances. It isn't supported for MySQL DB instances for same
|
2441
|
+
# Region read replicas or for RDS Custom.
|
2429
2442
|
#
|
2430
2443
|
# Constraints:
|
2431
2444
|
#
|
@@ -2434,6 +2447,10 @@ module Aws::RDS
|
|
2434
2447
|
# * First character must be a letter.
|
2435
2448
|
#
|
2436
2449
|
# * Can't end with a hyphen or contain two consecutive hyphens.
|
2450
|
+
#
|
2451
|
+
#
|
2452
|
+
#
|
2453
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-licensing.html#db2-prereqs-ibm-info
|
2437
2454
|
# @option options [Boolean] :publicly_accessible
|
2438
2455
|
# Specifies whether the DB instance is publicly accessible.
|
2439
2456
|
#
|
@@ -2782,31 +2799,50 @@ module Aws::RDS
|
|
2782
2799
|
#
|
2783
2800
|
# Example: `123.124.125.126,234.235.236.237`
|
2784
2801
|
# @option options [String] :replica_mode
|
2785
|
-
# The open mode of the replica database
|
2802
|
+
# The open mode of the replica database.
|
2786
2803
|
#
|
2787
|
-
# <note markdown="1"> This parameter is only supported for
|
2804
|
+
# <note markdown="1"> This parameter is only supported for Db2 DB instances and Oracle DB
|
2805
|
+
# instances.
|
2788
2806
|
#
|
2789
2807
|
# </note>
|
2790
2808
|
#
|
2791
|
-
#
|
2792
|
-
# Edition. The main use case for mounted replicas is cross-Region
|
2793
|
-
# disaster recovery. The primary database doesn't use Active Data Guard
|
2794
|
-
# to transmit information to the mounted replica. Because it doesn't
|
2795
|
-
# accept user connections, a mounted replica can't serve a read-only
|
2796
|
-
# workload.
|
2809
|
+
# Db2
|
2797
2810
|
#
|
2798
|
-
#
|
2799
|
-
#
|
2800
|
-
#
|
2801
|
-
#
|
2811
|
+
# : Standby DB replicas are included in Db2 Advanced Edition (AE) and
|
2812
|
+
# Db2 Standard Edition (SE). The main use case for standby replicas is
|
2813
|
+
# cross-Region disaster recovery. Because it doesn't accept user
|
2814
|
+
# connections, a standby replica can't serve a read-only workload.
|
2815
|
+
#
|
2816
|
+
# You can create a combination of standby and read-only DB replicas
|
2817
|
+
# for the same primary DB instance. For more information, see [Working
|
2818
|
+
# with read replicas for Amazon RDS for Db2][1] in the *Amazon RDS
|
2819
|
+
# User Guide*.
|
2820
|
+
#
|
2821
|
+
# To create standby DB replicas for RDS for Db2, set this parameter to
|
2822
|
+
# `mounted`.
|
2823
|
+
#
|
2824
|
+
# Oracle
|
2825
|
+
#
|
2826
|
+
# : Mounted DB replicas are included in Oracle Database Enterprise
|
2827
|
+
# Edition. The main use case for mounted replicas is cross-Region
|
2828
|
+
# disaster recovery. The primary database doesn't use Active Data
|
2829
|
+
# Guard to transmit information to the mounted replica. Because it
|
2830
|
+
# doesn't accept user connections, a mounted replica can't serve a
|
2831
|
+
# read-only workload.
|
2802
2832
|
#
|
2803
|
-
#
|
2804
|
-
#
|
2805
|
-
#
|
2833
|
+
# You can create a combination of mounted and read-only DB replicas
|
2834
|
+
# for the same primary DB instance. For more information, see [Working
|
2835
|
+
# with read replicas for Amazon RDS for Oracle][2] in the *Amazon RDS
|
2836
|
+
# User Guide*.
|
2806
2837
|
#
|
2838
|
+
# For RDS Custom, you must specify this parameter and set it to
|
2839
|
+
# `mounted`. The value won't be set by default. After replica
|
2840
|
+
# creation, you can manage the open mode manually.
|
2807
2841
|
#
|
2808
2842
|
#
|
2809
|
-
#
|
2843
|
+
#
|
2844
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-replication.html
|
2845
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
2810
2846
|
# @option options [Integer] :max_allocated_storage
|
2811
2847
|
# The upper limit in gibibytes (GiB) to which Amazon RDS can
|
2812
2848
|
# automatically scale the storage of the DB instance.
|
@@ -3986,26 +4022,50 @@ module Aws::RDS
|
|
3986
4022
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL-certificate-rotation.html
|
3987
4023
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL-certificate-rotation.html
|
3988
4024
|
# @option options [String] :replica_mode
|
3989
|
-
#
|
3990
|
-
# mounted or read-only.
|
4025
|
+
# The open mode of a replica database.
|
3991
4026
|
#
|
3992
|
-
# <note markdown="1">
|
4027
|
+
# <note markdown="1"> This parameter is only supported for Db2 DB instances and Oracle DB
|
4028
|
+
# instances.
|
3993
4029
|
#
|
3994
4030
|
# </note>
|
3995
4031
|
#
|
3996
|
-
#
|
3997
|
-
# main use case for mounted replicas is cross-Region disaster recovery.
|
3998
|
-
# The primary database doesn't use Active Data Guard to transmit
|
3999
|
-
# information to the mounted replica. Because it doesn't accept user
|
4000
|
-
# connections, a mounted replica can't serve a read-only workload. For
|
4001
|
-
# more information, see [Working with Oracle Read Replicas for Amazon
|
4002
|
-
# RDS][1] in the *Amazon RDS User Guide*.
|
4032
|
+
# Db2
|
4003
4033
|
#
|
4004
|
-
#
|
4034
|
+
# : Standby DB replicas are included in Db2 Advanced Edition (AE) and
|
4035
|
+
# Db2 Standard Edition (SE). The main use case for standby replicas is
|
4036
|
+
# cross-Region disaster recovery. Because it doesn't accept user
|
4037
|
+
# connections, a standby replica can't serve a read-only workload.
|
4038
|
+
#
|
4039
|
+
# You can create a combination of standby and read-only DB replicas
|
4040
|
+
# for the same primary DB instance. For more information, see [Working
|
4041
|
+
# with read replicas for Amazon RDS for Db2][1] in the *Amazon RDS
|
4042
|
+
# User Guide*.
|
4043
|
+
#
|
4044
|
+
# To create standby DB replicas for RDS for Db2, set this parameter to
|
4045
|
+
# `mounted`.
|
4046
|
+
#
|
4047
|
+
# Oracle
|
4048
|
+
#
|
4049
|
+
# : Mounted DB replicas are included in Oracle Database Enterprise
|
4050
|
+
# Edition. The main use case for mounted replicas is cross-Region
|
4051
|
+
# disaster recovery. The primary database doesn't use Active Data
|
4052
|
+
# Guard to transmit information to the mounted replica. Because it
|
4053
|
+
# doesn't accept user connections, a mounted replica can't serve a
|
4054
|
+
# read-only workload.
|
4055
|
+
#
|
4056
|
+
# You can create a combination of mounted and read-only DB replicas
|
4057
|
+
# for the same primary DB instance. For more information, see [Working
|
4058
|
+
# with read replicas for Amazon RDS for Oracle][2] in the *Amazon RDS
|
4059
|
+
# User Guide*.
|
4060
|
+
#
|
4061
|
+
# For RDS Custom, you must specify this parameter and set it to
|
4062
|
+
# `mounted`. The value won't be set by default. After replica
|
4063
|
+
# creation, you can manage the open mode manually.
|
4005
4064
|
#
|
4006
4065
|
#
|
4007
4066
|
#
|
4008
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
4067
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-replication.html
|
4068
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
4009
4069
|
# @option options [Boolean] :enable_customer_owned_ip
|
4010
4070
|
# Specifies whether to enable a customer-owned IP address (CoIP) for an
|
4011
4071
|
# RDS on Outposts DB instance.
|
@@ -53,7 +53,10 @@ module Aws::RDS
|
|
53
53
|
data[:subnet_group_status]
|
54
54
|
end
|
55
55
|
|
56
|
-
# Contains a list of `Subnet` elements.
|
56
|
+
# Contains a list of `Subnet` elements. The list of subnets shown here
|
57
|
+
# might not reflect the current state of your VPC. For the most
|
58
|
+
# up-to-date information, we recommend checking your VPC configuration
|
59
|
+
# directly.
|
57
60
|
# @return [Array<Types::Subnet>]
|
58
61
|
def subnets
|
59
62
|
data[:subnets]
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -1070,7 +1070,7 @@ module Aws::RDS
|
|
1070
1070
|
#
|
1071
1071
|
# Constraints:
|
1072
1072
|
#
|
1073
|
-
# * Must be between 0 and
|
1073
|
+
# * Must be between 0 and 300.
|
1074
1074
|
#
|
1075
1075
|
# ^
|
1076
1076
|
# @return [Integer]
|
@@ -1090,15 +1090,20 @@ module Aws::RDS
|
|
1090
1090
|
# specify one or more SQL statements for the proxy to run when opening
|
1091
1091
|
# each new database connection. The setting is typically used with
|
1092
1092
|
# `SET` statements to make sure that each connection has identical
|
1093
|
-
# settings. Make sure
|
1094
|
-
#
|
1095
|
-
#
|
1093
|
+
# settings. Make sure the query added here is valid. This is an
|
1094
|
+
# optional field, so you can choose to leave it empty. For including
|
1095
|
+
# multiple variables in a single SET statement, use a comma separator.
|
1096
1096
|
#
|
1097
1097
|
# For example: `SET variable1=value1, variable2=value2`
|
1098
1098
|
#
|
1099
|
-
# For multiple statements, use semicolons as the separator.
|
1100
|
-
#
|
1101
1099
|
# Default: no initialization query
|
1100
|
+
#
|
1101
|
+
# Since you can access initialization query as part of target group
|
1102
|
+
# configuration, it is not protected by authentication or
|
1103
|
+
# cryptographic methods. Anyone with access to view or manage your
|
1104
|
+
# proxy target group configuration can view the initialization query.
|
1105
|
+
# You should not add sensitive data, such as passwords or long-lived
|
1106
|
+
# encryption keys, to this option.
|
1102
1107
|
# @return [String]
|
1103
1108
|
#
|
1104
1109
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ConnectionPoolConfiguration AWS API Documentation
|
@@ -1152,12 +1157,20 @@ module Aws::RDS
|
|
1152
1157
|
#
|
1153
1158
|
# @!attribute [rw] init_query
|
1154
1159
|
# One or more SQL statements for the proxy to run when opening each
|
1155
|
-
# new database connection.
|
1156
|
-
# make sure that each connection has identical settings
|
1157
|
-
#
|
1158
|
-
#
|
1159
|
-
#
|
1160
|
-
#
|
1160
|
+
# new database connection. The setting is typically used with `SET`
|
1161
|
+
# statements to make sure that each connection has identical settings.
|
1162
|
+
# The query added here must be valid. For including multiple variables
|
1163
|
+
# in a single SET statement, use a comma separator. This is an
|
1164
|
+
# optional field.
|
1165
|
+
#
|
1166
|
+
# For example: `SET variable1=value1, variable2=value2`
|
1167
|
+
#
|
1168
|
+
# Since you can access initialization query as part of target group
|
1169
|
+
# configuration, it is not protected by authentication or
|
1170
|
+
# cryptographic methods. Anyone with access to view or manage your
|
1171
|
+
# proxy target group configuration can view the initialization query.
|
1172
|
+
# You should not add sensitive data, such as passwords or long-lived
|
1173
|
+
# encryption keys, to this option.
|
1161
1174
|
# @return [String]
|
1162
1175
|
#
|
1163
1176
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ConnectionPoolConfigurationInfo AWS API Documentation
|
@@ -4881,8 +4894,13 @@ module Aws::RDS
|
|
4881
4894
|
# @!attribute [rw] source_db_instance_identifier
|
4882
4895
|
# The identifier of the DB instance that will act as the source for
|
4883
4896
|
# the read replica. Each DB instance can have up to 15 read replicas,
|
4884
|
-
#
|
4885
|
-
#
|
4897
|
+
# except for the following engines:
|
4898
|
+
#
|
4899
|
+
# * Db2 - Can have up to three replicas.
|
4900
|
+
#
|
4901
|
+
# * Oracle - Can have up to five read replicas.
|
4902
|
+
#
|
4903
|
+
# * SQL Server - Can have up to five read replicas.
|
4886
4904
|
#
|
4887
4905
|
# Constraints:
|
4888
4906
|
#
|
@@ -5000,6 +5018,16 @@ module Aws::RDS
|
|
5000
5018
|
# The name of the DB parameter group to associate with this read
|
5001
5019
|
# replica DB instance.
|
5002
5020
|
#
|
5021
|
+
# For the Db2 DB engine, if your source DB instance uses the Bring
|
5022
|
+
# Your Own License model, then a custom parameter group must be
|
5023
|
+
# associated with the replica. For a same Amazon Web Services Region
|
5024
|
+
# replica, if you don't specify a custom parameter group, Amazon RDS
|
5025
|
+
# associates the custom parameter group associated with the source DB
|
5026
|
+
# instance. For a cross-Region replica, you must specify a custom
|
5027
|
+
# parameter group. This custom parameter group must include your IBM
|
5028
|
+
# Site ID and IBM Customer ID. For more information, see [ IBM IDs for
|
5029
|
+
# Bring Your Own License for Db2][1].
|
5030
|
+
#
|
5003
5031
|
# For Single-AZ or Multi-AZ DB instance read replica instances, if you
|
5004
5032
|
# don't specify a value for `DBParameterGroupName`, then Amazon RDS
|
5005
5033
|
# uses the `DBParameterGroup` of the source DB instance for a same
|
@@ -5012,9 +5040,9 @@ module Aws::RDS
|
|
5012
5040
|
#
|
5013
5041
|
# Specifying a parameter group for this operation is only supported
|
5014
5042
|
# for MySQL DB instances for cross-Region read replicas, for Multi-AZ
|
5015
|
-
# DB cluster read replica instances,
|
5016
|
-
# isn't supported for MySQL DB instances for
|
5017
|
-
# replicas or for RDS Custom.
|
5043
|
+
# DB cluster read replica instances, for Db2 DB instances, and for
|
5044
|
+
# Oracle DB instances. It isn't supported for MySQL DB instances for
|
5045
|
+
# same Region read replicas or for RDS Custom.
|
5018
5046
|
#
|
5019
5047
|
# Constraints:
|
5020
5048
|
#
|
@@ -5023,6 +5051,10 @@ module Aws::RDS
|
|
5023
5051
|
# * First character must be a letter.
|
5024
5052
|
#
|
5025
5053
|
# * Can't end with a hyphen or contain two consecutive hyphens.
|
5054
|
+
#
|
5055
|
+
#
|
5056
|
+
#
|
5057
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-licensing.html#db2-prereqs-ibm-info
|
5026
5058
|
# @return [String]
|
5027
5059
|
#
|
5028
5060
|
# @!attribute [rw] publicly_accessible
|
@@ -5432,31 +5464,50 @@ module Aws::RDS
|
|
5432
5464
|
# @return [Array<String>]
|
5433
5465
|
#
|
5434
5466
|
# @!attribute [rw] replica_mode
|
5435
|
-
# The open mode of the replica database
|
5467
|
+
# The open mode of the replica database.
|
5436
5468
|
#
|
5437
|
-
# <note markdown="1"> This parameter is only supported for
|
5469
|
+
# <note markdown="1"> This parameter is only supported for Db2 DB instances and Oracle DB
|
5470
|
+
# instances.
|
5438
5471
|
#
|
5439
5472
|
# </note>
|
5440
5473
|
#
|
5441
|
-
#
|
5442
|
-
# Edition. The main use case for mounted replicas is cross-Region
|
5443
|
-
# disaster recovery. The primary database doesn't use Active Data
|
5444
|
-
# Guard to transmit information to the mounted replica. Because it
|
5445
|
-
# doesn't accept user connections, a mounted replica can't serve a
|
5446
|
-
# read-only workload.
|
5474
|
+
# Db2
|
5447
5475
|
#
|
5448
|
-
#
|
5449
|
-
#
|
5450
|
-
#
|
5451
|
-
#
|
5476
|
+
# : Standby DB replicas are included in Db2 Advanced Edition (AE) and
|
5477
|
+
# Db2 Standard Edition (SE). The main use case for standby replicas
|
5478
|
+
# is cross-Region disaster recovery. Because it doesn't accept user
|
5479
|
+
# connections, a standby replica can't serve a read-only workload.
|
5480
|
+
#
|
5481
|
+
# You can create a combination of standby and read-only DB replicas
|
5482
|
+
# for the same primary DB instance. For more information, see
|
5483
|
+
# [Working with read replicas for Amazon RDS for Db2][1] in the
|
5484
|
+
# *Amazon RDS User Guide*.
|
5485
|
+
#
|
5486
|
+
# To create standby DB replicas for RDS for Db2, set this parameter
|
5487
|
+
# to `mounted`.
|
5452
5488
|
#
|
5453
|
-
#
|
5454
|
-
# `mounted`. The value won't be set by default. After replica
|
5455
|
-
# creation, you can manage the open mode manually.
|
5489
|
+
# Oracle
|
5456
5490
|
#
|
5491
|
+
# : Mounted DB replicas are included in Oracle Database Enterprise
|
5492
|
+
# Edition. The main use case for mounted replicas is cross-Region
|
5493
|
+
# disaster recovery. The primary database doesn't use Active Data
|
5494
|
+
# Guard to transmit information to the mounted replica. Because it
|
5495
|
+
# doesn't accept user connections, a mounted replica can't serve a
|
5496
|
+
# read-only workload.
|
5457
5497
|
#
|
5498
|
+
# You can create a combination of mounted and read-only DB replicas
|
5499
|
+
# for the same primary DB instance. For more information, see
|
5500
|
+
# [Working with read replicas for Amazon RDS for Oracle][2] in the
|
5501
|
+
# *Amazon RDS User Guide*.
|
5458
5502
|
#
|
5459
|
-
#
|
5503
|
+
# For RDS Custom, you must specify this parameter and set it to
|
5504
|
+
# `mounted`. The value won't be set by default. After replica
|
5505
|
+
# creation, you can manage the open mode manually.
|
5506
|
+
#
|
5507
|
+
#
|
5508
|
+
#
|
5509
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-replication.html
|
5510
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
5460
5511
|
# @return [String]
|
5461
5512
|
#
|
5462
5513
|
# @!attribute [rw] max_allocated_storage
|
@@ -6031,17 +6082,17 @@ module Aws::RDS
|
|
6031
6082
|
# @return [String]
|
6032
6083
|
#
|
6033
6084
|
# @!attribute [rw] compute_redundancy
|
6034
|
-
# Specifies whether to create standby DB shard
|
6035
|
-
# group. Valid values are the following:
|
6085
|
+
# Specifies whether to create standby standby DB data access shard for
|
6086
|
+
# the DB shard group. Valid values are the following:
|
6036
6087
|
#
|
6037
|
-
# * 0 - Creates a DB shard group without a standby DB
|
6038
|
-
# This is the default value.
|
6088
|
+
# * 0 - Creates a DB shard group without a standby DB data access
|
6089
|
+
# shard. This is the default value.
|
6039
6090
|
#
|
6040
|
-
# * 1 - Creates a DB shard group with a standby DB
|
6041
|
-
# different Availability Zone (AZ).
|
6091
|
+
# * 1 - Creates a DB shard group with a standby DB data access shard
|
6092
|
+
# in a different Availability Zone (AZ).
|
6042
6093
|
#
|
6043
|
-
# * 2 - Creates a DB shard group with two standby DB
|
6044
|
-
# two different AZs.
|
6094
|
+
# * 2 - Creates a DB shard group with two standby DB data access shard
|
6095
|
+
# in two different AZs.
|
6045
6096
|
# @return [Integer]
|
6046
6097
|
#
|
6047
6098
|
# @!attribute [rw] max_acu
|
@@ -7220,6 +7271,12 @@ module Aws::RDS
|
|
7220
7271
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
7221
7272
|
# @return [Array<Types::Tag>]
|
7222
7273
|
#
|
7274
|
+
# @!attribute [rw] global_cluster_identifier
|
7275
|
+
# Contains a user-supplied global database cluster identifier. This
|
7276
|
+
# identifier is the unique key that identifies a global database
|
7277
|
+
# cluster.
|
7278
|
+
# @return [String]
|
7279
|
+
#
|
7223
7280
|
# @!attribute [rw] global_write_forwarding_status
|
7224
7281
|
# The status of write forwarding for a secondary cluster in an Aurora
|
7225
7282
|
# global database.
|
@@ -7512,6 +7569,7 @@ module Aws::RDS
|
|
7512
7569
|
:cross_account_clone,
|
7513
7570
|
:domain_memberships,
|
7514
7571
|
:tag_list,
|
7572
|
+
:global_cluster_identifier,
|
7515
7573
|
:global_write_forwarding_status,
|
7516
7574
|
:global_write_forwarding_requested,
|
7517
7575
|
:pending_modified_values,
|
@@ -9005,17 +9063,20 @@ module Aws::RDS
|
|
9005
9063
|
# @return [Array<String>]
|
9006
9064
|
#
|
9007
9065
|
# @!attribute [rw] replica_mode
|
9008
|
-
# The open mode of an Oracle read replica. The default is
|
9009
|
-
# `open-read-only`. For more information, see [Working with
|
9010
|
-
#
|
9066
|
+
# The open mode of a Db2 or an Oracle read replica. The default is
|
9067
|
+
# `open-read-only`. For more information, see [Working with read
|
9068
|
+
# replicas for Amazon RDS for Db2][1] and [Working with read replicas
|
9069
|
+
# for Amazon RDS for Oracle][2] in the *Amazon RDS User Guide*.
|
9011
9070
|
#
|
9012
|
-
# <note markdown="1"> This attribute is only supported in RDS for Oracle
|
9071
|
+
# <note markdown="1"> This attribute is only supported in RDS for Db2, RDS for Oracle, and
|
9072
|
+
# RDS Custom for Oracle.
|
9013
9073
|
#
|
9014
9074
|
# </note>
|
9015
9075
|
#
|
9016
9076
|
#
|
9017
9077
|
#
|
9018
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
9078
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-replication.html
|
9079
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
9019
9080
|
# @return [String]
|
9020
9081
|
#
|
9021
9082
|
# @!attribute [rw] license_model
|
@@ -11432,7 +11493,10 @@ module Aws::RDS
|
|
11432
11493
|
# @return [String]
|
11433
11494
|
#
|
11434
11495
|
# @!attribute [rw] subnets
|
11435
|
-
# Contains a list of `Subnet` elements.
|
11496
|
+
# Contains a list of `Subnet` elements. The list of subnets shown here
|
11497
|
+
# might not reflect the current state of your VPC. For the most
|
11498
|
+
# up-to-date information, we recommend checking your VPC configuration
|
11499
|
+
# directly.
|
11436
11500
|
# @return [Array<Types::Subnet>]
|
11437
11501
|
#
|
11438
11502
|
# @!attribute [rw] db_subnet_group_arn
|
@@ -19466,26 +19530,50 @@ module Aws::RDS
|
|
19466
19530
|
# @return [Boolean]
|
19467
19531
|
#
|
19468
19532
|
# @!attribute [rw] replica_mode
|
19469
|
-
#
|
19470
|
-
# mounted or read-only.
|
19533
|
+
# The open mode of a replica database.
|
19471
19534
|
#
|
19472
|
-
# <note markdown="1">
|
19535
|
+
# <note markdown="1"> This parameter is only supported for Db2 DB instances and Oracle DB
|
19536
|
+
# instances.
|
19473
19537
|
#
|
19474
19538
|
# </note>
|
19475
19539
|
#
|
19476
|
-
#
|
19477
|
-
# main use case for mounted replicas is cross-Region disaster
|
19478
|
-
# recovery. The primary database doesn't use Active Data Guard to
|
19479
|
-
# transmit information to the mounted replica. Because it doesn't
|
19480
|
-
# accept user connections, a mounted replica can't serve a read-only
|
19481
|
-
# workload. For more information, see [Working with Oracle Read
|
19482
|
-
# Replicas for Amazon RDS][1] in the *Amazon RDS User Guide*.
|
19540
|
+
# Db2
|
19483
19541
|
#
|
19484
|
-
#
|
19542
|
+
# : Standby DB replicas are included in Db2 Advanced Edition (AE) and
|
19543
|
+
# Db2 Standard Edition (SE). The main use case for standby replicas
|
19544
|
+
# is cross-Region disaster recovery. Because it doesn't accept user
|
19545
|
+
# connections, a standby replica can't serve a read-only workload.
|
19546
|
+
#
|
19547
|
+
# You can create a combination of standby and read-only DB replicas
|
19548
|
+
# for the same primary DB instance. For more information, see
|
19549
|
+
# [Working with read replicas for Amazon RDS for Db2][1] in the
|
19550
|
+
# *Amazon RDS User Guide*.
|
19551
|
+
#
|
19552
|
+
# To create standby DB replicas for RDS for Db2, set this parameter
|
19553
|
+
# to `mounted`.
|
19554
|
+
#
|
19555
|
+
# Oracle
|
19556
|
+
#
|
19557
|
+
# : Mounted DB replicas are included in Oracle Database Enterprise
|
19558
|
+
# Edition. The main use case for mounted replicas is cross-Region
|
19559
|
+
# disaster recovery. The primary database doesn't use Active Data
|
19560
|
+
# Guard to transmit information to the mounted replica. Because it
|
19561
|
+
# doesn't accept user connections, a mounted replica can't serve a
|
19562
|
+
# read-only workload.
|
19563
|
+
#
|
19564
|
+
# You can create a combination of mounted and read-only DB replicas
|
19565
|
+
# for the same primary DB instance. For more information, see
|
19566
|
+
# [Working with read replicas for Amazon RDS for Oracle][2] in the
|
19567
|
+
# *Amazon RDS User Guide*.
|
19568
|
+
#
|
19569
|
+
# For RDS Custom, you must specify this parameter and set it to
|
19570
|
+
# `mounted`. The value won't be set by default. After replica
|
19571
|
+
# creation, you can manage the open mode manually.
|
19485
19572
|
#
|
19486
19573
|
#
|
19487
19574
|
#
|
19488
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
19575
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-replication.html
|
19576
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
19489
19577
|
# @return [String]
|
19490
19578
|
#
|
19491
19579
|
# @!attribute [rw] enable_customer_owned_ip
|
data/lib/aws-sdk-rds.rb
CHANGED
@@ -80,7 +80,7 @@ module Aws::RDS
|
|
80
80
|
autoload :ReservedDBInstancesOffering, 'aws-sdk-rds/reserved_db_instances_offering'
|
81
81
|
autoload :ResourcePendingMaintenanceActionList, 'aws-sdk-rds/resource_pending_maintenance_action_list'
|
82
82
|
|
83
|
-
GEM_VERSION = '1.
|
83
|
+
GEM_VERSION = '1.280.0'
|
84
84
|
|
85
85
|
end
|
86
86
|
|
data/sig/db_cluster.rbs
CHANGED
@@ -183,6 +183,9 @@ module Aws
|
|
183
183
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#tag_list-instance_method
|
184
184
|
def tag_list: () -> ::Array[Types::Tag]
|
185
185
|
|
186
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#global_cluster_identifier-instance_method
|
187
|
+
def global_cluster_identifier: () -> ::String
|
188
|
+
|
186
189
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#global_write_forwarding_status-instance_method
|
187
190
|
def global_write_forwarding_status: () -> ("enabled" | "disabled" | "enabling" | "disabling" | "unknown")
|
188
191
|
|
data/sig/types.rbs
CHANGED
@@ -811,6 +811,7 @@ module Aws::RDS
|
|
811
811
|
attr_accessor cross_account_clone: bool
|
812
812
|
attr_accessor domain_memberships: ::Array[Types::DomainMembership]
|
813
813
|
attr_accessor tag_list: ::Array[Types::Tag]
|
814
|
+
attr_accessor global_cluster_identifier: ::String
|
814
815
|
attr_accessor global_write_forwarding_status: ("enabled" | "disabled" | "enabling" | "disabling" | "unknown")
|
815
816
|
attr_accessor global_write_forwarding_requested: bool
|
816
817
|
attr_accessor pending_modified_values: Types::ClusterPendingModifiedValues
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.280.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.225.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.225.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|
@@ -136,7 +136,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
136
136
|
requirements:
|
137
137
|
- - ">="
|
138
138
|
- !ruby/object:Gem::Version
|
139
|
-
version: '2.
|
139
|
+
version: '2.7'
|
140
140
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
141
141
|
requirements:
|
142
142
|
- - ">="
|