aws-sdk-rds 1.286.0 → 1.288.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +83 -47
- data/lib/aws-sdk-rds/client_api.rb +1 -0
- data/lib/aws-sdk-rds/db_cluster.rb +25 -2
- data/lib/aws-sdk-rds/db_instance.rb +11 -15
- data/lib/aws-sdk-rds/db_snapshot.rb +1 -1
- data/lib/aws-sdk-rds/resource.rb +14 -3
- data/lib/aws-sdk-rds/types.rb +96 -58
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/db_cluster.rbs +3 -0
- data/sig/types.rbs +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 83b9bdf120f254ec4034c921a414fa7c28533d221543266fab98dde5c8bbc5d8
|
4
|
+
data.tar.gz: 31ed2dcc19fcbc739db33082d6b37d2893c5f771dd01c7148a9d18b1f5525338
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1286f9edbb92f007ca9684ce3d372c74d4a4c58a99425b1d7d09a2412232d7485c1bb016b4cba58ce30d669cc1e1169cf7ec90a4d3493024507cd4d0a1be2346
|
7
|
+
data.tar.gz: 1b07248bc1d91f4e59903fa355b8bac294499d248280d100674e0bbc8aa2336d0fd1141bb292a8da7771cec5dbeed8f95a1d5fb5db9ce3f1429a6ea007858bd9
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.288.0 (2025-08-22)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Updates Amazon RDS documentation for Db2 read-only replicas.
|
8
|
+
|
9
|
+
1.287.0 (2025-08-05)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Adds a new Aurora Serverless v2 attribute to the DBCluster resource to expose the platform version. Also updates the attribute to be part of both the engine version and platform version descriptions.
|
13
|
+
|
4
14
|
1.286.0 (2025-08-04)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.288.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -2706,8 +2706,18 @@ module Aws::RDS
|
|
2706
2706
|
# A list of Availability Zones (AZs) where you specifically want to
|
2707
2707
|
# create DB instances in the DB cluster.
|
2708
2708
|
#
|
2709
|
-
# For
|
2710
|
-
#
|
2709
|
+
# For the first three DB instances that you create, RDS distributes each
|
2710
|
+
# DB instance to a different AZ that you specify. For additional DB
|
2711
|
+
# instances that you create, RDS randomly distributes them to the AZs
|
2712
|
+
# that you specified. For example, if you create a DB cluster with one
|
2713
|
+
# writer instance and three reader instances, RDS might distribute the
|
2714
|
+
# writer instance to AZ 1, the first reader instance to AZ 2, the second
|
2715
|
+
# reader instance to AZ 3, and the third reader instance to either AZ 1,
|
2716
|
+
# AZ 2, or AZ 3.
|
2717
|
+
#
|
2718
|
+
# For more information, see [Availability Zones][1] and [High
|
2719
|
+
# availability for Aurora DB instances][2] in the *Amazon Aurora User
|
2720
|
+
# Guide*.
|
2711
2721
|
#
|
2712
2722
|
# Valid for Cluster Type: Aurora DB clusters only
|
2713
2723
|
#
|
@@ -2720,6 +2730,7 @@ module Aws::RDS
|
|
2720
2730
|
#
|
2721
2731
|
#
|
2722
2732
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.RegionsAndAvailabilityZones.html#Concepts.RegionsAndAvailabilityZones.AvailabilityZones
|
2733
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.AuroraHighAvailability.html#Concepts.AuroraHighAvailability.Instances
|
2723
2734
|
#
|
2724
2735
|
# @option params [Integer] :backup_retention_period
|
2725
2736
|
# The number of days for which automated backups are retained.
|
@@ -3966,6 +3977,7 @@ module Aws::RDS
|
|
3966
3977
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
3967
3978
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
3968
3979
|
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
3980
|
+
# resp.db_cluster.serverless_v2_platform_version #=> String
|
3969
3981
|
# resp.db_cluster.network_type #=> String
|
3970
3982
|
# resp.db_cluster.db_system_id #=> String
|
3971
3983
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -5076,7 +5088,7 @@ module Aws::RDS
|
|
5076
5088
|
# The license model information for this DB instance.
|
5077
5089
|
#
|
5078
5090
|
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
5079
|
-
#
|
5091
|
+
# bring your own license (BYOL) model requires a custom parameter group
|
5080
5092
|
# and an Amazon Web Services License Manager self-managed license. The
|
5081
5093
|
# Db2 license through Amazon Web Services Marketplace model requires an
|
5082
5094
|
# Amazon Web Services Marketplace subscription. For more information,
|
@@ -6119,15 +6131,12 @@ module Aws::RDS
|
|
6119
6131
|
|
6120
6132
|
# Creates a new DB instance that acts as a read replica for an existing
|
6121
6133
|
# source DB instance or Multi-AZ DB cluster. You can create a read
|
6122
|
-
# replica for a DB instance running MariaDB, MySQL, Oracle,
|
6123
|
-
# or SQL Server. You can create a read replica for a
|
6124
|
-
# running MySQL or PostgreSQL. For more information,
|
6125
|
-
# read replicas][1] and [Migrating from a Multi-AZ DB
|
6126
|
-
# instance using a read replica][2] in the *Amazon RDS
|
6127
|
-
#
|
6128
|
-
# Amazon RDS for Db2 supports this operation for standby replicas. To
|
6129
|
-
# create a standby replica for a DB instance running Db2, you must set
|
6130
|
-
# `ReplicaMode` to `mounted`.
|
6134
|
+
# replica for a DB instance running Db2, MariaDB, MySQL, Oracle,
|
6135
|
+
# PostgreSQL, or SQL Server. You can create a read replica for a
|
6136
|
+
# Multi-AZ DB cluster running MySQL or PostgreSQL. For more information,
|
6137
|
+
# see [Working with read replicas][1] and [Migrating from a Multi-AZ DB
|
6138
|
+
# cluster to a DB instance using a read replica][2] in the *Amazon RDS
|
6139
|
+
# User Guide*.
|
6131
6140
|
#
|
6132
6141
|
# Amazon Aurora doesn't support this operation. To create a DB instance
|
6133
6142
|
# for an Aurora DB cluster, use the `CreateDBInstance` operation.
|
@@ -6679,11 +6688,9 @@ module Aws::RDS
|
|
6679
6688
|
# @option params [String] :replica_mode
|
6680
6689
|
# The open mode of the replica database.
|
6681
6690
|
#
|
6682
|
-
#
|
6691
|
+
# This parameter is only supported for Db2 DB instances and Oracle DB
|
6683
6692
|
# instances.
|
6684
6693
|
#
|
6685
|
-
# </note>
|
6686
|
-
#
|
6687
6694
|
# Db2
|
6688
6695
|
#
|
6689
6696
|
# : Standby DB replicas are included in Db2 Advanced Edition (AE) and
|
@@ -6693,8 +6700,8 @@ module Aws::RDS
|
|
6693
6700
|
#
|
6694
6701
|
# You can create a combination of standby and read-only DB replicas
|
6695
6702
|
# for the same primary DB instance. For more information, see [Working
|
6696
|
-
# with
|
6697
|
-
#
|
6703
|
+
# with replicas for Amazon RDS for Db2][1] in the *Amazon RDS User
|
6704
|
+
# Guide*.
|
6698
6705
|
#
|
6699
6706
|
# To create standby DB replicas for RDS for Db2, set this parameter to
|
6700
6707
|
# `mounted`.
|
@@ -7317,13 +7324,12 @@ module Aws::RDS
|
|
7317
7324
|
# lower than the connection timeout limit for the associated database.
|
7318
7325
|
#
|
7319
7326
|
# @option params [Boolean] :debug_logging
|
7320
|
-
# Specifies whether the proxy
|
7321
|
-
#
|
7322
|
-
#
|
7323
|
-
#
|
7324
|
-
#
|
7325
|
-
#
|
7326
|
-
# place to safeguard any sensitive information that appears in the logs.
|
7327
|
+
# Specifies whether the proxy logs detailed connection and query
|
7328
|
+
# information. When you enable `DebugLogging`, the proxy captures
|
7329
|
+
# connection details and connection pool behavior from your queries.
|
7330
|
+
# Debug logging increases CloudWatch costs and can impact proxy
|
7331
|
+
# performance. Enable this option only when you need to troubleshoot
|
7332
|
+
# connection or performance issues.
|
7327
7333
|
#
|
7328
7334
|
# @option params [Array<Types::Tag>] :tags
|
7329
7335
|
# An optional set of key-value pairs to associate arbitrary data of your
|
@@ -9461,6 +9467,7 @@ module Aws::RDS
|
|
9461
9467
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
9462
9468
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
9463
9469
|
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
9470
|
+
# resp.db_cluster.serverless_v2_platform_version #=> String
|
9464
9471
|
# resp.db_cluster.network_type #=> String
|
9465
9472
|
# resp.db_cluster.db_system_id #=> String
|
9466
9473
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -12915,6 +12922,7 @@ module Aws::RDS
|
|
12915
12922
|
# resp.db_clusters[0].serverless_v2_scaling_configuration.min_capacity #=> Float
|
12916
12923
|
# resp.db_clusters[0].serverless_v2_scaling_configuration.max_capacity #=> Float
|
12917
12924
|
# resp.db_clusters[0].serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
12925
|
+
# resp.db_clusters[0].serverless_v2_platform_version #=> String
|
12918
12926
|
# resp.db_clusters[0].network_type #=> String
|
12919
12927
|
# resp.db_clusters[0].db_system_id #=> String
|
12920
12928
|
# resp.db_clusters[0].master_user_secret.secret_arn #=> String
|
@@ -18352,6 +18360,7 @@ module Aws::RDS
|
|
18352
18360
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
18353
18361
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
18354
18362
|
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
18363
|
+
# resp.db_cluster.serverless_v2_platform_version #=> String
|
18355
18364
|
# resp.db_cluster.network_type #=> String
|
18356
18365
|
# resp.db_cluster.db_system_id #=> String
|
18357
18366
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -20079,6 +20088,7 @@ module Aws::RDS
|
|
20079
20088
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
20080
20089
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
20081
20090
|
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
20091
|
+
# resp.db_cluster.serverless_v2_platform_version #=> String
|
20082
20092
|
# resp.db_cluster.network_type #=> String
|
20083
20093
|
# resp.db_cluster.db_system_id #=> String
|
20084
20094
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -21363,11 +21373,9 @@ module Aws::RDS
|
|
21363
21373
|
# @option params [String] :replica_mode
|
21364
21374
|
# The open mode of a replica database.
|
21365
21375
|
#
|
21366
|
-
#
|
21376
|
+
# This parameter is only supported for Db2 DB instances and Oracle DB
|
21367
21377
|
# instances.
|
21368
21378
|
#
|
21369
|
-
# </note>
|
21370
|
-
#
|
21371
21379
|
# Db2
|
21372
21380
|
#
|
21373
21381
|
# : Standby DB replicas are included in Db2 Advanced Edition (AE) and
|
@@ -21377,8 +21385,8 @@ module Aws::RDS
|
|
21377
21385
|
#
|
21378
21386
|
# You can create a combination of standby and read-only DB replicas
|
21379
21387
|
# for the same primary DB instance. For more information, see [Working
|
21380
|
-
# with
|
21381
|
-
#
|
21388
|
+
# with replicas for Amazon RDS for Db2][1] in the *Amazon RDS User
|
21389
|
+
# Guide*.
|
21382
21390
|
#
|
21383
21391
|
# To create standby DB replicas for RDS for Db2, set this parameter to
|
21384
21392
|
# `mounted`.
|
@@ -22065,13 +22073,12 @@ module Aws::RDS
|
|
22065
22073
|
# lower than the connection timeout limit for the associated database.
|
22066
22074
|
#
|
22067
22075
|
# @option params [Boolean] :debug_logging
|
22068
|
-
#
|
22069
|
-
#
|
22070
|
-
#
|
22071
|
-
#
|
22072
|
-
#
|
22073
|
-
#
|
22074
|
-
# safeguard any sensitive information that appears in the logs.
|
22076
|
+
# Specifies whether the proxy logs detailed connection and query
|
22077
|
+
# information. When you enable `DebugLogging`, the proxy captures
|
22078
|
+
# connection details and connection pool behavior from your queries.
|
22079
|
+
# Debug logging increases CloudWatch costs and can impact proxy
|
22080
|
+
# performance. Enable this option only when you need to troubleshoot
|
22081
|
+
# connection or performance issues.
|
22075
22082
|
#
|
22076
22083
|
# @option params [String] :role_arn
|
22077
22084
|
# The Amazon Resource Name (ARN) of the IAM role that the proxy uses to
|
@@ -22453,8 +22460,9 @@ module Aws::RDS
|
|
22453
22460
|
# Updates a manual DB snapshot with a new engine version. The snapshot
|
22454
22461
|
# can be encrypted or unencrypted, but not shared or public.
|
22455
22462
|
#
|
22456
|
-
# Amazon RDS supports upgrading DB snapshots for
|
22457
|
-
# Oracle. This operation doesn't apply to RDS Custom or
|
22463
|
+
# Amazon RDS supports upgrading DB snapshots for MariaDB, MySQL,
|
22464
|
+
# PostgreSQL, and Oracle. This operation doesn't apply to RDS Custom or
|
22465
|
+
# RDS for Db2.
|
22458
22466
|
#
|
22459
22467
|
# @option params [required, String] :db_snapshot_identifier
|
22460
22468
|
# The identifier of the DB snapshot to modify.
|
@@ -22465,14 +22473,33 @@ module Aws::RDS
|
|
22465
22473
|
# The following are the database engines and engine versions that are
|
22466
22474
|
# available when you upgrade a DB snapshot.
|
22467
22475
|
#
|
22476
|
+
# **MariaDB**
|
22477
|
+
#
|
22478
|
+
# For the list of engine versions that are available for upgrading a DB
|
22479
|
+
# snapshot, see [ Upgrading a MariaDB DB snapshot engine version][1] in
|
22480
|
+
# the *Amazon RDS User Guide.*
|
22481
|
+
#
|
22468
22482
|
# **MySQL**
|
22469
22483
|
#
|
22470
22484
|
# For the list of engine versions that are available for upgrading a DB
|
22471
|
-
# snapshot, see [ Upgrading a MySQL DB snapshot engine version][
|
22485
|
+
# snapshot, see [ Upgrading a MySQL DB snapshot engine version][2] in
|
22472
22486
|
# the *Amazon RDS User Guide.*
|
22473
22487
|
#
|
22474
22488
|
# **Oracle**
|
22475
22489
|
#
|
22490
|
+
# * `21.0.0.0.ru-2025-04.rur-2025-04.r1` (supported for
|
22491
|
+
# 21.0.0.0.ru-2022-01.rur-2022-01.r1,
|
22492
|
+
# 21.0.0.0.ru-2022-04.rur-2022-04.r1,
|
22493
|
+
# 21.0.0.0.ru-2022-07.rur-2022-07.r1,
|
22494
|
+
# 21.0.0.0.ru-2022-10.rur-2022-10.r1,
|
22495
|
+
# 21.0.0.0.ru-2023-01.rur-2023-01.r1 and
|
22496
|
+
# 21.0.0.0.ru-2023-01.rur-2023-01.r2 DB snapshots)
|
22497
|
+
#
|
22498
|
+
# * `19.0.0.0.ru-2025-04.rur-2025-04.r1` (supported for
|
22499
|
+
# 19.0.0.0.ru-2019-07.rur-2019-07.r1,
|
22500
|
+
# 19.0.0.0.ru-2019-10.rur-2019-10.r1 and
|
22501
|
+
# 0.0.0.ru-2020-01.rur-2020-01.r1 DB snapshots)
|
22502
|
+
#
|
22476
22503
|
# * `19.0.0.0.ru-2022-01.rur-2022-01.r1` (supported for 12.2.0.1 DB
|
22477
22504
|
# snapshots)
|
22478
22505
|
#
|
@@ -22488,13 +22515,14 @@ module Aws::RDS
|
|
22488
22515
|
# **PostgreSQL**
|
22489
22516
|
#
|
22490
22517
|
# For the list of engine versions that are available for upgrading a DB
|
22491
|
-
# snapshot, see [ Upgrading a PostgreSQL DB snapshot engine version][
|
22518
|
+
# snapshot, see [ Upgrading a PostgreSQL DB snapshot engine version][3]
|
22492
22519
|
# in the *Amazon RDS User Guide.*
|
22493
22520
|
#
|
22494
22521
|
#
|
22495
22522
|
#
|
22496
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
22497
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
22523
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/mariadb-upgrade-snapshot.html
|
22524
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/mysql-upgrade-snapshot.html
|
22525
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBSnapshot.PostgreSQL.html
|
22498
22526
|
#
|
22499
22527
|
# @option params [String] :option_group_name
|
22500
22528
|
# The option group to identify with the upgraded DB snapshot.
|
@@ -23985,6 +24013,7 @@ module Aws::RDS
|
|
23985
24013
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
23986
24014
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
23987
24015
|
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
24016
|
+
# resp.db_cluster.serverless_v2_platform_version #=> String
|
23988
24017
|
# resp.db_cluster.network_type #=> String
|
23989
24018
|
# resp.db_cluster.db_system_id #=> String
|
23990
24019
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -24289,6 +24318,7 @@ module Aws::RDS
|
|
24289
24318
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
24290
24319
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
24291
24320
|
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
24321
|
+
# resp.db_cluster.serverless_v2_platform_version #=> String
|
24292
24322
|
# resp.db_cluster.network_type #=> String
|
24293
24323
|
# resp.db_cluster.db_system_id #=> String
|
24294
24324
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -25892,6 +25922,7 @@ module Aws::RDS
|
|
25892
25922
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
25893
25923
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
25894
25924
|
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
25925
|
+
# resp.db_cluster.serverless_v2_platform_version #=> String
|
25895
25926
|
# resp.db_cluster.network_type #=> String
|
25896
25927
|
# resp.db_cluster.db_system_id #=> String
|
25897
25928
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -26717,6 +26748,7 @@ module Aws::RDS
|
|
26717
26748
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
26718
26749
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
26719
26750
|
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
26751
|
+
# resp.db_cluster.serverless_v2_platform_version #=> String
|
26720
26752
|
# resp.db_cluster.network_type #=> String
|
26721
26753
|
# resp.db_cluster.db_system_id #=> String
|
26722
26754
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -27525,6 +27557,7 @@ module Aws::RDS
|
|
27525
27557
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
27526
27558
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
27527
27559
|
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
27560
|
+
# resp.db_cluster.serverless_v2_platform_version #=> String
|
27528
27561
|
# resp.db_cluster.network_type #=> String
|
27529
27562
|
# resp.db_cluster.db_system_id #=> String
|
27530
27563
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -27702,7 +27735,7 @@ module Aws::RDS
|
|
27702
27735
|
# License model information for the restored DB instance.
|
27703
27736
|
#
|
27704
27737
|
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
27705
|
-
#
|
27738
|
+
# bring your own license (BYOL) model requires a custom parameter group
|
27706
27739
|
# and an Amazon Web Services License Manager self-managed license. The
|
27707
27740
|
# Db2 license through Amazon Web Services Marketplace model requires an
|
27708
27741
|
# Amazon Web Services Marketplace subscription. For more information,
|
@@ -28498,8 +28531,9 @@ module Aws::RDS
|
|
28498
28531
|
# MySQL databases by using backup files. You can create a backup of your
|
28499
28532
|
# on-premises database, store it on Amazon Simple Storage Service
|
28500
28533
|
# (Amazon S3), and then restore the backup file onto a new Amazon RDS DB
|
28501
|
-
# instance running MySQL. For more information, see [
|
28502
|
-
# an Amazon RDS MySQL DB
|
28534
|
+
# instance running MySQL. For more information, see [Restoring a backup
|
28535
|
+
# into an Amazon RDS for MySQL DB instance][1] in the *Amazon RDS User
|
28536
|
+
# Guide.*
|
28503
28537
|
#
|
28504
28538
|
# This operation doesn't apply to RDS Custom.
|
28505
28539
|
#
|
@@ -29469,7 +29503,7 @@ module Aws::RDS
|
|
29469
29503
|
# The license model information for the restored DB instance.
|
29470
29504
|
#
|
29471
29505
|
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
29472
|
-
#
|
29506
|
+
# bring your own license (BYOL) model requires a custom parameter group
|
29473
29507
|
# and an Amazon Web Services License Manager self-managed license. The
|
29474
29508
|
# Db2 license through Amazon Web Services Marketplace model requires an
|
29475
29509
|
# Amazon Web Services Marketplace subscription. For more information,
|
@@ -30702,6 +30736,7 @@ module Aws::RDS
|
|
30702
30736
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
30703
30737
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
30704
30738
|
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
30739
|
+
# resp.db_cluster.serverless_v2_platform_version #=> String
|
30705
30740
|
# resp.db_cluster.network_type #=> String
|
30706
30741
|
# resp.db_cluster.db_system_id #=> String
|
30707
30742
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -31537,6 +31572,7 @@ module Aws::RDS
|
|
31537
31572
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
31538
31573
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
31539
31574
|
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
31575
|
+
# resp.db_cluster.serverless_v2_platform_version #=> String
|
31540
31576
|
# resp.db_cluster.network_type #=> String
|
31541
31577
|
# resp.db_cluster.db_system_id #=> String
|
31542
31578
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -32414,7 +32450,7 @@ module Aws::RDS
|
|
32414
32450
|
tracer: tracer
|
32415
32451
|
)
|
32416
32452
|
context[:gem_name] = 'aws-sdk-rds'
|
32417
|
-
context[:gem_version] = '1.
|
32453
|
+
context[:gem_version] = '1.288.0'
|
32418
32454
|
Seahorse::Client::Request.new(handlers, context)
|
32419
32455
|
end
|
32420
32456
|
|
@@ -1458,6 +1458,7 @@ module Aws::RDS
|
|
1458
1458
|
DBCluster.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
|
1459
1459
|
DBCluster.add_member(:performance_insights_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PerformanceInsightsRetentionPeriod"))
|
1460
1460
|
DBCluster.add_member(:serverless_v2_scaling_configuration, Shapes::ShapeRef.new(shape: ServerlessV2ScalingConfigurationInfo, location_name: "ServerlessV2ScalingConfiguration"))
|
1461
|
+
DBCluster.add_member(:serverless_v2_platform_version, Shapes::ShapeRef.new(shape: String, location_name: "ServerlessV2PlatformVersion"))
|
1461
1462
|
DBCluster.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
1462
1463
|
DBCluster.add_member(:db_system_id, Shapes::ShapeRef.new(shape: String, location_name: "DBSystemId"))
|
1463
1464
|
DBCluster.add_member(:master_user_secret, Shapes::ShapeRef.new(shape: MasterUserSecret, location_name: "MasterUserSecret"))
|
@@ -649,6 +649,18 @@ module Aws::RDS
|
|
649
649
|
data[:serverless_v2_scaling_configuration]
|
650
650
|
end
|
651
651
|
|
652
|
+
# The version of the Aurora Serverless V2 platform used by the DB
|
653
|
+
# cluster. For more information, see [Using Aurora Serverless v2][1] in
|
654
|
+
# the *Amazon Aurora User Guide*.
|
655
|
+
#
|
656
|
+
#
|
657
|
+
#
|
658
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
659
|
+
# @return [String]
|
660
|
+
def serverless_v2_platform_version
|
661
|
+
data[:serverless_v2_platform_version]
|
662
|
+
end
|
663
|
+
|
652
664
|
# The network type of the DB instance.
|
653
665
|
#
|
654
666
|
# The network type is determined by the `DBSubnetGroup` specified for
|
@@ -988,8 +1000,18 @@ module Aws::RDS
|
|
988
1000
|
# A list of Availability Zones (AZs) where you specifically want to
|
989
1001
|
# create DB instances in the DB cluster.
|
990
1002
|
#
|
991
|
-
# For
|
992
|
-
#
|
1003
|
+
# For the first three DB instances that you create, RDS distributes each
|
1004
|
+
# DB instance to a different AZ that you specify. For additional DB
|
1005
|
+
# instances that you create, RDS randomly distributes them to the AZs
|
1006
|
+
# that you specified. For example, if you create a DB cluster with one
|
1007
|
+
# writer instance and three reader instances, RDS might distribute the
|
1008
|
+
# writer instance to AZ 1, the first reader instance to AZ 2, the second
|
1009
|
+
# reader instance to AZ 3, and the third reader instance to either AZ 1,
|
1010
|
+
# AZ 2, or AZ 3.
|
1011
|
+
#
|
1012
|
+
# For more information, see [Availability Zones][1] and [High
|
1013
|
+
# availability for Aurora DB instances][2] in the *Amazon Aurora User
|
1014
|
+
# Guide*.
|
993
1015
|
#
|
994
1016
|
# Valid for Cluster Type: Aurora DB clusters only
|
995
1017
|
#
|
@@ -1002,6 +1024,7 @@ module Aws::RDS
|
|
1002
1024
|
#
|
1003
1025
|
#
|
1004
1026
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.RegionsAndAvailabilityZones.html#Concepts.RegionsAndAvailabilityZones.AvailabilityZones
|
1027
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.AuroraHighAvailability.html#Concepts.AuroraHighAvailability.Instances
|
1005
1028
|
# @option options [Integer] :backup_retention_period
|
1006
1029
|
# The number of days for which automated backups are retained.
|
1007
1030
|
#
|
@@ -228,9 +228,9 @@ module Aws::RDS
|
|
228
228
|
end
|
229
229
|
|
230
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
|
232
|
-
#
|
233
|
-
# for
|
231
|
+
# `open-read-only`. For more information, see [Working with replicas for
|
232
|
+
# Amazon RDS for Db2][1] and [Working with read replicas for Amazon RDS
|
233
|
+
# for Oracle][2] in the *Amazon RDS User Guide*.
|
234
234
|
#
|
235
235
|
# <note markdown="1"> This attribute is only supported in RDS for Db2, RDS for Oracle, and
|
236
236
|
# RDS Custom for Oracle.
|
@@ -1639,7 +1639,7 @@ module Aws::RDS
|
|
1639
1639
|
# The license model information for this DB instance.
|
1640
1640
|
#
|
1641
1641
|
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
1642
|
-
#
|
1642
|
+
# bring your own license (BYOL) model requires a custom parameter group
|
1643
1643
|
# and an Amazon Web Services License Manager self-managed license. The
|
1644
1644
|
# Db2 license through Amazon Web Services Marketplace model requires an
|
1645
1645
|
# Amazon Web Services Marketplace subscription. For more information,
|
@@ -2801,11 +2801,9 @@ module Aws::RDS
|
|
2801
2801
|
# @option options [String] :replica_mode
|
2802
2802
|
# The open mode of the replica database.
|
2803
2803
|
#
|
2804
|
-
#
|
2804
|
+
# This parameter is only supported for Db2 DB instances and Oracle DB
|
2805
2805
|
# instances.
|
2806
2806
|
#
|
2807
|
-
# </note>
|
2808
|
-
#
|
2809
2807
|
# Db2
|
2810
2808
|
#
|
2811
2809
|
# : Standby DB replicas are included in Db2 Advanced Edition (AE) and
|
@@ -2815,8 +2813,8 @@ module Aws::RDS
|
|
2815
2813
|
#
|
2816
2814
|
# You can create a combination of standby and read-only DB replicas
|
2817
2815
|
# for the same primary DB instance. For more information, see [Working
|
2818
|
-
# with
|
2819
|
-
#
|
2816
|
+
# with replicas for Amazon RDS for Db2][1] in the *Amazon RDS User
|
2817
|
+
# Guide*.
|
2820
2818
|
#
|
2821
2819
|
# To create standby DB replicas for RDS for Db2, set this parameter to
|
2822
2820
|
# `mounted`.
|
@@ -4032,11 +4030,9 @@ module Aws::RDS
|
|
4032
4030
|
# @option options [String] :replica_mode
|
4033
4031
|
# The open mode of a replica database.
|
4034
4032
|
#
|
4035
|
-
#
|
4033
|
+
# This parameter is only supported for Db2 DB instances and Oracle DB
|
4036
4034
|
# instances.
|
4037
4035
|
#
|
4038
|
-
# </note>
|
4039
|
-
#
|
4040
4036
|
# Db2
|
4041
4037
|
#
|
4042
4038
|
# : Standby DB replicas are included in Db2 Advanced Edition (AE) and
|
@@ -4046,8 +4042,8 @@ module Aws::RDS
|
|
4046
4042
|
#
|
4047
4043
|
# You can create a combination of standby and read-only DB replicas
|
4048
4044
|
# for the same primary DB instance. For more information, see [Working
|
4049
|
-
# with
|
4050
|
-
#
|
4045
|
+
# with replicas for Amazon RDS for Db2][1] in the *Amazon RDS User
|
4046
|
+
# Guide*.
|
4051
4047
|
#
|
4052
4048
|
# To create standby DB replicas for RDS for Db2, set this parameter to
|
4053
4049
|
# `mounted`.
|
@@ -4543,7 +4539,7 @@ module Aws::RDS
|
|
4543
4539
|
# The license model information for the restored DB instance.
|
4544
4540
|
#
|
4545
4541
|
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
4546
|
-
#
|
4542
|
+
# bring your own license (BYOL) model requires a custom parameter group
|
4547
4543
|
# and an Amazon Web Services License Manager self-managed license. The
|
4548
4544
|
# Db2 license through Amazon Web Services Marketplace model requires an
|
4549
4545
|
# Amazon Web Services Marketplace subscription. For more information,
|
@@ -837,7 +837,7 @@ module Aws::RDS
|
|
837
837
|
# License model information for the restored DB instance.
|
838
838
|
#
|
839
839
|
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
840
|
-
#
|
840
|
+
# bring your own license (BYOL) model requires a custom parameter group
|
841
841
|
# and an Amazon Web Services License Manager self-managed license. The
|
842
842
|
# Db2 license through Amazon Web Services Marketplace model requires an
|
843
843
|
# Amazon Web Services Marketplace subscription. For more information,
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -121,8 +121,18 @@ module Aws::RDS
|
|
121
121
|
# A list of Availability Zones (AZs) where you specifically want to
|
122
122
|
# create DB instances in the DB cluster.
|
123
123
|
#
|
124
|
-
# For
|
125
|
-
#
|
124
|
+
# For the first three DB instances that you create, RDS distributes each
|
125
|
+
# DB instance to a different AZ that you specify. For additional DB
|
126
|
+
# instances that you create, RDS randomly distributes them to the AZs
|
127
|
+
# that you specified. For example, if you create a DB cluster with one
|
128
|
+
# writer instance and three reader instances, RDS might distribute the
|
129
|
+
# writer instance to AZ 1, the first reader instance to AZ 2, the second
|
130
|
+
# reader instance to AZ 3, and the third reader instance to either AZ 1,
|
131
|
+
# AZ 2, or AZ 3.
|
132
|
+
#
|
133
|
+
# For more information, see [Availability Zones][1] and [High
|
134
|
+
# availability for Aurora DB instances][2] in the *Amazon Aurora User
|
135
|
+
# Guide*.
|
126
136
|
#
|
127
137
|
# Valid for Cluster Type: Aurora DB clusters only
|
128
138
|
#
|
@@ -135,6 +145,7 @@ module Aws::RDS
|
|
135
145
|
#
|
136
146
|
#
|
137
147
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.RegionsAndAvailabilityZones.html#Concepts.RegionsAndAvailabilityZones.AvailabilityZones
|
148
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.AuroraHighAvailability.html#Concepts.AuroraHighAvailability.Instances
|
138
149
|
# @option options [Integer] :backup_retention_period
|
139
150
|
# The number of days for which automated backups are retained.
|
140
151
|
#
|
@@ -1784,7 +1795,7 @@ module Aws::RDS
|
|
1784
1795
|
# The license model information for this DB instance.
|
1785
1796
|
#
|
1786
1797
|
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
1787
|
-
#
|
1798
|
+
# bring your own license (BYOL) model requires a custom parameter group
|
1788
1799
|
# and an Amazon Web Services License Manager self-managed license. The
|
1789
1800
|
# Db2 license through Amazon Web Services Marketplace model requires an
|
1790
1801
|
# Amazon Web Services Marketplace subscription. For more information,
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -2203,8 +2203,18 @@ module Aws::RDS
|
|
2203
2203
|
# A list of Availability Zones (AZs) where you specifically want to
|
2204
2204
|
# create DB instances in the DB cluster.
|
2205
2205
|
#
|
2206
|
-
# For
|
2207
|
-
#
|
2206
|
+
# For the first three DB instances that you create, RDS distributes
|
2207
|
+
# each DB instance to a different AZ that you specify. For additional
|
2208
|
+
# DB instances that you create, RDS randomly distributes them to the
|
2209
|
+
# AZs that you specified. For example, if you create a DB cluster with
|
2210
|
+
# one writer instance and three reader instances, RDS might distribute
|
2211
|
+
# the writer instance to AZ 1, the first reader instance to AZ 2, the
|
2212
|
+
# second reader instance to AZ 3, and the third reader instance to
|
2213
|
+
# either AZ 1, AZ 2, or AZ 3.
|
2214
|
+
#
|
2215
|
+
# For more information, see [Availability Zones][1] and [High
|
2216
|
+
# availability for Aurora DB instances][2] in the *Amazon Aurora User
|
2217
|
+
# Guide*.
|
2208
2218
|
#
|
2209
2219
|
# Valid for Cluster Type: Aurora DB clusters only
|
2210
2220
|
#
|
@@ -2217,6 +2227,7 @@ module Aws::RDS
|
|
2217
2227
|
#
|
2218
2228
|
#
|
2219
2229
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.RegionsAndAvailabilityZones.html#Concepts.RegionsAndAvailabilityZones.AvailabilityZones
|
2230
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.AuroraHighAvailability.html#Concepts.AuroraHighAvailability.Instances
|
2220
2231
|
# @return [Array<String>]
|
2221
2232
|
#
|
2222
2233
|
# @!attribute [rw] backup_retention_period
|
@@ -4106,7 +4117,7 @@ module Aws::RDS
|
|
4106
4117
|
# The license model information for this DB instance.
|
4107
4118
|
#
|
4108
4119
|
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
4109
|
-
#
|
4120
|
+
# bring your own license (BYOL) model requires a custom parameter
|
4110
4121
|
# group and an Amazon Web Services License Manager self-managed
|
4111
4122
|
# license. The Db2 license through Amazon Web Services Marketplace
|
4112
4123
|
# model requires an Amazon Web Services Marketplace subscription. For
|
@@ -5484,11 +5495,9 @@ module Aws::RDS
|
|
5484
5495
|
# @!attribute [rw] replica_mode
|
5485
5496
|
# The open mode of the replica database.
|
5486
5497
|
#
|
5487
|
-
#
|
5498
|
+
# This parameter is only supported for Db2 DB instances and Oracle DB
|
5488
5499
|
# instances.
|
5489
5500
|
#
|
5490
|
-
# </note>
|
5491
|
-
#
|
5492
5501
|
# Db2
|
5493
5502
|
#
|
5494
5503
|
# : Standby DB replicas are included in Db2 Advanced Edition (AE) and
|
@@ -5498,8 +5507,8 @@ module Aws::RDS
|
|
5498
5507
|
#
|
5499
5508
|
# You can create a combination of standby and read-only DB replicas
|
5500
5509
|
# for the same primary DB instance. For more information, see
|
5501
|
-
# [Working with
|
5502
|
-
#
|
5510
|
+
# [Working with replicas for Amazon RDS for Db2][1] in the *Amazon
|
5511
|
+
# RDS User Guide*.
|
5503
5512
|
#
|
5504
5513
|
# To create standby DB replicas for RDS for Db2, set this parameter
|
5505
5514
|
# to `mounted`.
|
@@ -6009,14 +6018,12 @@ module Aws::RDS
|
|
6009
6018
|
# @return [Integer]
|
6010
6019
|
#
|
6011
6020
|
# @!attribute [rw] debug_logging
|
6012
|
-
# Specifies whether the proxy
|
6013
|
-
#
|
6014
|
-
#
|
6015
|
-
#
|
6016
|
-
#
|
6017
|
-
#
|
6018
|
-
# measures in place to safeguard any sensitive information that
|
6019
|
-
# appears in the logs.
|
6021
|
+
# Specifies whether the proxy logs detailed connection and query
|
6022
|
+
# information. When you enable `DebugLogging`, the proxy captures
|
6023
|
+
# connection details and connection pool behavior from your queries.
|
6024
|
+
# Debug logging increases CloudWatch costs and can impact proxy
|
6025
|
+
# performance. Enable this option only when you need to troubleshoot
|
6026
|
+
# connection or performance issues.
|
6020
6027
|
# @return [Boolean]
|
6021
6028
|
#
|
6022
6029
|
# @!attribute [rw] tags
|
@@ -7445,6 +7452,16 @@ module Aws::RDS
|
|
7445
7452
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
7446
7453
|
# @return [Types::ServerlessV2ScalingConfigurationInfo]
|
7447
7454
|
#
|
7455
|
+
# @!attribute [rw] serverless_v2_platform_version
|
7456
|
+
# The version of the Aurora Serverless V2 platform used by the DB
|
7457
|
+
# cluster. For more information, see [Using Aurora Serverless v2][1]
|
7458
|
+
# in the *Amazon Aurora User Guide*.
|
7459
|
+
#
|
7460
|
+
#
|
7461
|
+
#
|
7462
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
7463
|
+
# @return [String]
|
7464
|
+
#
|
7448
7465
|
# @!attribute [rw] network_type
|
7449
7466
|
# The network type of the DB instance.
|
7450
7467
|
#
|
@@ -7615,6 +7632,7 @@ module Aws::RDS
|
|
7615
7632
|
:performance_insights_kms_key_id,
|
7616
7633
|
:performance_insights_retention_period,
|
7617
7634
|
:serverless_v2_scaling_configuration,
|
7635
|
+
:serverless_v2_platform_version,
|
7618
7636
|
:network_type,
|
7619
7637
|
:db_system_id,
|
7620
7638
|
:master_user_secret,
|
@@ -9094,9 +9112,9 @@ module Aws::RDS
|
|
9094
9112
|
#
|
9095
9113
|
# @!attribute [rw] replica_mode
|
9096
9114
|
# The open mode of a Db2 or an Oracle read replica. The default is
|
9097
|
-
# `open-read-only`. For more information, see [Working with
|
9098
|
-
#
|
9099
|
-
#
|
9115
|
+
# `open-read-only`. For more information, see [Working with replicas
|
9116
|
+
# for Amazon RDS for Db2][1] and [Working with read replicas for
|
9117
|
+
# Amazon RDS for Oracle][2] in the *Amazon RDS User Guide*.
|
9100
9118
|
#
|
9101
9119
|
# <note markdown="1"> This attribute is only supported in RDS for Db2, RDS for Oracle, and
|
9102
9120
|
# RDS Custom for Oracle.
|
@@ -10314,14 +10332,12 @@ module Aws::RDS
|
|
10314
10332
|
# @return [Integer]
|
10315
10333
|
#
|
10316
10334
|
# @!attribute [rw] debug_logging
|
10317
|
-
#
|
10318
|
-
#
|
10319
|
-
#
|
10320
|
-
#
|
10321
|
-
#
|
10322
|
-
#
|
10323
|
-
# measures in place to safeguard any sensitive information that
|
10324
|
-
# appears in the logs.
|
10335
|
+
# Specifies whether the proxy logs detailed connection and query
|
10336
|
+
# information. When you enable `DebugLogging`, the proxy captures
|
10337
|
+
# connection details and connection pool behavior from your queries.
|
10338
|
+
# Debug logging increases CloudWatch costs and can impact proxy
|
10339
|
+
# performance. Enable this option only when you need to troubleshoot
|
10340
|
+
# connection or performance issues.
|
10325
10341
|
# @return [Boolean]
|
10326
10342
|
#
|
10327
10343
|
# @!attribute [rw] created_date
|
@@ -19570,11 +19586,9 @@ module Aws::RDS
|
|
19570
19586
|
# @!attribute [rw] replica_mode
|
19571
19587
|
# The open mode of a replica database.
|
19572
19588
|
#
|
19573
|
-
#
|
19589
|
+
# This parameter is only supported for Db2 DB instances and Oracle DB
|
19574
19590
|
# instances.
|
19575
19591
|
#
|
19576
|
-
# </note>
|
19577
|
-
#
|
19578
19592
|
# Db2
|
19579
19593
|
#
|
19580
19594
|
# : Standby DB replicas are included in Db2 Advanced Edition (AE) and
|
@@ -19584,8 +19598,8 @@ module Aws::RDS
|
|
19584
19598
|
#
|
19585
19599
|
# You can create a combination of standby and read-only DB replicas
|
19586
19600
|
# for the same primary DB instance. For more information, see
|
19587
|
-
# [Working with
|
19588
|
-
#
|
19601
|
+
# [Working with replicas for Amazon RDS for Db2][1] in the *Amazon
|
19602
|
+
# RDS User Guide*.
|
19589
19603
|
#
|
19590
19604
|
# To create standby DB replicas for RDS for Db2, set this parameter
|
19591
19605
|
# to `mounted`.
|
@@ -20047,14 +20061,12 @@ module Aws::RDS
|
|
20047
20061
|
# @return [Integer]
|
20048
20062
|
#
|
20049
20063
|
# @!attribute [rw] debug_logging
|
20050
|
-
#
|
20051
|
-
#
|
20052
|
-
#
|
20053
|
-
#
|
20054
|
-
#
|
20055
|
-
#
|
20056
|
-
# measures in place to safeguard any sensitive information that
|
20057
|
-
# appears in the logs.
|
20064
|
+
# Specifies whether the proxy logs detailed connection and query
|
20065
|
+
# information. When you enable `DebugLogging`, the proxy captures
|
20066
|
+
# connection details and connection pool behavior from your queries.
|
20067
|
+
# Debug logging increases CloudWatch costs and can impact proxy
|
20068
|
+
# performance. Enable this option only when you need to troubleshoot
|
20069
|
+
# connection or performance issues.
|
20058
20070
|
# @return [Boolean]
|
20059
20071
|
#
|
20060
20072
|
# @!attribute [rw] role_arn
|
@@ -20290,14 +20302,33 @@ module Aws::RDS
|
|
20290
20302
|
# The following are the database engines and engine versions that are
|
20291
20303
|
# available when you upgrade a DB snapshot.
|
20292
20304
|
#
|
20305
|
+
# **MariaDB**
|
20306
|
+
#
|
20307
|
+
# For the list of engine versions that are available for upgrading a
|
20308
|
+
# DB snapshot, see [ Upgrading a MariaDB DB snapshot engine
|
20309
|
+
# version][1] in the *Amazon RDS User Guide.*
|
20310
|
+
#
|
20293
20311
|
# **MySQL**
|
20294
20312
|
#
|
20295
20313
|
# For the list of engine versions that are available for upgrading a
|
20296
|
-
# DB snapshot, see [ Upgrading a MySQL DB snapshot engine version][
|
20314
|
+
# DB snapshot, see [ Upgrading a MySQL DB snapshot engine version][2]
|
20297
20315
|
# in the *Amazon RDS User Guide.*
|
20298
20316
|
#
|
20299
20317
|
# **Oracle**
|
20300
20318
|
#
|
20319
|
+
# * `21.0.0.0.ru-2025-04.rur-2025-04.r1` (supported for
|
20320
|
+
# 21.0.0.0.ru-2022-01.rur-2022-01.r1,
|
20321
|
+
# 21.0.0.0.ru-2022-04.rur-2022-04.r1,
|
20322
|
+
# 21.0.0.0.ru-2022-07.rur-2022-07.r1,
|
20323
|
+
# 21.0.0.0.ru-2022-10.rur-2022-10.r1,
|
20324
|
+
# 21.0.0.0.ru-2023-01.rur-2023-01.r1 and
|
20325
|
+
# 21.0.0.0.ru-2023-01.rur-2023-01.r2 DB snapshots)
|
20326
|
+
#
|
20327
|
+
# * `19.0.0.0.ru-2025-04.rur-2025-04.r1` (supported for
|
20328
|
+
# 19.0.0.0.ru-2019-07.rur-2019-07.r1,
|
20329
|
+
# 19.0.0.0.ru-2019-10.rur-2019-10.r1 and
|
20330
|
+
# 0.0.0.ru-2020-01.rur-2020-01.r1 DB snapshots)
|
20331
|
+
#
|
20301
20332
|
# * `19.0.0.0.ru-2022-01.rur-2022-01.r1` (supported for 12.2.0.1 DB
|
20302
20333
|
# snapshots)
|
20303
20334
|
#
|
@@ -20314,12 +20345,13 @@ module Aws::RDS
|
|
20314
20345
|
#
|
20315
20346
|
# For the list of engine versions that are available for upgrading a
|
20316
20347
|
# DB snapshot, see [ Upgrading a PostgreSQL DB snapshot engine
|
20317
|
-
# version][
|
20348
|
+
# version][3] in the *Amazon RDS User Guide.*
|
20318
20349
|
#
|
20319
20350
|
#
|
20320
20351
|
#
|
20321
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
20322
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
20352
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/mariadb-upgrade-snapshot.html
|
20353
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/mysql-upgrade-snapshot.html
|
20354
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBSnapshot.PostgreSQL.html
|
20323
20355
|
# @return [String]
|
20324
20356
|
#
|
20325
20357
|
# @!attribute [rw] option_group_name
|
@@ -25106,7 +25138,7 @@ module Aws::RDS
|
|
25106
25138
|
# License model information for the restored DB instance.
|
25107
25139
|
#
|
25108
25140
|
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
25109
|
-
#
|
25141
|
+
# bring your own license (BYOL) model requires a custom parameter
|
25110
25142
|
# group and an Amazon Web Services License Manager self-managed
|
25111
25143
|
# license. The Db2 license through Amazon Web Services Marketplace
|
25112
25144
|
# model requires an Amazon Web Services Marketplace subscription. For
|
@@ -26587,7 +26619,7 @@ module Aws::RDS
|
|
26587
26619
|
# The license model information for the restored DB instance.
|
26588
26620
|
#
|
26589
26621
|
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
26590
|
-
#
|
26622
|
+
# bring your own license (BYOL) model requires a custom parameter
|
26591
26623
|
# group and an Amazon Web Services License Manager self-managed
|
26592
26624
|
# license. The Db2 license through Amazon Web Services Marketplace
|
26593
26625
|
# model requires an Amazon Web Services Marketplace subscription. For
|
@@ -27499,22 +27531,24 @@ module Aws::RDS
|
|
27499
27531
|
end
|
27500
27532
|
|
27501
27533
|
# Specifies any Aurora Serverless v2 properties or limits that differ
|
27502
|
-
# between Aurora engine versions. You can test the
|
27503
|
-
# attribute when deciding which Aurora version to use in
|
27504
|
-
# upgraded DB cluster. You can also retrieve the version of an
|
27505
|
-
# DB cluster and check whether that version supports certain
|
27506
|
-
# Serverless v2 features before you attempt to use those
|
27534
|
+
# between Aurora engine versions and platform versions. You can test the
|
27535
|
+
# values of this attribute when deciding which Aurora version to use in
|
27536
|
+
# a new or upgraded DB cluster. You can also retrieve the version of an
|
27537
|
+
# existing DB cluster and check whether that version supports certain
|
27538
|
+
# Aurora Serverless v2 features before you attempt to use those
|
27539
|
+
# features.
|
27507
27540
|
#
|
27508
27541
|
# @!attribute [rw] min_capacity
|
27509
|
-
# If the minimum capacity is 0 ACUs, the engine version
|
27510
|
-
# automatic pause/resume feature of Aurora
|
27542
|
+
# If the minimum capacity is 0 ACUs, the engine version or platform
|
27543
|
+
# version supports the automatic pause/resume feature of Aurora
|
27544
|
+
# Serverless v2.
|
27511
27545
|
# @return [Float]
|
27512
27546
|
#
|
27513
27547
|
# @!attribute [rw] max_capacity
|
27514
27548
|
# Specifies the upper Aurora Serverless v2 capacity limit for a
|
27515
|
-
# particular engine version. Depending on the
|
27516
|
-
# maximum capacity for an Aurora Serverless v2
|
27517
|
-
# or `128`.
|
27549
|
+
# particular engine version or platform version. Depending on the
|
27550
|
+
# engine version, the maximum capacity for an Aurora Serverless v2
|
27551
|
+
# cluster might be `256` or `128`.
|
27518
27552
|
# @return [Float]
|
27519
27553
|
#
|
27520
27554
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ServerlessV2FeaturesSupport AWS API Documentation
|
@@ -27551,7 +27585,9 @@ module Aws::RDS
|
|
27551
27585
|
# in an Aurora Serverless v2 cluster. You can specify ACU values in
|
27552
27586
|
# half-step increments, such as 32, 32.5, 33, and so on. The largest
|
27553
27587
|
# value that you can use is 256 for recent Aurora versions, or 128 for
|
27554
|
-
# older versions.
|
27588
|
+
# older versions. You can check the attributes of your engine version
|
27589
|
+
# or platform version to determine the specific maximum capacity
|
27590
|
+
# supported.
|
27555
27591
|
# @return [Float]
|
27556
27592
|
#
|
27557
27593
|
# @!attribute [rw] seconds_until_auto_pause
|
@@ -27596,7 +27632,9 @@ module Aws::RDS
|
|
27596
27632
|
# in an Aurora Serverless v2 cluster. You can specify ACU values in
|
27597
27633
|
# half-step increments, such as 32, 32.5, 33, and so on. The largest
|
27598
27634
|
# value that you can use is 256 for recent Aurora versions, or 128 for
|
27599
|
-
# older versions.
|
27635
|
+
# older versions. You can check the attributes of your engine version
|
27636
|
+
# or platform version to determine the specific maximum capacity
|
27637
|
+
# supported.
|
27600
27638
|
# @return [Float]
|
27601
27639
|
#
|
27602
27640
|
# @!attribute [rw] seconds_until_auto_pause
|
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.288.0'
|
84
84
|
|
85
85
|
end
|
86
86
|
|
data/sig/db_cluster.rbs
CHANGED
@@ -231,6 +231,9 @@ module Aws
|
|
231
231
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#serverless_v2_scaling_configuration-instance_method
|
232
232
|
def serverless_v2_scaling_configuration: () -> Types::ServerlessV2ScalingConfigurationInfo
|
233
233
|
|
234
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#serverless_v2_platform_version-instance_method
|
235
|
+
def serverless_v2_platform_version: () -> ::String
|
236
|
+
|
234
237
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#network_type-instance_method
|
235
238
|
def network_type: () -> ::String
|
236
239
|
|
data/sig/types.rbs
CHANGED
@@ -830,6 +830,7 @@ module Aws::RDS
|
|
830
830
|
attr_accessor performance_insights_kms_key_id: ::String
|
831
831
|
attr_accessor performance_insights_retention_period: ::Integer
|
832
832
|
attr_accessor serverless_v2_scaling_configuration: Types::ServerlessV2ScalingConfigurationInfo
|
833
|
+
attr_accessor serverless_v2_platform_version: ::String
|
833
834
|
attr_accessor network_type: ::String
|
834
835
|
attr_accessor db_system_id: ::String
|
835
836
|
attr_accessor master_user_secret: Types::MasterUserSecret
|