aws-sdk-rds 1.141.0 → 1.144.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 +309 -532
- data/lib/aws-sdk-rds/client_api.rb +16 -175
- data/lib/aws-sdk-rds/db_cluster.rb +100 -43
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +18 -4
- data/lib/aws-sdk-rds/db_instance.rb +25 -26
- data/lib/aws-sdk-rds/db_snapshot.rb +1 -1
- data/lib/aws-sdk-rds/errors.rb +0 -44
- data/lib/aws-sdk-rds/resource.rb +46 -30
- data/lib/aws-sdk-rds/types.rb +374 -660
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -94,6 +94,10 @@ module Aws::RDS
|
|
94
94
|
# enable_performance_insights: false,
|
95
95
|
# performance_insights_kms_key_id: "String",
|
96
96
|
# performance_insights_retention_period: 1,
|
97
|
+
# serverless_v2_scaling_configuration: {
|
98
|
+
# min_capacity: 1.0,
|
99
|
+
# max_capacity: 1.0,
|
100
|
+
# },
|
97
101
|
# source_region: "String",
|
98
102
|
# })
|
99
103
|
# @param [Hash] options ({})
|
@@ -229,22 +233,22 @@ module Aws::RDS
|
|
229
233
|
# **Aurora MySQL**
|
230
234
|
#
|
231
235
|
# For information, see [MySQL on Amazon RDS Versions][1] in the *Amazon
|
232
|
-
# Aurora User Guide
|
236
|
+
# Aurora User Guide*.
|
233
237
|
#
|
234
238
|
# **Aurora PostgreSQL**
|
235
239
|
#
|
236
240
|
# For information, see [Amazon Aurora PostgreSQL releases and engine
|
237
|
-
# versions][2] in the *Amazon Aurora User Guide
|
241
|
+
# versions][2] in the *Amazon Aurora User Guide*.
|
238
242
|
#
|
239
243
|
# **MySQL**
|
240
244
|
#
|
241
245
|
# For information, see [MySQL on Amazon RDS Versions][3] in the *Amazon
|
242
|
-
# RDS User Guide
|
246
|
+
# RDS User Guide*.
|
243
247
|
#
|
244
248
|
# **PostgreSQL**
|
245
249
|
#
|
246
250
|
# For information, see [Amazon RDS for PostgreSQL versions and
|
247
|
-
# extensions][4] in the *Amazon RDS User Guide
|
251
|
+
# extensions][4] in the *Amazon RDS User Guide*.
|
248
252
|
#
|
249
253
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
250
254
|
#
|
@@ -304,7 +308,7 @@ module Aws::RDS
|
|
304
308
|
# The default is a 30-minute window selected at random from an 8-hour
|
305
309
|
# block of time for each Amazon Web Services Region. To view the time
|
306
310
|
# blocks available, see [ Backup window][1] in the *Amazon Aurora User
|
307
|
-
# Guide
|
311
|
+
# Guide*.
|
308
312
|
#
|
309
313
|
# Constraints:
|
310
314
|
#
|
@@ -331,7 +335,7 @@ module Aws::RDS
|
|
331
335
|
# block of time for each Amazon Web Services Region, occurring on a
|
332
336
|
# random day of the week. To see the time blocks available, see [
|
333
337
|
# Adjusting the Preferred DB Cluster Maintenance Window][1] in the
|
334
|
-
# *Amazon Aurora User Guide
|
338
|
+
# *Amazon Aurora User Guide*.
|
335
339
|
#
|
336
340
|
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.
|
337
341
|
#
|
@@ -443,7 +447,7 @@ module Aws::RDS
|
|
443
447
|
# accounts. By default, mapping isn't enabled.
|
444
448
|
#
|
445
449
|
# For more information, see [ IAM Database Authentication][1] in the
|
446
|
-
# *Amazon Aurora User Guide
|
450
|
+
# *Amazon Aurora User Guide.*.
|
447
451
|
#
|
448
452
|
# Valid for: Aurora DB clusters only
|
449
453
|
#
|
@@ -487,7 +491,7 @@ module Aws::RDS
|
|
487
491
|
#
|
488
492
|
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
489
493
|
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
490
|
-
# *Amazon
|
494
|
+
# *Amazon RDS User Guide*.
|
491
495
|
#
|
492
496
|
# For more information about exporting CloudWatch Logs for Amazon
|
493
497
|
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][2] in
|
@@ -522,7 +526,7 @@ module Aws::RDS
|
|
522
526
|
# information, see the following sections in the *Amazon Aurora User
|
523
527
|
# Guide*\:
|
524
528
|
#
|
525
|
-
# * [ Limitations of Aurora Serverless][1]
|
529
|
+
# * [ Limitations of Aurora Serverless v1][1]
|
526
530
|
#
|
527
531
|
# * [ Limitations of Parallel Query][2]
|
528
532
|
#
|
@@ -556,16 +560,16 @@ module Aws::RDS
|
|
556
560
|
# Valid for: Aurora DB clusters only
|
557
561
|
# @option options [Boolean] :enable_http_endpoint
|
558
562
|
# A value that indicates whether to enable the HTTP endpoint for an
|
559
|
-
# Aurora Serverless DB cluster. By default, the HTTP endpoint is
|
563
|
+
# Aurora Serverless v1 DB cluster. By default, the HTTP endpoint is
|
560
564
|
# disabled.
|
561
565
|
#
|
562
566
|
# When enabled, the HTTP endpoint provides a connectionless web service
|
563
|
-
# API for running SQL queries on the Aurora Serverless DB cluster.
|
564
|
-
# can also query your database from inside the RDS console with the
|
567
|
+
# API for running SQL queries on the Aurora Serverless v1 DB cluster.
|
568
|
+
# You can also query your database from inside the RDS console with the
|
565
569
|
# query editor.
|
566
570
|
#
|
567
|
-
# For more information, see [Using the Data API for Aurora
|
568
|
-
#
|
571
|
+
# For more information, see [Using the Data API for Aurora Serverless
|
572
|
+
# v1][1] in the *Amazon Aurora User Guide*.
|
569
573
|
#
|
570
574
|
# Valid for: Aurora DB clusters only
|
571
575
|
#
|
@@ -619,7 +623,7 @@ module Aws::RDS
|
|
619
623
|
# engines.
|
620
624
|
#
|
621
625
|
# For the full list of DB instance classes and availability for your
|
622
|
-
# engine, see [DB instance class][1] in the *Amazon RDS User Guide
|
626
|
+
# engine, see [DB instance class][1] in the *Amazon RDS User Guide*.
|
623
627
|
#
|
624
628
|
# This setting is required to create a Multi-AZ DB cluster.
|
625
629
|
#
|
@@ -764,6 +768,16 @@ module Aws::RDS
|
|
764
768
|
# Valid values are 7 or 731 (2 years).
|
765
769
|
#
|
766
770
|
# Valid for: Multi-AZ DB clusters only
|
771
|
+
# @option options [Types::ServerlessV2ScalingConfiguration] :serverless_v2_scaling_configuration
|
772
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
773
|
+
# cluster.
|
774
|
+
#
|
775
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
776
|
+
# the *Amazon Aurora User Guide*.
|
777
|
+
#
|
778
|
+
#
|
779
|
+
#
|
780
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
767
781
|
# @option options [String] :source_region
|
768
782
|
# The source region of the snapshot. This is only needed when the
|
769
783
|
# shapshot is encrypted and in a different region.
|
@@ -1167,7 +1181,7 @@ module Aws::RDS
|
|
1167
1181
|
# db.m4.large. Not all DB instance classes are available in all Amazon
|
1168
1182
|
# Web Services Regions, or for all database engines. For the full list
|
1169
1183
|
# of DB instance classes, and availability for your engine, see [DB
|
1170
|
-
# Instance Class][1] in the *Amazon RDS User Guide
|
1184
|
+
# Instance Class][1] in the *Amazon RDS User Guide*.
|
1171
1185
|
#
|
1172
1186
|
#
|
1173
1187
|
#
|
@@ -1285,7 +1299,10 @@ module Aws::RDS
|
|
1285
1299
|
#
|
1286
1300
|
# **Amazon Aurora**
|
1287
1301
|
#
|
1288
|
-
#
|
1302
|
+
# Each Aurora DB cluster hosts copies of its storage in three separate
|
1303
|
+
# Availability Zones. Specify one of these Availability Zones. Aurora
|
1304
|
+
# automatically chooses an appropriate Availability Zone if you don't
|
1305
|
+
# specify one.
|
1289
1306
|
#
|
1290
1307
|
# Default: A random, system-chosen Availability Zone in the endpoint's
|
1291
1308
|
# Amazon Web Services Region.
|
@@ -1468,37 +1485,37 @@ module Aws::RDS
|
|
1468
1485
|
# setting is required for RDS Custom for Oracle. The CEV name has the
|
1469
1486
|
# following format: `19.customized_string `. An example identifier is
|
1470
1487
|
# `19.my_cev1`. For more information, see [ Creating an RDS Custom for
|
1471
|
-
# Oracle DB instance][1] in the *Amazon RDS User Guide
|
1488
|
+
# Oracle DB instance][1] in the *Amazon RDS User Guide*.
|
1472
1489
|
#
|
1473
1490
|
# **Amazon RDS Custom for SQL Server**
|
1474
1491
|
#
|
1475
1492
|
# See [RDS Custom for SQL Server general requirements][2] in the *Amazon
|
1476
|
-
# RDS User Guide
|
1493
|
+
# RDS User Guide*.
|
1477
1494
|
#
|
1478
1495
|
# **MariaDB**
|
1479
1496
|
#
|
1480
1497
|
# For information, see [MariaDB on Amazon RDS Versions][3] in the
|
1481
|
-
# *Amazon RDS User Guide
|
1498
|
+
# *Amazon RDS User Guide*.
|
1482
1499
|
#
|
1483
1500
|
# **Microsoft SQL Server**
|
1484
1501
|
#
|
1485
1502
|
# For information, see [Microsoft SQL Server Versions on Amazon RDS][4]
|
1486
|
-
# in the *Amazon RDS User Guide
|
1503
|
+
# in the *Amazon RDS User Guide*.
|
1487
1504
|
#
|
1488
1505
|
# **MySQL**
|
1489
1506
|
#
|
1490
1507
|
# For information, see [MySQL on Amazon RDS Versions][5] in the *Amazon
|
1491
|
-
# RDS User Guide
|
1508
|
+
# RDS User Guide*.
|
1492
1509
|
#
|
1493
1510
|
# **Oracle**
|
1494
1511
|
#
|
1495
1512
|
# For information, see [Oracle Database Engine Release Notes][6] in the
|
1496
|
-
# *Amazon RDS User Guide
|
1513
|
+
# *Amazon RDS User Guide*.
|
1497
1514
|
#
|
1498
1515
|
# **PostgreSQL**
|
1499
1516
|
#
|
1500
1517
|
# For information, see [Amazon RDS for PostgreSQL versions and
|
1501
|
-
# extensions][7] in the *Amazon RDS User Guide
|
1518
|
+
# extensions][7] in the *Amazon RDS User Guide*.
|
1502
1519
|
#
|
1503
1520
|
#
|
1504
1521
|
#
|
@@ -1744,7 +1761,7 @@ module Aws::RDS
|
|
1744
1761
|
# managed by the DB cluster.
|
1745
1762
|
#
|
1746
1763
|
# For more information, see [ IAM Database Authentication for MySQL and
|
1747
|
-
# PostgreSQL][1] in the *Amazon RDS User Guide
|
1764
|
+
# PostgreSQL][1] in the *Amazon RDS User Guide*.
|
1748
1765
|
#
|
1749
1766
|
#
|
1750
1767
|
#
|
@@ -1752,7 +1769,7 @@ module Aws::RDS
|
|
1752
1769
|
# @option options [Boolean] :enable_performance_insights
|
1753
1770
|
# A value that indicates whether to enable Performance Insights for the
|
1754
1771
|
# DB instance. For more information, see [Using Amazon Performance
|
1755
|
-
# Insights][1] in the *Amazon
|
1772
|
+
# Insights][1] in the *Amazon RDS User Guide*.
|
1756
1773
|
#
|
1757
1774
|
# This setting doesn't apply to RDS Custom.
|
1758
1775
|
#
|
@@ -1780,8 +1797,8 @@ module Aws::RDS
|
|
1780
1797
|
# @option options [Array<String>] :enable_cloudwatch_logs_exports
|
1781
1798
|
# The list of log types that need to be enabled for exporting to
|
1782
1799
|
# CloudWatch Logs. The values in the list depend on the DB engine. For
|
1783
|
-
# more information, see [Publishing Database Logs to Amazon CloudWatch
|
1784
|
-
# Logs][1] in the *Amazon
|
1800
|
+
# more information, see [ Publishing Database Logs to Amazon CloudWatch
|
1801
|
+
# Logs][1] in the *Amazon RDS User Guide*.
|
1785
1802
|
#
|
1786
1803
|
# **Amazon Aurora**
|
1787
1804
|
#
|
@@ -1883,8 +1900,7 @@ module Aws::RDS
|
|
1883
1900
|
# start with the prefix `AWSRDSCustom`.
|
1884
1901
|
#
|
1885
1902
|
# For the list of permissions required for the IAM role, see [ Configure
|
1886
|
-
# IAM and your VPC][1] in the *Amazon
|
1887
|
-
# Guide*.
|
1903
|
+
# IAM and your VPC][1] in the *Amazon RDS User Guide*.
|
1888
1904
|
#
|
1889
1905
|
# This setting is required for RDS Custom.
|
1890
1906
|
#
|