aws-sdk-rds 1.154.0 → 1.156.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +52 -37
- data/lib/aws-sdk-rds/db_cluster.rb +3 -3
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +1 -1
- data/lib/aws-sdk-rds/db_instance.rb +10 -10
- data/lib/aws-sdk-rds/db_snapshot.rb +1 -2
- data/lib/aws-sdk-rds/resource.rb +6 -6
- data/lib/aws-sdk-rds/types.rb +52 -36
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5dba65aa86909d37219eea5e309a32867787fa1e3a09a38808b6832784d71074
|
4
|
+
data.tar.gz: ecaf303c9a600d12fbd3dc17c62cb4b0d6b121e653b4b0b53b0a968d2f4e25dc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3af0d6edbfe17f9415fe039294544d0b0dbe59825f4ccabb074fa016defef85f5ab5ef5ddf8ff61796f37fb17c17919c0626dac22f5c05b807d253093ff9b2bb
|
7
|
+
data.tar.gz: e5622ab5ff112e847588008e9976b370bbbd672a16809d4a1dad6f18cc037c762d0c58c8c90a2a734d7c29936fbd02d68949d36dbfd7f04826b349826315ccb1
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.156.0 (2022-09-19)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for Amazon RDS Proxy with SQL Server compatibility.
|
8
|
+
|
9
|
+
1.155.0 (2022-08-26)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Removes support for RDS Custom from DBInstanceClass in ModifyDBInstance
|
13
|
+
|
4
14
|
1.154.0 (2022-08-23)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.156.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -1840,17 +1840,18 @@ module Aws::RDS
|
|
1840
1840
|
#
|
1841
1841
|
# @option params [required, String] :kms_key_id
|
1842
1842
|
# The Amazon Web Services KMS key identifier for an encrypted CEV. A
|
1843
|
-
# symmetric KMS key is required for RDS Custom, but optional
|
1844
|
-
# RDS.
|
1845
|
-
#
|
1846
|
-
# If you have an existing symmetric KMS key in your account,
|
1847
|
-
# it with RDS Custom. No further action is necessary. If you
|
1848
|
-
# already have a symmetric KMS key in your account,
|
1849
|
-
# instructions in [ Creating symmetric KMS
|
1850
|
-
# Services Key Management Service Developer
|
1843
|
+
# symmetric encryption KMS key is required for RDS Custom, but optional
|
1844
|
+
# for Amazon RDS.
|
1845
|
+
#
|
1846
|
+
# If you have an existing symmetric encryption KMS key in your account,
|
1847
|
+
# you can use it with RDS Custom. No further action is necessary. If you
|
1848
|
+
# don't already have a symmetric encryption KMS key in your account,
|
1849
|
+
# follow the instructions in [ Creating a symmetric encryption KMS
|
1850
|
+
# key][1] in the *Amazon Web Services Key Management Service Developer
|
1851
|
+
# Guide*.
|
1851
1852
|
#
|
1852
|
-
# You can choose the same symmetric key when you create a CEV
|
1853
|
-
# instance, or choose different keys.
|
1853
|
+
# You can choose the same symmetric encryption key when you create a CEV
|
1854
|
+
# and a DB instance, or choose different keys.
|
1854
1855
|
#
|
1855
1856
|
#
|
1856
1857
|
#
|
@@ -2582,7 +2583,7 @@ module Aws::RDS
|
|
2582
2583
|
#
|
2583
2584
|
# @option params [String] :db_cluster_instance_class
|
2584
2585
|
# The compute and memory capacity of each DB instance in the Multi-AZ DB
|
2585
|
-
# cluster, for example db.
|
2586
|
+
# cluster, for example db.m6gd.xlarge. Not all DB instance classes are
|
2586
2587
|
# available in all Amazon Web Services Regions, or for all database
|
2587
2588
|
# engines.
|
2588
2589
|
#
|
@@ -3509,8 +3510,8 @@ module Aws::RDS
|
|
3509
3510
|
#
|
3510
3511
|
# * It must contain 1 to 63 alphanumeric characters.
|
3511
3512
|
#
|
3512
|
-
# * It must begin with a letter
|
3513
|
-
#
|
3513
|
+
# * It must begin with a letter. Subsequent characters can be letters,
|
3514
|
+
# underscores, or digits (0 to 9).
|
3514
3515
|
#
|
3515
3516
|
# * It can't be a word reserved by the database engine.
|
3516
3517
|
#
|
@@ -3818,11 +3819,11 @@ module Aws::RDS
|
|
3818
3819
|
#
|
3819
3820
|
# Constraints:
|
3820
3821
|
#
|
3821
|
-
# *
|
3822
|
+
# * It must be 1 to 255 letters, numbers, or hyphens.
|
3822
3823
|
#
|
3823
|
-
# *
|
3824
|
+
# * The first character must be a letter.
|
3824
3825
|
#
|
3825
|
-
# *
|
3826
|
+
# * It can't end with a hyphen or contain two consecutive hyphens.
|
3826
3827
|
#
|
3827
3828
|
# @option params [Integer] :backup_retention_period
|
3828
3829
|
# The number of days for which automated backups are retained. Setting
|
@@ -5700,7 +5701,7 @@ module Aws::RDS
|
|
5700
5701
|
# it interprets network traffic to and from the database. For Aurora
|
5701
5702
|
# MySQL, RDS for MariaDB, and RDS for MySQL databases, specify `MYSQL`.
|
5702
5703
|
# For Aurora PostgreSQL and RDS for PostgreSQL databases, specify
|
5703
|
-
# `POSTGRESQL`.
|
5704
|
+
# `POSTGRESQL`. For RDS for Microsoft SQL Server, specify `SQLSERVER`.
|
5704
5705
|
#
|
5705
5706
|
# @option params [required, Array<Types::UserAuthConfig>] :auth
|
5706
5707
|
# The authorization mechanism that the proxy uses.
|
@@ -5746,14 +5747,14 @@ module Aws::RDS
|
|
5746
5747
|
#
|
5747
5748
|
# resp = client.create_db_proxy({
|
5748
5749
|
# db_proxy_name: "String", # required
|
5749
|
-
# engine_family: "MYSQL", # required, accepts MYSQL, POSTGRESQL
|
5750
|
+
# engine_family: "MYSQL", # required, accepts MYSQL, POSTGRESQL, SQLSERVER
|
5750
5751
|
# auth: [ # required
|
5751
5752
|
# {
|
5752
5753
|
# description: "String",
|
5753
5754
|
# user_name: "String",
|
5754
5755
|
# auth_scheme: "SECRETS", # accepts SECRETS
|
5755
5756
|
# secret_arn: "String",
|
5756
|
-
# iam_auth: "DISABLED", # accepts DISABLED, REQUIRED
|
5757
|
+
# iam_auth: "DISABLED", # accepts DISABLED, REQUIRED, ENABLED
|
5757
5758
|
# },
|
5758
5759
|
# ],
|
5759
5760
|
# role_arn: "String", # required
|
@@ -5786,7 +5787,7 @@ module Aws::RDS
|
|
5786
5787
|
# resp.db_proxy.auth[0].user_name #=> String
|
5787
5788
|
# resp.db_proxy.auth[0].auth_scheme #=> String, one of "SECRETS"
|
5788
5789
|
# resp.db_proxy.auth[0].secret_arn #=> String
|
5789
|
-
# resp.db_proxy.auth[0].iam_auth #=> String, one of "DISABLED", "REQUIRED"
|
5790
|
+
# resp.db_proxy.auth[0].iam_auth #=> String, one of "DISABLED", "REQUIRED", "ENABLED"
|
5790
5791
|
# resp.db_proxy.role_arn #=> String
|
5791
5792
|
# resp.db_proxy.endpoint #=> String
|
5792
5793
|
# resp.db_proxy.require_tls #=> Boolean
|
@@ -5829,7 +5830,9 @@ module Aws::RDS
|
|
5829
5830
|
#
|
5830
5831
|
# @option params [String] :target_role
|
5831
5832
|
# A value that indicates whether the DB proxy endpoint can be used for
|
5832
|
-
# read/write or read-only operations. The default is `READ_WRITE`.
|
5833
|
+
# read/write or read-only operations. The default is `READ_WRITE`. The
|
5834
|
+
# only role that proxies for RDS for Microsoft SQL Server support is
|
5835
|
+
# `READ_WRITE`.
|
5833
5836
|
#
|
5834
5837
|
# @option params [Array<Types::Tag>] :tags
|
5835
5838
|
# A list of tags. For more information, see [Tagging Amazon RDS
|
@@ -7532,7 +7535,7 @@ module Aws::RDS
|
|
7532
7535
|
# resp.db_proxy.auth[0].user_name #=> String
|
7533
7536
|
# resp.db_proxy.auth[0].auth_scheme #=> String, one of "SECRETS"
|
7534
7537
|
# resp.db_proxy.auth[0].secret_arn #=> String
|
7535
|
-
# resp.db_proxy.auth[0].iam_auth #=> String, one of "DISABLED", "REQUIRED"
|
7538
|
+
# resp.db_proxy.auth[0].iam_auth #=> String, one of "DISABLED", "REQUIRED", "ENABLED"
|
7536
7539
|
# resp.db_proxy.role_arn #=> String
|
7537
7540
|
# resp.db_proxy.endpoint #=> String
|
7538
7541
|
# resp.db_proxy.require_tls #=> Boolean
|
@@ -9982,7 +9985,7 @@ module Aws::RDS
|
|
9982
9985
|
# resp.db_proxies[0].auth[0].user_name #=> String
|
9983
9986
|
# resp.db_proxies[0].auth[0].auth_scheme #=> String, one of "SECRETS"
|
9984
9987
|
# resp.db_proxies[0].auth[0].secret_arn #=> String
|
9985
|
-
# resp.db_proxies[0].auth[0].iam_auth #=> String, one of "DISABLED", "REQUIRED"
|
9988
|
+
# resp.db_proxies[0].auth[0].iam_auth #=> String, one of "DISABLED", "REQUIRED", "ENABLED"
|
9986
9989
|
# resp.db_proxies[0].role_arn #=> String
|
9987
9990
|
# resp.db_proxies[0].endpoint #=> String
|
9988
9991
|
# resp.db_proxies[0].require_tls #=> Boolean
|
@@ -12310,8 +12313,20 @@ module Aws::RDS
|
|
12310
12313
|
|
12311
12314
|
# Returns a list of the source Amazon Web Services Regions where the
|
12312
12315
|
# current Amazon Web Services Region can create a read replica, copy a
|
12313
|
-
# DB snapshot from, or replicate automated backups from.
|
12314
|
-
#
|
12316
|
+
# DB snapshot from, or replicate automated backups from.
|
12317
|
+
#
|
12318
|
+
# Use this operation to determine whether cross-Region features are
|
12319
|
+
# supported between other Regions and your current Region. This
|
12320
|
+
# operation supports pagination.
|
12321
|
+
#
|
12322
|
+
# To return information about the Regions that are enabled for your
|
12323
|
+
# account, or all Regions, use the EC2 operation `DescribeRegions`. For
|
12324
|
+
# more information, see [ DescribeRegions][1] in the *Amazon EC2 API
|
12325
|
+
# Reference*.
|
12326
|
+
#
|
12327
|
+
#
|
12328
|
+
#
|
12329
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeRegions.html
|
12315
12330
|
#
|
12316
12331
|
# @option params [String] :region_name
|
12317
12332
|
# The source Amazon Web Services Region name. For example, `us-east-1`.
|
@@ -13698,7 +13713,7 @@ module Aws::RDS
|
|
13698
13713
|
#
|
13699
13714
|
# @option params [String] :db_cluster_instance_class
|
13700
13715
|
# The compute and memory capacity of each DB instance in the Multi-AZ DB
|
13701
|
-
# cluster, for example db.
|
13716
|
+
# cluster, for example db.m6gd.xlarge. Not all DB instance classes are
|
13702
13717
|
# available in all Amazon Web Services Regions, or for all database
|
13703
13718
|
# engines.
|
13704
13719
|
#
|
@@ -14399,21 +14414,21 @@ module Aws::RDS
|
|
14399
14414
|
# db.m4.large. Not all DB instance classes are available in all Amazon
|
14400
14415
|
# Web Services Regions, or for all database engines. For the full list
|
14401
14416
|
# of DB instance classes, and availability for your engine, see [DB
|
14402
|
-
#
|
14403
|
-
#
|
14404
|
-
# instance class support for RDS Custom for SQL Server][3].
|
14417
|
+
# instance classes][1] in the *Amazon RDS User Guide* or [Aurora DB
|
14418
|
+
# instance classes][2] in the *Amazon Aurora User Guide*.
|
14405
14419
|
#
|
14406
14420
|
# If you modify the DB instance class, an outage occurs during the
|
14407
14421
|
# change. The change is applied during the next maintenance window,
|
14408
14422
|
# unless `ApplyImmediately` is enabled for this request.
|
14409
14423
|
#
|
14424
|
+
# This setting doesn't apply to RDS Custom for Oracle.
|
14425
|
+
#
|
14410
14426
|
# Default: Uses existing setting
|
14411
14427
|
#
|
14412
14428
|
#
|
14413
14429
|
#
|
14414
14430
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
14415
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/
|
14416
|
-
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits-MS.html#custom-reqs-limits.instancesMS
|
14431
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.DBInstanceClass.html
|
14417
14432
|
#
|
14418
14433
|
# @option params [String] :db_subnet_group_name
|
14419
14434
|
# The new DB subnet group for the DB instance. You can use this
|
@@ -15608,7 +15623,7 @@ module Aws::RDS
|
|
15608
15623
|
# user_name: "String",
|
15609
15624
|
# auth_scheme: "SECRETS", # accepts SECRETS
|
15610
15625
|
# secret_arn: "String",
|
15611
|
-
# iam_auth: "DISABLED", # accepts DISABLED, REQUIRED
|
15626
|
+
# iam_auth: "DISABLED", # accepts DISABLED, REQUIRED, ENABLED
|
15612
15627
|
# },
|
15613
15628
|
# ],
|
15614
15629
|
# require_tls: false,
|
@@ -15634,7 +15649,7 @@ module Aws::RDS
|
|
15634
15649
|
# resp.db_proxy.auth[0].user_name #=> String
|
15635
15650
|
# resp.db_proxy.auth[0].auth_scheme #=> String, one of "SECRETS"
|
15636
15651
|
# resp.db_proxy.auth[0].secret_arn #=> String
|
15637
|
-
# resp.db_proxy.auth[0].iam_auth #=> String, one of "DISABLED", "REQUIRED"
|
15652
|
+
# resp.db_proxy.auth[0].iam_auth #=> String, one of "DISABLED", "REQUIRED", "ENABLED"
|
15638
15653
|
# resp.db_proxy.role_arn #=> String
|
15639
15654
|
# resp.db_proxy.endpoint #=> String
|
15640
15655
|
# resp.db_proxy.require_tls #=> Boolean
|
@@ -18620,7 +18635,7 @@ module Aws::RDS
|
|
18620
18635
|
#
|
18621
18636
|
# @option params [String] :db_cluster_instance_class
|
18622
18637
|
# The compute and memory capacity of the each DB instance in the
|
18623
|
-
# Multi-AZ DB cluster, for example db.
|
18638
|
+
# Multi-AZ DB cluster, for example db.m6gd.xlarge. Not all DB instance
|
18624
18639
|
# classes are available in all Amazon Web Services Regions, or for all
|
18625
18640
|
# database engines.
|
18626
18641
|
#
|
@@ -19225,7 +19240,7 @@ module Aws::RDS
|
|
19225
19240
|
#
|
19226
19241
|
# @option params [String] :db_cluster_instance_class
|
19227
19242
|
# The compute and memory capacity of the each DB instance in the
|
19228
|
-
# Multi-AZ DB cluster, for example db.
|
19243
|
+
# Multi-AZ DB cluster, for example db.m6gd.xlarge. Not all DB instance
|
19229
19244
|
# classes are available in all Amazon Web Services Regions, or for all
|
19230
19245
|
# database engines.
|
19231
19246
|
#
|
@@ -22824,7 +22839,7 @@ module Aws::RDS
|
|
22824
22839
|
|
22825
22840
|
# Switches over an Oracle standby database in an Oracle Data Guard
|
22826
22841
|
# environment, making it the new primary database. Issue this command in
|
22827
|
-
# the
|
22842
|
+
# the Region that hosts the current standby database.
|
22828
22843
|
#
|
22829
22844
|
# @option params [required, String] :db_instance_identifier
|
22830
22845
|
# The DB instance identifier of the current standby database. This value
|
@@ -23012,7 +23027,7 @@ module Aws::RDS
|
|
23012
23027
|
params: params,
|
23013
23028
|
config: config)
|
23014
23029
|
context[:gem_name] = 'aws-sdk-rds'
|
23015
|
-
context[:gem_version] = '1.
|
23030
|
+
context[:gem_version] = '1.156.0'
|
23016
23031
|
Seahorse::Client::Request.new(handlers, context)
|
23017
23032
|
end
|
23018
23033
|
|
@@ -1350,7 +1350,7 @@ module Aws::RDS
|
|
1350
1350
|
# Valid for: Aurora DB clusters only
|
1351
1351
|
# @option options [String] :db_cluster_instance_class
|
1352
1352
|
# The compute and memory capacity of each DB instance in the Multi-AZ DB
|
1353
|
-
# cluster, for example db.
|
1353
|
+
# cluster, for example db.m6gd.xlarge. Not all DB instance classes are
|
1354
1354
|
# available in all Amazon Web Services Regions, or for all database
|
1355
1355
|
# engines.
|
1356
1356
|
#
|
@@ -2050,7 +2050,7 @@ module Aws::RDS
|
|
2050
2050
|
# Valid for: Aurora DB clusters only
|
2051
2051
|
# @option options [String] :db_cluster_instance_class
|
2052
2052
|
# The compute and memory capacity of each DB instance in the Multi-AZ DB
|
2053
|
-
# cluster, for example db.
|
2053
|
+
# cluster, for example db.m6gd.xlarge. Not all DB instance classes are
|
2054
2054
|
# available in all Amazon Web Services Regions, or for all database
|
2055
2055
|
# engines.
|
2056
2056
|
#
|
@@ -2513,7 +2513,7 @@ module Aws::RDS
|
|
2513
2513
|
# Valid for: Aurora DB clusters only
|
2514
2514
|
# @option options [String] :db_cluster_instance_class
|
2515
2515
|
# The compute and memory capacity of the each DB instance in the
|
2516
|
-
# Multi-AZ DB cluster, for example db.
|
2516
|
+
# Multi-AZ DB cluster, for example db.m6gd.xlarge. Not all DB instance
|
2517
2517
|
# classes are available in all Amazon Web Services Regions, or for all
|
2518
2518
|
# database engines.
|
2519
2519
|
#
|
@@ -825,7 +825,7 @@ module Aws::RDS
|
|
825
825
|
# Valid for: Aurora DB clusters only
|
826
826
|
# @option options [String] :db_cluster_instance_class
|
827
827
|
# The compute and memory capacity of the each DB instance in the
|
828
|
-
# Multi-AZ DB cluster, for example db.
|
828
|
+
# Multi-AZ DB cluster, for example db.m6gd.xlarge. Not all DB instance
|
829
829
|
# classes are available in all Amazon Web Services Regions, or for all
|
830
830
|
# database engines.
|
831
831
|
#
|
@@ -1034,8 +1034,8 @@ module Aws::RDS
|
|
1034
1034
|
#
|
1035
1035
|
# * It must contain 1 to 63 alphanumeric characters.
|
1036
1036
|
#
|
1037
|
-
# * It must begin with a letter
|
1038
|
-
#
|
1037
|
+
# * It must begin with a letter. Subsequent characters can be letters,
|
1038
|
+
# underscores, or digits (0 to 9).
|
1039
1039
|
#
|
1040
1040
|
# * It can't be a word reserved by the database engine.
|
1041
1041
|
# @option options [Integer] :allocated_storage
|
@@ -1318,11 +1318,11 @@ module Aws::RDS
|
|
1318
1318
|
#
|
1319
1319
|
# Constraints:
|
1320
1320
|
#
|
1321
|
-
# *
|
1321
|
+
# * It must be 1 to 255 letters, numbers, or hyphens.
|
1322
1322
|
#
|
1323
|
-
# *
|
1323
|
+
# * The first character must be a letter.
|
1324
1324
|
#
|
1325
|
-
# *
|
1325
|
+
# * It can't end with a hyphen or contain two consecutive hyphens.
|
1326
1326
|
# @option options [Integer] :backup_retention_period
|
1327
1327
|
# The number of days for which automated backups are retained. Setting
|
1328
1328
|
# this parameter to a positive number enables backups. Setting this
|
@@ -2677,21 +2677,21 @@ module Aws::RDS
|
|
2677
2677
|
# db.m4.large. Not all DB instance classes are available in all Amazon
|
2678
2678
|
# Web Services Regions, or for all database engines. For the full list
|
2679
2679
|
# of DB instance classes, and availability for your engine, see [DB
|
2680
|
-
#
|
2681
|
-
#
|
2682
|
-
# instance class support for RDS Custom for SQL Server][3].
|
2680
|
+
# instance classes][1] in the *Amazon RDS User Guide* or [Aurora DB
|
2681
|
+
# instance classes][2] in the *Amazon Aurora User Guide*.
|
2683
2682
|
#
|
2684
2683
|
# If you modify the DB instance class, an outage occurs during the
|
2685
2684
|
# change. The change is applied during the next maintenance window,
|
2686
2685
|
# unless `ApplyImmediately` is enabled for this request.
|
2687
2686
|
#
|
2687
|
+
# This setting doesn't apply to RDS Custom for Oracle.
|
2688
|
+
#
|
2688
2689
|
# Default: Uses existing setting
|
2689
2690
|
#
|
2690
2691
|
#
|
2691
2692
|
#
|
2692
2693
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
2693
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/
|
2694
|
-
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits-MS.html#custom-reqs-limits.instancesMS
|
2694
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.DBInstanceClass.html
|
2695
2695
|
# @option options [String] :db_subnet_group_name
|
2696
2696
|
# The new DB subnet group for the DB instance. You can use this
|
2697
2697
|
# parameter to move your DB instance to a different VPC. If your DB
|
@@ -246,8 +246,7 @@ module Aws::RDS
|
|
246
246
|
# If you back up a read replica, you can determine the replica lag by
|
247
247
|
# comparing SnapshotDatabaseTime with originalSnapshotCreateTime. For
|
248
248
|
# example, if originalSnapshotCreateTime is two hours later than
|
249
|
-
# SnapshotDatabaseTime, then the replica lag is two hours.
|
250
|
-
# REVIEWERS 7/27: Switchover
|
249
|
+
# SnapshotDatabaseTime, then the replica lag is two hours.
|
251
250
|
# @return [Time]
|
252
251
|
def snapshot_database_time
|
253
252
|
data[:snapshot_database_time]
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -624,7 +624,7 @@ module Aws::RDS
|
|
624
624
|
# Valid for: Aurora DB clusters only
|
625
625
|
# @option options [String] :db_cluster_instance_class
|
626
626
|
# The compute and memory capacity of each DB instance in the Multi-AZ DB
|
627
|
-
# cluster, for example db.
|
627
|
+
# cluster, for example db.m6gd.xlarge. Not all DB instance classes are
|
628
628
|
# available in all Amazon Web Services Regions, or for all database
|
629
629
|
# engines.
|
630
630
|
#
|
@@ -1105,8 +1105,8 @@ module Aws::RDS
|
|
1105
1105
|
#
|
1106
1106
|
# * It must contain 1 to 63 alphanumeric characters.
|
1107
1107
|
#
|
1108
|
-
# * It must begin with a letter
|
1109
|
-
#
|
1108
|
+
# * It must begin with a letter. Subsequent characters can be letters,
|
1109
|
+
# underscores, or digits (0 to 9).
|
1110
1110
|
#
|
1111
1111
|
# * It can't be a word reserved by the database engine.
|
1112
1112
|
# @option options [required, String] :db_instance_identifier
|
@@ -1402,11 +1402,11 @@ module Aws::RDS
|
|
1402
1402
|
#
|
1403
1403
|
# Constraints:
|
1404
1404
|
#
|
1405
|
-
# *
|
1405
|
+
# * It must be 1 to 255 letters, numbers, or hyphens.
|
1406
1406
|
#
|
1407
|
-
# *
|
1407
|
+
# * The first character must be a letter.
|
1408
1408
|
#
|
1409
|
-
# *
|
1409
|
+
# * It can't end with a hyphen or contain two consecutive hyphens.
|
1410
1410
|
# @option options [Integer] :backup_retention_period
|
1411
1411
|
# The number of days for which automated backups are retained. Setting
|
1412
1412
|
# this parameter to a positive number enables backups. Setting this
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -820,9 +820,10 @@ module Aws::RDS
|
|
820
820
|
# `max_connections` setting for the RDS DB instance or Aurora DB
|
821
821
|
# cluster used by the target group.
|
822
822
|
#
|
823
|
-
# Default: 100
|
823
|
+
# Default: 10 for RDS for Microsoft SQL Server, and 100 for all other
|
824
|
+
# engines
|
824
825
|
#
|
825
|
-
# Constraints: between 1 and 100
|
826
|
+
# Constraints: Must be between 1 and 100.
|
826
827
|
# @return [Integer]
|
827
828
|
#
|
828
829
|
# @!attribute [rw] max_idle_connections_percent
|
@@ -834,9 +835,15 @@ module Aws::RDS
|
|
834
835
|
# value causes the proxy to close more idle connections and return
|
835
836
|
# them to the database.
|
836
837
|
#
|
837
|
-
# Default:
|
838
|
+
# Default: The default value is half of the value of
|
839
|
+
# `MaxConnectionsPercent`. For example, if `MaxConnectionsPercent` is
|
840
|
+
# 80, then the default value of `MaxIdleConnectionsPercent` is 40. If
|
841
|
+
# the value of `MaxConnectionsPercent` isn't specified, then for SQL
|
842
|
+
# Server, `MaxIdleConnectionsPercent` is 5, and for all other engines,
|
843
|
+
# the default is 50.
|
838
844
|
#
|
839
|
-
# Constraints: between 0 and
|
845
|
+
# Constraints: Must be between 0 and the value of
|
846
|
+
# `MaxConnectionsPercent`.
|
840
847
|
# @return [Integer]
|
841
848
|
#
|
842
849
|
# @!attribute [rw] connection_borrow_timeout
|
@@ -915,7 +922,8 @@ module Aws::RDS
|
|
915
922
|
# normally cause all later statements in a session using a proxy to be
|
916
923
|
# pinned to the same underlying database connection. Including an item
|
917
924
|
# in the list exempts that class of SQL operations from the pinning
|
918
|
-
# behavior.
|
925
|
+
# behavior. This setting is only supported for MySQL engine family
|
926
|
+
# databases. Currently, the only allowed value is
|
919
927
|
# `EXCLUDE_VARIABLE_SETS`.
|
920
928
|
# @return [Array<String>]
|
921
929
|
#
|
@@ -1666,17 +1674,18 @@ module Aws::RDS
|
|
1666
1674
|
#
|
1667
1675
|
# @!attribute [rw] kms_key_id
|
1668
1676
|
# The Amazon Web Services KMS key identifier for an encrypted CEV. A
|
1669
|
-
# symmetric KMS key is required for RDS Custom, but
|
1670
|
-
# Amazon RDS.
|
1677
|
+
# symmetric encryption KMS key is required for RDS Custom, but
|
1678
|
+
# optional for Amazon RDS.
|
1671
1679
|
#
|
1672
|
-
# If you have an existing symmetric KMS key in your
|
1673
|
-
# use it with RDS Custom. No further action is
|
1674
|
-
# don't already have a symmetric KMS key
|
1675
|
-
#
|
1676
|
-
# Services Key Management
|
1680
|
+
# If you have an existing symmetric encryption KMS key in your
|
1681
|
+
# account, you can use it with RDS Custom. No further action is
|
1682
|
+
# necessary. If you don't already have a symmetric encryption KMS key
|
1683
|
+
# in your account, follow the instructions in [ Creating a symmetric
|
1684
|
+
# encryption KMS key][1] in the *Amazon Web Services Key Management
|
1685
|
+
# Service Developer Guide*.
|
1677
1686
|
#
|
1678
|
-
# You can choose the same symmetric key when you create a
|
1679
|
-
# instance, or choose different keys.
|
1687
|
+
# You can choose the same symmetric encryption key when you create a
|
1688
|
+
# CEV and a DB instance, or choose different keys.
|
1680
1689
|
#
|
1681
1690
|
#
|
1682
1691
|
#
|
@@ -2468,7 +2477,7 @@ module Aws::RDS
|
|
2468
2477
|
#
|
2469
2478
|
# @!attribute [rw] db_cluster_instance_class
|
2470
2479
|
# The compute and memory capacity of each DB instance in the Multi-AZ
|
2471
|
-
# DB cluster, for example db.
|
2480
|
+
# DB cluster, for example db.m6gd.xlarge. Not all DB instance classes
|
2472
2481
|
# are available in all Amazon Web Services Regions, or for all
|
2473
2482
|
# database engines.
|
2474
2483
|
#
|
@@ -3159,8 +3168,8 @@ module Aws::RDS
|
|
3159
3168
|
#
|
3160
3169
|
# * It must contain 1 to 63 alphanumeric characters.
|
3161
3170
|
#
|
3162
|
-
# * It must begin with a letter
|
3163
|
-
#
|
3171
|
+
# * It must begin with a letter. Subsequent characters can be letters,
|
3172
|
+
# underscores, or digits (0 to 9).
|
3164
3173
|
#
|
3165
3174
|
# * It can't be a word reserved by the database engine.
|
3166
3175
|
# @return [String]
|
@@ -3481,11 +3490,11 @@ module Aws::RDS
|
|
3481
3490
|
#
|
3482
3491
|
# Constraints:
|
3483
3492
|
#
|
3484
|
-
# *
|
3493
|
+
# * It must be 1 to 255 letters, numbers, or hyphens.
|
3485
3494
|
#
|
3486
|
-
# *
|
3495
|
+
# * The first character must be a letter.
|
3487
3496
|
#
|
3488
|
-
# *
|
3497
|
+
# * It can't end with a hyphen or contain two consecutive hyphens.
|
3489
3498
|
# @return [String]
|
3490
3499
|
#
|
3491
3500
|
# @!attribute [rw] backup_retention_period
|
@@ -5138,7 +5147,9 @@ module Aws::RDS
|
|
5138
5147
|
#
|
5139
5148
|
# @!attribute [rw] target_role
|
5140
5149
|
# A value that indicates whether the DB proxy endpoint can be used for
|
5141
|
-
# read/write or read-only operations. The default is `READ_WRITE`.
|
5150
|
+
# read/write or read-only operations. The default is `READ_WRITE`. The
|
5151
|
+
# only role that proxies for RDS for Microsoft SQL Server support is
|
5152
|
+
# `READ_WRITE`.
|
5142
5153
|
# @return [String]
|
5143
5154
|
#
|
5144
5155
|
# @!attribute [rw] tags
|
@@ -5183,14 +5194,14 @@ module Aws::RDS
|
|
5183
5194
|
#
|
5184
5195
|
# {
|
5185
5196
|
# db_proxy_name: "String", # required
|
5186
|
-
# engine_family: "MYSQL", # required, accepts MYSQL, POSTGRESQL
|
5197
|
+
# engine_family: "MYSQL", # required, accepts MYSQL, POSTGRESQL, SQLSERVER
|
5187
5198
|
# auth: [ # required
|
5188
5199
|
# {
|
5189
5200
|
# description: "String",
|
5190
5201
|
# user_name: "String",
|
5191
5202
|
# auth_scheme: "SECRETS", # accepts SECRETS
|
5192
5203
|
# secret_arn: "String",
|
5193
|
-
# iam_auth: "DISABLED", # accepts DISABLED, REQUIRED
|
5204
|
+
# iam_auth: "DISABLED", # accepts DISABLED, REQUIRED, ENABLED
|
5194
5205
|
# },
|
5195
5206
|
# ],
|
5196
5207
|
# role_arn: "String", # required
|
@@ -5221,7 +5232,8 @@ module Aws::RDS
|
|
5221
5232
|
# it interprets network traffic to and from the database. For Aurora
|
5222
5233
|
# MySQL, RDS for MariaDB, and RDS for MySQL databases, specify
|
5223
5234
|
# `MYSQL`. For Aurora PostgreSQL and RDS for PostgreSQL databases,
|
5224
|
-
# specify `POSTGRESQL`.
|
5235
|
+
# specify `POSTGRESQL`. For RDS for Microsoft SQL Server, specify
|
5236
|
+
# `SQLSERVER`.
|
5225
5237
|
# @return [String]
|
5226
5238
|
#
|
5227
5239
|
# @!attribute [rw] auth
|
@@ -8555,6 +8567,7 @@ module Aws::RDS
|
|
8555
8567
|
# it interprets network traffic to and from the database. `MYSQL`
|
8556
8568
|
# supports Aurora MySQL, RDS for MariaDB, and RDS for MySQL databases.
|
8557
8569
|
# `POSTGRESQL` supports Aurora PostgreSQL and RDS for PostgreSQL
|
8570
|
+
# databases. `SQLSERVER` supports RDS for Microsoft SQL Server
|
8558
8571
|
# databases.
|
8559
8572
|
# @return [String]
|
8560
8573
|
#
|
@@ -9204,8 +9217,7 @@ module Aws::RDS
|
|
9204
9217
|
# If you back up a read replica, you can determine the replica lag by
|
9205
9218
|
# comparing SnapshotDatabaseTime with originalSnapshotCreateTime. For
|
9206
9219
|
# example, if originalSnapshotCreateTime is two hours later than
|
9207
|
-
# SnapshotDatabaseTime, then the replica lag is two hours.
|
9208
|
-
# REVIEWERS 7/27: Switchover
|
9220
|
+
# SnapshotDatabaseTime, then the replica lag is two hours.
|
9209
9221
|
# @return [Time]
|
9210
9222
|
#
|
9211
9223
|
# @!attribute [rw] snapshot_target
|
@@ -15261,7 +15273,7 @@ module Aws::RDS
|
|
15261
15273
|
#
|
15262
15274
|
# @!attribute [rw] db_cluster_instance_class
|
15263
15275
|
# The compute and memory capacity of each DB instance in the Multi-AZ
|
15264
|
-
# DB cluster, for example db.
|
15276
|
+
# DB cluster, for example db.m6gd.xlarge. Not all DB instance classes
|
15265
15277
|
# are available in all Amazon Web Services Regions, or for all
|
15266
15278
|
# database engines.
|
15267
15279
|
#
|
@@ -15756,21 +15768,21 @@ module Aws::RDS
|
|
15756
15768
|
# db.m4.large. Not all DB instance classes are available in all Amazon
|
15757
15769
|
# Web Services Regions, or for all database engines. For the full list
|
15758
15770
|
# of DB instance classes, and availability for your engine, see [DB
|
15759
|
-
#
|
15760
|
-
#
|
15761
|
-
# instance class support for RDS Custom for SQL Server][3].
|
15771
|
+
# instance classes][1] in the *Amazon RDS User Guide* or [Aurora DB
|
15772
|
+
# instance classes][2] in the *Amazon Aurora User Guide*.
|
15762
15773
|
#
|
15763
15774
|
# If you modify the DB instance class, an outage occurs during the
|
15764
15775
|
# change. The change is applied during the next maintenance window,
|
15765
15776
|
# unless `ApplyImmediately` is enabled for this request.
|
15766
15777
|
#
|
15778
|
+
# This setting doesn't apply to RDS Custom for Oracle.
|
15779
|
+
#
|
15767
15780
|
# Default: Uses existing setting
|
15768
15781
|
#
|
15769
15782
|
#
|
15770
15783
|
#
|
15771
15784
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
15772
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/
|
15773
|
-
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits-MS.html#custom-reqs-limits.instancesMS
|
15785
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.DBInstanceClass.html
|
15774
15786
|
# @return [String]
|
15775
15787
|
#
|
15776
15788
|
# @!attribute [rw] db_subnet_group_name
|
@@ -16821,7 +16833,7 @@ module Aws::RDS
|
|
16821
16833
|
# user_name: "String",
|
16822
16834
|
# auth_scheme: "SECRETS", # accepts SECRETS
|
16823
16835
|
# secret_arn: "String",
|
16824
|
-
# iam_auth: "DISABLED", # accepts DISABLED, REQUIRED
|
16836
|
+
# iam_auth: "DISABLED", # accepts DISABLED, REQUIRED, ENABLED
|
16825
16837
|
# },
|
16826
16838
|
# ],
|
16827
16839
|
# require_tls: false,
|
@@ -20467,7 +20479,7 @@ module Aws::RDS
|
|
20467
20479
|
#
|
20468
20480
|
# @!attribute [rw] db_cluster_instance_class
|
20469
20481
|
# The compute and memory capacity of the each DB instance in the
|
20470
|
-
# Multi-AZ DB cluster, for example db.
|
20482
|
+
# Multi-AZ DB cluster, for example db.m6gd.xlarge. Not all DB instance
|
20471
20483
|
# classes are available in all Amazon Web Services Regions, or for all
|
20472
20484
|
# database engines.
|
20473
20485
|
#
|
@@ -21010,7 +21022,7 @@ module Aws::RDS
|
|
21010
21022
|
#
|
21011
21023
|
# @!attribute [rw] db_cluster_instance_class
|
21012
21024
|
# The compute and memory capacity of the each DB instance in the
|
21013
|
-
# Multi-AZ DB cluster, for example db.
|
21025
|
+
# Multi-AZ DB cluster, for example db.m6gd.xlarge. Not all DB instance
|
21014
21026
|
# classes are available in all Amazon Web Services Regions, or for all
|
21015
21027
|
# database engines.
|
21016
21028
|
#
|
@@ -24230,7 +24242,7 @@ module Aws::RDS
|
|
24230
24242
|
# user_name: "String",
|
24231
24243
|
# auth_scheme: "SECRETS", # accepts SECRETS
|
24232
24244
|
# secret_arn: "String",
|
24233
|
-
# iam_auth: "DISABLED", # accepts DISABLED, REQUIRED
|
24245
|
+
# iam_auth: "DISABLED", # accepts DISABLED, REQUIRED, ENABLED
|
24234
24246
|
# }
|
24235
24247
|
#
|
24236
24248
|
# @!attribute [rw] description
|
@@ -24256,6 +24268,8 @@ module Aws::RDS
|
|
24256
24268
|
# @!attribute [rw] iam_auth
|
24257
24269
|
# Whether to require or disallow Amazon Web Services Identity and
|
24258
24270
|
# Access Management (IAM) authentication for connections to the proxy.
|
24271
|
+
# The `ENABLED` value is valid only for proxies with RDS for Microsoft
|
24272
|
+
# SQL Server.
|
24259
24273
|
# @return [String]
|
24260
24274
|
#
|
24261
24275
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/UserAuthConfig AWS API Documentation
|
@@ -24296,6 +24310,8 @@ module Aws::RDS
|
|
24296
24310
|
# @!attribute [rw] iam_auth
|
24297
24311
|
# Whether to require or disallow Amazon Web Services Identity and
|
24298
24312
|
# Access Management (IAM) authentication for connections to the proxy.
|
24313
|
+
# The `ENABLED` value is valid only for proxies with RDS for Microsoft
|
24314
|
+
# SQL Server.
|
24299
24315
|
# @return [String]
|
24300
24316
|
#
|
24301
24317
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/UserAuthConfigInfo AWS API Documentation
|
data/lib/aws-sdk-rds.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-rds
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.156.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-09-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|