aws-sdk-rds 1.277.0 → 1.285.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 +40 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +200 -68
- data/lib/aws-sdk-rds/client_api.rb +7 -0
- data/lib/aws-sdk-rds/db_cluster.rb +8 -0
- data/lib/aws-sdk-rds/db_instance.rb +113 -43
- data/lib/aws-sdk-rds/db_snapshot.rb +29 -4
- data/lib/aws-sdk-rds/db_subnet_group.rb +4 -1
- data/lib/aws-sdk-rds/errors.rb +0 -1
- data/lib/aws-sdk-rds/resource.rb +4 -6
- data/lib/aws-sdk-rds/types.rb +203 -74
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +4 -0
- data/sig/db_cluster.rbs +3 -0
- data/sig/db_instance.rbs +1 -0
- data/sig/db_snapshot.rbs +5 -0
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +5 -0
- metadata +4 -4
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
|
@@ -1712,6 +1725,24 @@ module Aws::RDS
|
|
1712
1725
|
# can be copied only with cross-account snapshot copy calls.
|
1713
1726
|
# @return [Boolean]
|
1714
1727
|
#
|
1728
|
+
# @!attribute [rw] snapshot_availability_zone
|
1729
|
+
# Specifies the name of the Availability Zone where RDS stores the DB
|
1730
|
+
# snapshot. This value is valid only for snapshots that RDS stores on
|
1731
|
+
# a Dedicated Local Zone.
|
1732
|
+
# @return [String]
|
1733
|
+
#
|
1734
|
+
# @!attribute [rw] snapshot_target
|
1735
|
+
# Configures the location where RDS will store copied snapshots.
|
1736
|
+
#
|
1737
|
+
# Valid Values:
|
1738
|
+
#
|
1739
|
+
# * `local` (Dedicated Local Zone)
|
1740
|
+
#
|
1741
|
+
# * `outposts` (Amazon Web Services Outposts)
|
1742
|
+
#
|
1743
|
+
# * `region` (Amazon Web Services Region)
|
1744
|
+
# @return [String]
|
1745
|
+
#
|
1715
1746
|
# @!attribute [rw] source_region
|
1716
1747
|
# The source region of the snapshot. This is only needed when the
|
1717
1748
|
# shapshot is encrypted and in a different region.
|
@@ -1729,6 +1760,8 @@ module Aws::RDS
|
|
1729
1760
|
:option_group_name,
|
1730
1761
|
:target_custom_availability_zone,
|
1731
1762
|
:copy_option_group,
|
1763
|
+
:snapshot_availability_zone,
|
1764
|
+
:snapshot_target,
|
1732
1765
|
:source_region)
|
1733
1766
|
SENSITIVE = []
|
1734
1767
|
include Aws::Structure
|
@@ -3979,12 +4012,8 @@ module Aws::RDS
|
|
3979
4012
|
# can't set the `AvailabilityZone` parameter if the DB instance is a
|
3980
4013
|
# Multi-AZ deployment.
|
3981
4014
|
#
|
3982
|
-
# This setting doesn't apply to the
|
3983
|
-
#
|
3984
|
-
# * Amazon Aurora (DB instance Availability Zones (AZs) are managed by
|
3985
|
-
# the DB cluster.)
|
3986
|
-
#
|
3987
|
-
# * RDS Custom
|
4015
|
+
# This setting doesn't apply to Amazon Aurora because the DB instance
|
4016
|
+
# Availability Zones (AZs) are managed by the DB cluster.
|
3988
4017
|
# @return [Boolean]
|
3989
4018
|
#
|
3990
4019
|
# @!attribute [rw] engine_version
|
@@ -4635,6 +4664,8 @@ module Aws::RDS
|
|
4635
4664
|
#
|
4636
4665
|
# Valid Values:
|
4637
4666
|
#
|
4667
|
+
# * `local` (Dedicated Local Zone)
|
4668
|
+
#
|
4638
4669
|
# * `outposts` (Amazon Web Services Outposts)
|
4639
4670
|
#
|
4640
4671
|
# * `region` (Amazon Web Services Region)
|
@@ -4881,8 +4912,13 @@ module Aws::RDS
|
|
4881
4912
|
# @!attribute [rw] source_db_instance_identifier
|
4882
4913
|
# The identifier of the DB instance that will act as the source for
|
4883
4914
|
# the read replica. Each DB instance can have up to 15 read replicas,
|
4884
|
-
#
|
4885
|
-
#
|
4915
|
+
# except for the following engines:
|
4916
|
+
#
|
4917
|
+
# * Db2 - Can have up to three replicas.
|
4918
|
+
#
|
4919
|
+
# * Oracle - Can have up to five read replicas.
|
4920
|
+
#
|
4921
|
+
# * SQL Server - Can have up to five read replicas.
|
4886
4922
|
#
|
4887
4923
|
# Constraints:
|
4888
4924
|
#
|
@@ -5000,6 +5036,16 @@ module Aws::RDS
|
|
5000
5036
|
# The name of the DB parameter group to associate with this read
|
5001
5037
|
# replica DB instance.
|
5002
5038
|
#
|
5039
|
+
# For the Db2 DB engine, if your source DB instance uses the Bring
|
5040
|
+
# Your Own License model, then a custom parameter group must be
|
5041
|
+
# associated with the replica. For a same Amazon Web Services Region
|
5042
|
+
# replica, if you don't specify a custom parameter group, Amazon RDS
|
5043
|
+
# associates the custom parameter group associated with the source DB
|
5044
|
+
# instance. For a cross-Region replica, you must specify a custom
|
5045
|
+
# parameter group. This custom parameter group must include your IBM
|
5046
|
+
# Site ID and IBM Customer ID. For more information, see [ IBM IDs for
|
5047
|
+
# Bring Your Own License for Db2][1].
|
5048
|
+
#
|
5003
5049
|
# For Single-AZ or Multi-AZ DB instance read replica instances, if you
|
5004
5050
|
# don't specify a value for `DBParameterGroupName`, then Amazon RDS
|
5005
5051
|
# uses the `DBParameterGroup` of the source DB instance for a same
|
@@ -5012,9 +5058,9 @@ module Aws::RDS
|
|
5012
5058
|
#
|
5013
5059
|
# Specifying a parameter group for this operation is only supported
|
5014
5060
|
# 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.
|
5061
|
+
# DB cluster read replica instances, for Db2 DB instances, and for
|
5062
|
+
# Oracle DB instances. It isn't supported for MySQL DB instances for
|
5063
|
+
# same Region read replicas or for RDS Custom.
|
5018
5064
|
#
|
5019
5065
|
# Constraints:
|
5020
5066
|
#
|
@@ -5023,6 +5069,10 @@ module Aws::RDS
|
|
5023
5069
|
# * First character must be a letter.
|
5024
5070
|
#
|
5025
5071
|
# * Can't end with a hyphen or contain two consecutive hyphens.
|
5072
|
+
#
|
5073
|
+
#
|
5074
|
+
#
|
5075
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-licensing.html#db2-prereqs-ibm-info
|
5026
5076
|
# @return [String]
|
5027
5077
|
#
|
5028
5078
|
# @!attribute [rw] publicly_accessible
|
@@ -5432,31 +5482,50 @@ module Aws::RDS
|
|
5432
5482
|
# @return [Array<String>]
|
5433
5483
|
#
|
5434
5484
|
# @!attribute [rw] replica_mode
|
5435
|
-
# The open mode of the replica database
|
5485
|
+
# The open mode of the replica database.
|
5436
5486
|
#
|
5437
|
-
# <note markdown="1"> This parameter is only supported for
|
5487
|
+
# <note markdown="1"> This parameter is only supported for Db2 DB instances and Oracle DB
|
5488
|
+
# instances.
|
5438
5489
|
#
|
5439
5490
|
# </note>
|
5440
5491
|
#
|
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.
|
5492
|
+
# Db2
|
5447
5493
|
#
|
5448
|
-
#
|
5449
|
-
#
|
5450
|
-
#
|
5451
|
-
#
|
5494
|
+
# : Standby DB replicas are included in Db2 Advanced Edition (AE) and
|
5495
|
+
# Db2 Standard Edition (SE). The main use case for standby replicas
|
5496
|
+
# is cross-Region disaster recovery. Because it doesn't accept user
|
5497
|
+
# connections, a standby replica can't serve a read-only workload.
|
5498
|
+
#
|
5499
|
+
# You can create a combination of standby and read-only DB replicas
|
5500
|
+
# for the same primary DB instance. For more information, see
|
5501
|
+
# [Working with read replicas for Amazon RDS for Db2][1] in the
|
5502
|
+
# *Amazon RDS User Guide*.
|
5503
|
+
#
|
5504
|
+
# To create standby DB replicas for RDS for Db2, set this parameter
|
5505
|
+
# to `mounted`.
|
5452
5506
|
#
|
5453
|
-
#
|
5454
|
-
# `mounted`. The value won't be set by default. After replica
|
5455
|
-
# creation, you can manage the open mode manually.
|
5507
|
+
# Oracle
|
5456
5508
|
#
|
5509
|
+
# : Mounted DB replicas are included in Oracle Database Enterprise
|
5510
|
+
# Edition. The main use case for mounted replicas is cross-Region
|
5511
|
+
# disaster recovery. The primary database doesn't use Active Data
|
5512
|
+
# Guard to transmit information to the mounted replica. Because it
|
5513
|
+
# doesn't accept user connections, a mounted replica can't serve a
|
5514
|
+
# read-only workload.
|
5515
|
+
#
|
5516
|
+
# You can create a combination of mounted and read-only DB replicas
|
5517
|
+
# for the same primary DB instance. For more information, see
|
5518
|
+
# [Working with read replicas for Amazon RDS for Oracle][2] in the
|
5519
|
+
# *Amazon RDS User Guide*.
|
5520
|
+
#
|
5521
|
+
# For RDS Custom, you must specify this parameter and set it to
|
5522
|
+
# `mounted`. The value won't be set by default. After replica
|
5523
|
+
# creation, you can manage the open mode manually.
|
5457
5524
|
#
|
5458
5525
|
#
|
5459
|
-
#
|
5526
|
+
#
|
5527
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-replication.html
|
5528
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
5460
5529
|
# @return [String]
|
5461
5530
|
#
|
5462
5531
|
# @!attribute [rw] max_allocated_storage
|
@@ -5546,6 +5615,17 @@ module Aws::RDS
|
|
5546
5615
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
5547
5616
|
# @return [Boolean]
|
5548
5617
|
#
|
5618
|
+
# @!attribute [rw] backup_target
|
5619
|
+
# The location where RDS stores automated backups and manual
|
5620
|
+
# snapshots.
|
5621
|
+
#
|
5622
|
+
# Valid Values:
|
5623
|
+
#
|
5624
|
+
# * `local` for Dedicated Local Zones
|
5625
|
+
#
|
5626
|
+
# * `region` for Amazon Web Services Region
|
5627
|
+
# @return [String]
|
5628
|
+
#
|
5549
5629
|
# @!attribute [rw] allocated_storage
|
5550
5630
|
# The amount of storage (in gibibytes) to allocate initially for the
|
5551
5631
|
# read replica. Follow the allocation rules specified in
|
@@ -5657,6 +5737,7 @@ module Aws::RDS
|
|
5657
5737
|
:network_type,
|
5658
5738
|
:storage_throughput,
|
5659
5739
|
:enable_customer_owned_ip,
|
5740
|
+
:backup_target,
|
5660
5741
|
:allocated_storage,
|
5661
5742
|
:source_db_cluster_identifier,
|
5662
5743
|
:dedicated_log_volume,
|
@@ -6031,17 +6112,17 @@ module Aws::RDS
|
|
6031
6112
|
# @return [String]
|
6032
6113
|
#
|
6033
6114
|
# @!attribute [rw] compute_redundancy
|
6034
|
-
# Specifies whether to create standby DB shard
|
6035
|
-
# group. Valid values are the following:
|
6115
|
+
# Specifies whether to create standby standby DB data access shard for
|
6116
|
+
# the DB shard group. Valid values are the following:
|
6036
6117
|
#
|
6037
|
-
# * 0 - Creates a DB shard group without a standby DB
|
6038
|
-
# This is the default value.
|
6118
|
+
# * 0 - Creates a DB shard group without a standby DB data access
|
6119
|
+
# shard. This is the default value.
|
6039
6120
|
#
|
6040
|
-
# * 1 - Creates a DB shard group with a standby DB
|
6041
|
-
# different Availability Zone (AZ).
|
6121
|
+
# * 1 - Creates a DB shard group with a standby DB data access shard
|
6122
|
+
# in a different Availability Zone (AZ).
|
6042
6123
|
#
|
6043
|
-
# * 2 - Creates a DB shard group with two standby DB
|
6044
|
-
# two different AZs.
|
6124
|
+
# * 2 - Creates a DB shard group with two standby DB data access shard
|
6125
|
+
# in two different AZs.
|
6045
6126
|
# @return [Integer]
|
6046
6127
|
#
|
6047
6128
|
# @!attribute [rw] max_acu
|
@@ -7220,6 +7301,12 @@ module Aws::RDS
|
|
7220
7301
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
7221
7302
|
# @return [Array<Types::Tag>]
|
7222
7303
|
#
|
7304
|
+
# @!attribute [rw] global_cluster_identifier
|
7305
|
+
# Contains a user-supplied global database cluster identifier. This
|
7306
|
+
# identifier is the unique key that identifies a global database
|
7307
|
+
# cluster.
|
7308
|
+
# @return [String]
|
7309
|
+
#
|
7223
7310
|
# @!attribute [rw] global_write_forwarding_status
|
7224
7311
|
# The status of write forwarding for a secondary cluster in an Aurora
|
7225
7312
|
# global database.
|
@@ -7512,6 +7599,7 @@ module Aws::RDS
|
|
7512
7599
|
:cross_account_clone,
|
7513
7600
|
:domain_memberships,
|
7514
7601
|
:tag_list,
|
7602
|
+
:global_cluster_identifier,
|
7515
7603
|
:global_write_forwarding_status,
|
7516
7604
|
:global_write_forwarding_requested,
|
7517
7605
|
:pending_modified_values,
|
@@ -9005,17 +9093,20 @@ module Aws::RDS
|
|
9005
9093
|
# @return [Array<String>]
|
9006
9094
|
#
|
9007
9095
|
# @!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
|
-
#
|
9096
|
+
# The open mode of a Db2 or an Oracle read replica. The default is
|
9097
|
+
# `open-read-only`. For more information, see [Working with read
|
9098
|
+
# replicas for Amazon RDS for Db2][1] and [Working with read replicas
|
9099
|
+
# for Amazon RDS for Oracle][2] in the *Amazon RDS User Guide*.
|
9011
9100
|
#
|
9012
|
-
# <note markdown="1"> This attribute is only supported in RDS for Oracle
|
9101
|
+
# <note markdown="1"> This attribute is only supported in RDS for Db2, RDS for Oracle, and
|
9102
|
+
# RDS Custom for Oracle.
|
9013
9103
|
#
|
9014
9104
|
# </note>
|
9015
9105
|
#
|
9016
9106
|
#
|
9017
9107
|
#
|
9018
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
9108
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-replication.html
|
9109
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
9019
9110
|
# @return [String]
|
9020
9111
|
#
|
9021
9112
|
# @!attribute [rw] license_model
|
@@ -9377,8 +9468,8 @@ module Aws::RDS
|
|
9377
9468
|
#
|
9378
9469
|
# @!attribute [rw] backup_target
|
9379
9470
|
# The location where automated backups and manual snapshots are
|
9380
|
-
# stored: Amazon Web Services Outposts or the
|
9381
|
-
# Region.
|
9471
|
+
# stored: Dedicated Local Zones, Amazon Web Services Outposts or the
|
9472
|
+
# Amazon Web Services Region.
|
9382
9473
|
# @return [String]
|
9383
9474
|
#
|
9384
9475
|
# @!attribute [rw] network_type
|
@@ -9708,8 +9799,9 @@ module Aws::RDS
|
|
9708
9799
|
# @return [Array<Types::DBInstanceAutomatedBackupsReplication>]
|
9709
9800
|
#
|
9710
9801
|
# @!attribute [rw] backup_target
|
9711
|
-
# The location where automated backups are stored:
|
9712
|
-
# Outposts or the Amazon Web Services
|
9802
|
+
# The location where automated backups are stored: Dedicated Local
|
9803
|
+
# Zones, Amazon Web Services Outposts or the Amazon Web Services
|
9804
|
+
# Region.
|
9713
9805
|
# @return [String]
|
9714
9806
|
#
|
9715
9807
|
# @!attribute [rw] storage_throughput
|
@@ -11137,8 +11229,8 @@ module Aws::RDS
|
|
11137
11229
|
# @return [Time]
|
11138
11230
|
#
|
11139
11231
|
# @!attribute [rw] snapshot_target
|
11140
|
-
# Specifies where manual snapshots are stored:
|
11141
|
-
# Outposts or the Amazon Web Services Region.
|
11232
|
+
# Specifies where manual snapshots are stored: Dedicated Local Zones,
|
11233
|
+
# Amazon Web Services Outposts or the Amazon Web Services Region.
|
11142
11234
|
# @return [String]
|
11143
11235
|
#
|
11144
11236
|
# @!attribute [rw] storage_throughput
|
@@ -11162,6 +11254,12 @@ module Aws::RDS
|
|
11162
11254
|
# (FALSE).
|
11163
11255
|
# @return [Boolean]
|
11164
11256
|
#
|
11257
|
+
# @!attribute [rw] snapshot_availability_zone
|
11258
|
+
# Specifies the name of the Availability Zone where RDS stores the DB
|
11259
|
+
# snapshot. This value is valid only for snapshots that RDS stores on
|
11260
|
+
# a Dedicated Local Zone.
|
11261
|
+
# @return [String]
|
11262
|
+
#
|
11165
11263
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBSnapshot AWS API Documentation
|
11166
11264
|
#
|
11167
11265
|
class DBSnapshot < Struct.new(
|
@@ -11200,7 +11298,8 @@ module Aws::RDS
|
|
11200
11298
|
:storage_throughput,
|
11201
11299
|
:db_system_id,
|
11202
11300
|
:dedicated_log_volume,
|
11203
|
-
:multi_tenant
|
11301
|
+
:multi_tenant,
|
11302
|
+
:snapshot_availability_zone)
|
11204
11303
|
SENSITIVE = []
|
11205
11304
|
include Aws::Structure
|
11206
11305
|
end
|
@@ -11432,7 +11531,10 @@ module Aws::RDS
|
|
11432
11531
|
# @return [String]
|
11433
11532
|
#
|
11434
11533
|
# @!attribute [rw] subnets
|
11435
|
-
# Contains a list of `Subnet` elements.
|
11534
|
+
# Contains a list of `Subnet` elements. The list of subnets shown here
|
11535
|
+
# might not reflect the current state of your VPC. For the most
|
11536
|
+
# up-to-date information, we recommend checking your VPC configuration
|
11537
|
+
# directly.
|
11436
11538
|
# @return [Array<Types::Subnet>]
|
11437
11539
|
#
|
11438
11540
|
# @!attribute [rw] db_subnet_group_arn
|
@@ -19466,26 +19568,50 @@ module Aws::RDS
|
|
19466
19568
|
# @return [Boolean]
|
19467
19569
|
#
|
19468
19570
|
# @!attribute [rw] replica_mode
|
19469
|
-
#
|
19470
|
-
# mounted or read-only.
|
19571
|
+
# The open mode of a replica database.
|
19471
19572
|
#
|
19472
|
-
# <note markdown="1">
|
19573
|
+
# <note markdown="1"> This parameter is only supported for Db2 DB instances and Oracle DB
|
19574
|
+
# instances.
|
19473
19575
|
#
|
19474
19576
|
# </note>
|
19475
19577
|
#
|
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*.
|
19578
|
+
# Db2
|
19483
19579
|
#
|
19484
|
-
#
|
19580
|
+
# : Standby DB replicas are included in Db2 Advanced Edition (AE) and
|
19581
|
+
# Db2 Standard Edition (SE). The main use case for standby replicas
|
19582
|
+
# is cross-Region disaster recovery. Because it doesn't accept user
|
19583
|
+
# connections, a standby replica can't serve a read-only workload.
|
19584
|
+
#
|
19585
|
+
# You can create a combination of standby and read-only DB replicas
|
19586
|
+
# for the same primary DB instance. For more information, see
|
19587
|
+
# [Working with read replicas for Amazon RDS for Db2][1] in the
|
19588
|
+
# *Amazon RDS User Guide*.
|
19589
|
+
#
|
19590
|
+
# To create standby DB replicas for RDS for Db2, set this parameter
|
19591
|
+
# to `mounted`.
|
19592
|
+
#
|
19593
|
+
# Oracle
|
19485
19594
|
#
|
19595
|
+
# : Mounted DB replicas are included in Oracle Database Enterprise
|
19596
|
+
# Edition. The main use case for mounted replicas is cross-Region
|
19597
|
+
# disaster recovery. The primary database doesn't use Active Data
|
19598
|
+
# Guard to transmit information to the mounted replica. Because it
|
19599
|
+
# doesn't accept user connections, a mounted replica can't serve a
|
19600
|
+
# read-only workload.
|
19601
|
+
#
|
19602
|
+
# You can create a combination of mounted and read-only DB replicas
|
19603
|
+
# for the same primary DB instance. For more information, see
|
19604
|
+
# [Working with read replicas for Amazon RDS for Oracle][2] in the
|
19605
|
+
# *Amazon RDS User Guide*.
|
19606
|
+
#
|
19607
|
+
# For RDS Custom, you must specify this parameter and set it to
|
19608
|
+
# `mounted`. The value won't be set by default. After replica
|
19609
|
+
# creation, you can manage the open mode manually.
|
19486
19610
|
#
|
19487
19611
|
#
|
19488
|
-
#
|
19612
|
+
#
|
19613
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-replication.html
|
19614
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
19489
19615
|
# @return [String]
|
19490
19616
|
#
|
19491
19617
|
# @!attribute [rw] enable_customer_owned_ip
|
@@ -25363,8 +25489,9 @@ module Aws::RDS
|
|
25363
25489
|
# Specifies where automated backups and manual snapshots are stored
|
25364
25490
|
# for the restored DB instance.
|
25365
25491
|
#
|
25366
|
-
# Possible values are `
|
25367
|
-
#
|
25492
|
+
# Possible values are `local` (Dedicated Local Zone), `outposts`
|
25493
|
+
# (Amazon Web Services Outposts), and `region` (Amazon Web Services
|
25494
|
+
# Region). The default is `region`.
|
25368
25495
|
#
|
25369
25496
|
# For more information, see [Working with Amazon RDS on Amazon Web
|
25370
25497
|
# Services Outposts][1] in the *Amazon RDS User Guide*.
|
@@ -26864,6 +26991,8 @@ module Aws::RDS
|
|
26864
26991
|
#
|
26865
26992
|
# Valid Values:
|
26866
26993
|
#
|
26994
|
+
# * `local` (Dedicated Local Zone)
|
26995
|
+
#
|
26867
26996
|
# * `outposts` (Amazon Web Services Outposts)
|
26868
26997
|
#
|
26869
26998
|
# * `region` (Amazon Web Services Region)
|
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.285.0'
|
84
84
|
|
85
85
|
end
|
86
86
|
|
data/sig/client.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
@@ -262,6 +263,8 @@ module Aws
|
|
262
263
|
?option_group_name: ::String,
|
263
264
|
?target_custom_availability_zone: ::String,
|
264
265
|
?copy_option_group: bool,
|
266
|
+
?snapshot_availability_zone: ::String,
|
267
|
+
?snapshot_target: ::String,
|
265
268
|
?source_region: ::String
|
266
269
|
) -> _CopyDBSnapshotResponseSuccess
|
267
270
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CopyDBSnapshotResponseSuccess
|
@@ -659,6 +662,7 @@ module Aws
|
|
659
662
|
?network_type: ::String,
|
660
663
|
?storage_throughput: ::Integer,
|
661
664
|
?enable_customer_owned_ip: bool,
|
665
|
+
?backup_target: ::String,
|
662
666
|
?allocated_storage: ::Integer,
|
663
667
|
?source_db_cluster_identifier: ::String,
|
664
668
|
?dedicated_log_volume: bool,
|
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/db_instance.rbs
CHANGED
@@ -419,6 +419,7 @@ module Aws
|
|
419
419
|
?network_type: ::String,
|
420
420
|
?storage_throughput: ::Integer,
|
421
421
|
?enable_customer_owned_ip: bool,
|
422
|
+
?backup_target: ::String,
|
422
423
|
?allocated_storage: ::Integer,
|
423
424
|
?source_db_cluster_identifier: ::String,
|
424
425
|
?dedicated_log_volume: bool,
|
data/sig/db_snapshot.rbs
CHANGED
@@ -124,6 +124,9 @@ module Aws
|
|
124
124
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBSnapshot.html#multi_tenant-instance_method
|
125
125
|
def multi_tenant: () -> bool
|
126
126
|
|
127
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBSnapshot.html#snapshot_availability_zone-instance_method
|
128
|
+
def snapshot_availability_zone: () -> ::String
|
129
|
+
|
127
130
|
def client: () -> Client
|
128
131
|
|
129
132
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBSnapshot.html#load-instance_method
|
@@ -163,6 +166,8 @@ module Aws
|
|
163
166
|
?option_group_name: ::String,
|
164
167
|
?target_custom_availability_zone: ::String,
|
165
168
|
?copy_option_group: bool,
|
169
|
+
?snapshot_availability_zone: ::String,
|
170
|
+
?snapshot_target: ::String,
|
166
171
|
?source_region: ::String
|
167
172
|
) -> DBSnapshot
|
168
173
|
| (?Hash[Symbol, untyped]) -> DBSnapshot
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
data/sig/types.rbs
CHANGED
@@ -272,6 +272,8 @@ module Aws::RDS
|
|
272
272
|
attr_accessor option_group_name: ::String
|
273
273
|
attr_accessor target_custom_availability_zone: ::String
|
274
274
|
attr_accessor copy_option_group: bool
|
275
|
+
attr_accessor snapshot_availability_zone: ::String
|
276
|
+
attr_accessor snapshot_target: ::String
|
275
277
|
attr_accessor source_region: ::String
|
276
278
|
SENSITIVE: []
|
277
279
|
end
|
@@ -544,6 +546,7 @@ module Aws::RDS
|
|
544
546
|
attr_accessor network_type: ::String
|
545
547
|
attr_accessor storage_throughput: ::Integer
|
546
548
|
attr_accessor enable_customer_owned_ip: bool
|
549
|
+
attr_accessor backup_target: ::String
|
547
550
|
attr_accessor allocated_storage: ::Integer
|
548
551
|
attr_accessor source_db_cluster_identifier: ::String
|
549
552
|
attr_accessor dedicated_log_volume: bool
|
@@ -811,6 +814,7 @@ module Aws::RDS
|
|
811
814
|
attr_accessor cross_account_clone: bool
|
812
815
|
attr_accessor domain_memberships: ::Array[Types::DomainMembership]
|
813
816
|
attr_accessor tag_list: ::Array[Types::Tag]
|
817
|
+
attr_accessor global_cluster_identifier: ::String
|
814
818
|
attr_accessor global_write_forwarding_status: ("enabled" | "disabled" | "enabling" | "disabling" | "unknown")
|
815
819
|
attr_accessor global_write_forwarding_requested: bool
|
816
820
|
attr_accessor pending_modified_values: Types::ClusterPendingModifiedValues
|
@@ -1563,6 +1567,7 @@ module Aws::RDS
|
|
1563
1567
|
attr_accessor db_system_id: ::String
|
1564
1568
|
attr_accessor dedicated_log_volume: bool
|
1565
1569
|
attr_accessor multi_tenant: bool
|
1570
|
+
attr_accessor snapshot_availability_zone: ::String
|
1566
1571
|
SENSITIVE: []
|
1567
1572
|
end
|
1568
1573
|
|
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.285.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.228.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.228.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
|
- - ">="
|