aws-sdk-rds 1.185.0 → 1.187.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 +143 -110
- data/lib/aws-sdk-rds/client_api.rb +3 -0
- data/lib/aws-sdk-rds/db_instance.rb +87 -76
- data/lib/aws-sdk-rds/db_snapshot.rb +8 -0
- data/lib/aws-sdk-rds/resource.rb +76 -64
- data/lib/aws-sdk-rds/types.rb +155 -135
- 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: e83c7f86f71a70525f984d1bd753680710f9a638a9e7721a657ac72d0dadbecb
|
|
4
|
+
data.tar.gz: 1c60c4820f48876ae6ccf1c40b778c9c6c723840c454c7f31597c5c95c95dde3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cb1c2ccecf11150fbc26d47308b3f08d96ef52c4d95d683b3dd2212b82fd4c2592818a33e2b7ff3012a6019d451492544dcd108b4b1f1d676655e6dae3491ec5
|
|
7
|
+
data.tar.gz: d31accb17d1413caf37c78279fb1fb511aa49aaad2f426f502c8812e129533d2ff3852d2cc14b5f32f78b714128e1cc99d35fae771387e1a3eabf95ad9729d3f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.187.0 (2023-07-25)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release adds support for monitoring storage optimization progress on the DescribeDBInstances API.
|
|
8
|
+
|
|
9
|
+
1.186.0 (2023-07-21)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Adds support for the DBSystemID parameter of CreateDBInstance to RDS Custom for Oracle.
|
|
13
|
+
|
|
4
14
|
1.185.0 (2023-07-11)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.187.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
|
@@ -1820,6 +1820,7 @@ module Aws::RDS
|
|
|
1820
1820
|
# resp.db_snapshot.snapshot_database_time #=> Time
|
|
1821
1821
|
# resp.db_snapshot.snapshot_target #=> String
|
|
1822
1822
|
# resp.db_snapshot.storage_throughput #=> Integer
|
|
1823
|
+
# resp.db_snapshot.db_system_id #=> String
|
|
1823
1824
|
#
|
|
1824
1825
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBSnapshot AWS API Documentation
|
|
1825
1826
|
#
|
|
@@ -4008,116 +4009,120 @@ module Aws::RDS
|
|
|
4008
4009
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.CreateInstance.html
|
|
4009
4010
|
#
|
|
4010
4011
|
# @option params [String] :db_name
|
|
4011
|
-
# The meaning of this parameter differs
|
|
4012
|
-
#
|
|
4012
|
+
# The meaning of this parameter differs according to the database engine
|
|
4013
|
+
# you use.
|
|
4013
4014
|
#
|
|
4014
|
-
#
|
|
4015
|
-
#
|
|
4016
|
-
# : The name of the database to create when the primary DB instance of
|
|
4017
|
-
# the Aurora MySQL DB cluster is created. If you don't specify a
|
|
4018
|
-
# value, Amazon RDS doesn't create a database in the DB cluster.
|
|
4015
|
+
# **MySQL**
|
|
4019
4016
|
#
|
|
4020
|
-
#
|
|
4017
|
+
# The name of the database to create when the DB instance is created. If
|
|
4018
|
+
# this parameter isn't specified, no database is created in the DB
|
|
4019
|
+
# instance.
|
|
4021
4020
|
#
|
|
4022
|
-
#
|
|
4021
|
+
# Constraints:
|
|
4023
4022
|
#
|
|
4024
|
-
#
|
|
4023
|
+
# * Must contain 1 to 64 letters or numbers.
|
|
4025
4024
|
#
|
|
4026
|
-
#
|
|
4025
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
|
4026
|
+
# underscores, or digits (0-9).
|
|
4027
4027
|
#
|
|
4028
|
-
#
|
|
4029
|
-
# the Aurora PostgreSQL DB cluster is created.
|
|
4028
|
+
# * Can't be a word reserved by the specified database engine
|
|
4030
4029
|
#
|
|
4031
|
-
#
|
|
4030
|
+
# **MariaDB**
|
|
4032
4031
|
#
|
|
4033
|
-
#
|
|
4032
|
+
# The name of the database to create when the DB instance is created. If
|
|
4033
|
+
# this parameter isn't specified, no database is created in the DB
|
|
4034
|
+
# instance.
|
|
4034
4035
|
#
|
|
4035
|
-
#
|
|
4036
|
+
# Constraints:
|
|
4036
4037
|
#
|
|
4037
|
-
#
|
|
4038
|
-
# underscores, or digits (0 to 9).
|
|
4038
|
+
# * Must contain 1 to 64 letters or numbers.
|
|
4039
4039
|
#
|
|
4040
|
-
#
|
|
4040
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
|
4041
|
+
# underscores, or digits (0-9).
|
|
4041
4042
|
#
|
|
4042
|
-
#
|
|
4043
|
+
# * Can't be a word reserved by the specified database engine
|
|
4043
4044
|
#
|
|
4044
|
-
#
|
|
4045
|
-
#
|
|
4046
|
-
# Default: `ORCL`
|
|
4045
|
+
# **PostgreSQL**
|
|
4047
4046
|
#
|
|
4048
|
-
#
|
|
4047
|
+
# The name of the database to create when the DB instance is created. If
|
|
4048
|
+
# this parameter isn't specified, a database named `postgres` is
|
|
4049
|
+
# created in the DB instance.
|
|
4049
4050
|
#
|
|
4050
|
-
#
|
|
4051
|
+
# Constraints:
|
|
4051
4052
|
#
|
|
4052
|
-
#
|
|
4053
|
+
# * Must contain 1 to 63 letters, numbers, or underscores.
|
|
4053
4054
|
#
|
|
4054
|
-
#
|
|
4055
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
|
4056
|
+
# underscores, or digits (0-9).
|
|
4055
4057
|
#
|
|
4056
|
-
#
|
|
4058
|
+
# * Can't be a word reserved by the specified database engine
|
|
4057
4059
|
#
|
|
4058
|
-
#
|
|
4060
|
+
# **Oracle**
|
|
4059
4061
|
#
|
|
4060
|
-
#
|
|
4062
|
+
# The Oracle System ID (SID) of the created DB instance. If you don't
|
|
4063
|
+
# specify a value, the default value is `ORCL`. You can't specify the
|
|
4064
|
+
# string `null`, or any other reserved word, for `DBName`.
|
|
4061
4065
|
#
|
|
4062
|
-
# :
|
|
4063
|
-
# If you don't specify a value, Amazon RDS doesn't create a database
|
|
4064
|
-
# in the DB instance.
|
|
4066
|
+
# Default: `ORCL`
|
|
4065
4067
|
#
|
|
4066
|
-
#
|
|
4068
|
+
# Constraints:
|
|
4067
4069
|
#
|
|
4068
|
-
#
|
|
4070
|
+
# * Can't be longer than 8 characters
|
|
4069
4071
|
#
|
|
4070
|
-
#
|
|
4071
|
-
# underscores, or digits (0-9).
|
|
4072
|
+
# ^
|
|
4072
4073
|
#
|
|
4073
|
-
#
|
|
4074
|
+
# **Amazon RDS Custom for Oracle**
|
|
4074
4075
|
#
|
|
4075
|
-
# RDS
|
|
4076
|
+
# The Oracle System ID (SID) of the created RDS Custom DB instance. If
|
|
4077
|
+
# you don't specify a value, the default value is `ORCL` for non-CDBs
|
|
4078
|
+
# and `RDSCDB` for CDBs.
|
|
4076
4079
|
#
|
|
4077
|
-
# :
|
|
4078
|
-
# If you don't specify a value, Amazon RDS doesn't create a database
|
|
4079
|
-
# in the DB instance.
|
|
4080
|
+
# Default: `ORCL`
|
|
4080
4081
|
#
|
|
4081
|
-
#
|
|
4082
|
+
# Constraints:
|
|
4082
4083
|
#
|
|
4083
|
-
#
|
|
4084
|
+
# * It must contain 1 to 8 alphanumeric characters.
|
|
4084
4085
|
#
|
|
4085
|
-
#
|
|
4086
|
-
# underscores, or digits (0-9).
|
|
4086
|
+
# * It must contain a letter.
|
|
4087
4087
|
#
|
|
4088
|
-
#
|
|
4088
|
+
# * It can't be a word reserved by the database engine.
|
|
4089
4089
|
#
|
|
4090
|
-
# RDS for
|
|
4090
|
+
# **Amazon RDS Custom for SQL Server**
|
|
4091
4091
|
#
|
|
4092
|
-
#
|
|
4092
|
+
# Not applicable. Must be null.
|
|
4093
4093
|
#
|
|
4094
|
-
#
|
|
4094
|
+
# **SQL Server**
|
|
4095
4095
|
#
|
|
4096
|
-
#
|
|
4096
|
+
# Not applicable. Must be null.
|
|
4097
4097
|
#
|
|
4098
|
-
#
|
|
4098
|
+
# **Amazon Aurora MySQL**
|
|
4099
4099
|
#
|
|
4100
|
-
#
|
|
4101
|
-
#
|
|
4100
|
+
# The name of the database to create when the primary DB instance of the
|
|
4101
|
+
# Aurora MySQL DB cluster is created. If this parameter isn't specified
|
|
4102
|
+
# for an Aurora MySQL DB cluster, no database is created in the DB
|
|
4103
|
+
# cluster.
|
|
4102
4104
|
#
|
|
4103
|
-
#
|
|
4105
|
+
# Constraints:
|
|
4104
4106
|
#
|
|
4105
|
-
#
|
|
4107
|
+
# * It must contain 1 to 64 alphanumeric characters.
|
|
4106
4108
|
#
|
|
4107
|
-
#
|
|
4109
|
+
# * It can't be a word reserved by the database engine.
|
|
4108
4110
|
#
|
|
4109
|
-
#
|
|
4111
|
+
# **Amazon Aurora PostgreSQL**
|
|
4110
4112
|
#
|
|
4111
|
-
#
|
|
4113
|
+
# The name of the database to create when the primary DB instance of the
|
|
4114
|
+
# Aurora PostgreSQL DB cluster is created. If this parameter isn't
|
|
4115
|
+
# specified for an Aurora PostgreSQL DB cluster, a database named
|
|
4116
|
+
# `postgres` is created in the DB cluster.
|
|
4112
4117
|
#
|
|
4113
|
-
#
|
|
4114
|
-
# underscores, or digits (0-9).
|
|
4118
|
+
# Constraints:
|
|
4115
4119
|
#
|
|
4116
|
-
#
|
|
4120
|
+
# * It must contain 1 to 63 alphanumeric characters.
|
|
4117
4121
|
#
|
|
4118
|
-
#
|
|
4122
|
+
# * It must begin with a letter. Subsequent characters can be letters,
|
|
4123
|
+
# underscores, or digits (0 to 9).
|
|
4119
4124
|
#
|
|
4120
|
-
#
|
|
4125
|
+
# * It can't be a word reserved by the database engine.
|
|
4121
4126
|
#
|
|
4122
4127
|
# @option params [required, String] :db_instance_identifier
|
|
4123
4128
|
# The identifier for this DB instance. This parameter is stored as a
|
|
@@ -5164,6 +5169,14 @@ module Aws::RDS
|
|
|
5164
5169
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
|
5165
5170
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
|
5166
5171
|
#
|
|
5172
|
+
# @option params [String] :db_system_id
|
|
5173
|
+
# The Oracle system identifier (SID), which is the name of the Oracle
|
|
5174
|
+
# database instance that manages your database files. In this context,
|
|
5175
|
+
# the term "Oracle database instance" refers exclusively to the system
|
|
5176
|
+
# global area (SGA) and Oracle background processes. If you don't
|
|
5177
|
+
# specify a SID, the value defaults to `RDSCDB`. The Oracle SID is also
|
|
5178
|
+
# the name of your CDB.
|
|
5179
|
+
#
|
|
5167
5180
|
# @return [Types::CreateDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5168
5181
|
#
|
|
5169
5182
|
# * {Types::CreateDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
|
@@ -5350,6 +5363,7 @@ module Aws::RDS
|
|
|
5350
5363
|
# manage_master_user_password: false,
|
|
5351
5364
|
# master_user_secret_kms_key_id: "String",
|
|
5352
5365
|
# ca_certificate_identifier: "String",
|
|
5366
|
+
# db_system_id: "String",
|
|
5353
5367
|
# })
|
|
5354
5368
|
#
|
|
5355
5369
|
# @example Response structure
|
|
@@ -5508,6 +5522,7 @@ module Aws::RDS
|
|
|
5508
5522
|
# resp.db_instance.certificate_details.ca_identifier #=> String
|
|
5509
5523
|
# resp.db_instance.certificate_details.valid_till #=> Time
|
|
5510
5524
|
# resp.db_instance.read_replica_source_db_cluster_identifier #=> String
|
|
5525
|
+
# resp.db_instance.percent_progress #=> String
|
|
5511
5526
|
#
|
|
5512
5527
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstance AWS API Documentation
|
|
5513
5528
|
#
|
|
@@ -6415,6 +6430,7 @@ module Aws::RDS
|
|
|
6415
6430
|
# resp.db_instance.certificate_details.ca_identifier #=> String
|
|
6416
6431
|
# resp.db_instance.certificate_details.valid_till #=> Time
|
|
6417
6432
|
# resp.db_instance.read_replica_source_db_cluster_identifier #=> String
|
|
6433
|
+
# resp.db_instance.percent_progress #=> String
|
|
6418
6434
|
#
|
|
6419
6435
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceReadReplica AWS API Documentation
|
|
6420
6436
|
#
|
|
@@ -7017,6 +7033,7 @@ module Aws::RDS
|
|
|
7017
7033
|
# resp.db_snapshot.snapshot_database_time #=> Time
|
|
7018
7034
|
# resp.db_snapshot.snapshot_target #=> String
|
|
7019
7035
|
# resp.db_snapshot.storage_throughput #=> Integer
|
|
7036
|
+
# resp.db_snapshot.db_system_id #=> String
|
|
7020
7037
|
#
|
|
7021
7038
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBSnapshot AWS API Documentation
|
|
7022
7039
|
#
|
|
@@ -7344,10 +7361,11 @@ module Aws::RDS
|
|
|
7344
7361
|
# that receives data from the primary cluster through high-speed
|
|
7345
7362
|
# replication performed by the Aurora storage subsystem.
|
|
7346
7363
|
#
|
|
7347
|
-
# You can create a global database that is initially empty, and then
|
|
7348
|
-
#
|
|
7349
|
-
# existing Aurora cluster during the create
|
|
7350
|
-
# becomes the primary cluster of the global
|
|
7364
|
+
# You can create a global database that is initially empty, and then
|
|
7365
|
+
# create the primary and secondary DB clusters in the global database.
|
|
7366
|
+
# Or you can specify an existing Aurora cluster during the create
|
|
7367
|
+
# operation, and this cluster becomes the primary cluster of the global
|
|
7368
|
+
# database.
|
|
7351
7369
|
#
|
|
7352
7370
|
# <note markdown="1"> This operation applies only to Aurora DB clusters.
|
|
7353
7371
|
#
|
|
@@ -7646,7 +7664,7 @@ module Aws::RDS
|
|
|
7646
7664
|
# Deletes a blue/green deployment.
|
|
7647
7665
|
#
|
|
7648
7666
|
# For more information, see [Using Amazon RDS Blue/Green Deployments for
|
|
7649
|
-
# database updates][1] in the *Amazon RDS User Guide* and [
|
|
7667
|
+
# database updates][1] in the *Amazon RDS User Guide* and [Using Amazon
|
|
7650
7668
|
# RDS Blue/Green Deployments for database updates][2] in the *Amazon
|
|
7651
7669
|
# Aurora User Guide*.
|
|
7652
7670
|
#
|
|
@@ -7656,8 +7674,8 @@ module Aws::RDS
|
|
|
7656
7674
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html
|
|
7657
7675
|
#
|
|
7658
7676
|
# @option params [required, String] :blue_green_deployment_identifier
|
|
7659
|
-
# The
|
|
7660
|
-
#
|
|
7677
|
+
# The unique identifier of the blue/green deployment to delete. This
|
|
7678
|
+
# parameter isn't case-sensitive.
|
|
7661
7679
|
#
|
|
7662
7680
|
# Constraints:
|
|
7663
7681
|
#
|
|
@@ -7666,9 +7684,9 @@ module Aws::RDS
|
|
|
7666
7684
|
# ^
|
|
7667
7685
|
#
|
|
7668
7686
|
# @option params [Boolean] :delete_target
|
|
7669
|
-
#
|
|
7670
|
-
#
|
|
7671
|
-
#
|
|
7687
|
+
# Specifies whether to delete the resources in the green environment.
|
|
7688
|
+
# You can't specify this option if the blue/green deployment
|
|
7689
|
+
# [status][1] is `SWITCHOVER_COMPLETED`.
|
|
7672
7690
|
#
|
|
7673
7691
|
#
|
|
7674
7692
|
#
|
|
@@ -8749,6 +8767,7 @@ module Aws::RDS
|
|
|
8749
8767
|
# resp.db_instance.certificate_details.ca_identifier #=> String
|
|
8750
8768
|
# resp.db_instance.certificate_details.valid_till #=> Time
|
|
8751
8769
|
# resp.db_instance.read_replica_source_db_cluster_identifier #=> String
|
|
8770
|
+
# resp.db_instance.percent_progress #=> String
|
|
8752
8771
|
#
|
|
8753
8772
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstance AWS API Documentation
|
|
8754
8773
|
#
|
|
@@ -9163,6 +9182,7 @@ module Aws::RDS
|
|
|
9163
9182
|
# resp.db_snapshot.snapshot_database_time #=> Time
|
|
9164
9183
|
# resp.db_snapshot.snapshot_target #=> String
|
|
9165
9184
|
# resp.db_snapshot.storage_throughput #=> Integer
|
|
9185
|
+
# resp.db_snapshot.db_system_id #=> String
|
|
9166
9186
|
#
|
|
9167
9187
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBSnapshot AWS API Documentation
|
|
9168
9188
|
#
|
|
@@ -9550,7 +9570,7 @@ module Aws::RDS
|
|
|
9550
9570
|
req.send_request(options)
|
|
9551
9571
|
end
|
|
9552
9572
|
|
|
9553
|
-
#
|
|
9573
|
+
# Describes one or more blue/green deployments.
|
|
9554
9574
|
#
|
|
9555
9575
|
# For more information, see [Using Amazon RDS Blue/Green Deployments for
|
|
9556
9576
|
# database updates][1] in the *Amazon RDS User Guide* and [ Using Amazon
|
|
@@ -9563,14 +9583,13 @@ module Aws::RDS
|
|
|
9563
9583
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html
|
|
9564
9584
|
#
|
|
9565
9585
|
# @option params [String] :blue_green_deployment_identifier
|
|
9566
|
-
# The blue/green deployment identifier. If this parameter
|
|
9567
|
-
#
|
|
9568
|
-
# This parameter isn't case-sensitive.
|
|
9586
|
+
# The blue/green deployment identifier. If you specify this parameter,
|
|
9587
|
+
# the response only includes information about the specific blue/green
|
|
9588
|
+
# deployment. This parameter isn't case-sensitive.
|
|
9569
9589
|
#
|
|
9570
9590
|
# Constraints:
|
|
9571
9591
|
#
|
|
9572
|
-
# *
|
|
9573
|
-
# identifier.
|
|
9592
|
+
# * Must match an existing blue/green deployment identifier.
|
|
9574
9593
|
#
|
|
9575
9594
|
# ^
|
|
9576
9595
|
#
|
|
@@ -9578,7 +9597,7 @@ module Aws::RDS
|
|
|
9578
9597
|
# A filter that specifies one or more blue/green deployments to
|
|
9579
9598
|
# describe.
|
|
9580
9599
|
#
|
|
9581
|
-
#
|
|
9600
|
+
# Valid Values:
|
|
9582
9601
|
#
|
|
9583
9602
|
# * `blue-green-deployment-identifier` - Accepts system-generated
|
|
9584
9603
|
# identifiers for blue/green deployments. The results list only
|
|
@@ -9599,9 +9618,9 @@ module Aws::RDS
|
|
|
9599
9618
|
#
|
|
9600
9619
|
# @option params [String] :marker
|
|
9601
9620
|
# An optional pagination token provided by a previous
|
|
9602
|
-
# `DescribeBlueGreenDeployments` request. If this parameter
|
|
9603
|
-
#
|
|
9604
|
-
#
|
|
9621
|
+
# `DescribeBlueGreenDeployments` request. If you specify this parameter,
|
|
9622
|
+
# the response only includes records beyond the marker, up to the value
|
|
9623
|
+
# specified by `MaxRecords`.
|
|
9605
9624
|
#
|
|
9606
9625
|
# @option params [Integer] :max_records
|
|
9607
9626
|
# The maximum number of records to include in the response. If more
|
|
@@ -9611,7 +9630,11 @@ module Aws::RDS
|
|
|
9611
9630
|
#
|
|
9612
9631
|
# Default: 100
|
|
9613
9632
|
#
|
|
9614
|
-
# Constraints:
|
|
9633
|
+
# Constraints:
|
|
9634
|
+
#
|
|
9635
|
+
# * Must be a minimum of 20.
|
|
9636
|
+
#
|
|
9637
|
+
# * Can't exceed 100.
|
|
9615
9638
|
#
|
|
9616
9639
|
# @return [Types::DescribeBlueGreenDeploymentsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
9617
9640
|
#
|
|
@@ -11943,6 +11966,7 @@ module Aws::RDS
|
|
|
11943
11966
|
# resp.db_instances[0].certificate_details.ca_identifier #=> String
|
|
11944
11967
|
# resp.db_instances[0].certificate_details.valid_till #=> Time
|
|
11945
11968
|
# resp.db_instances[0].read_replica_source_db_cluster_identifier #=> String
|
|
11969
|
+
# resp.db_instances[0].percent_progress #=> String
|
|
11946
11970
|
#
|
|
11947
11971
|
#
|
|
11948
11972
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -13027,6 +13051,7 @@ module Aws::RDS
|
|
|
13027
13051
|
# resp.db_snapshots[0].snapshot_database_time #=> Time
|
|
13028
13052
|
# resp.db_snapshots[0].snapshot_target #=> String
|
|
13029
13053
|
# resp.db_snapshots[0].storage_throughput #=> Integer
|
|
13054
|
+
# resp.db_snapshots[0].db_system_id #=> String
|
|
13030
13055
|
#
|
|
13031
13056
|
#
|
|
13032
13057
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -18104,7 +18129,7 @@ module Aws::RDS
|
|
|
18104
18129
|
# This setting doesn't apply to RDS Custom DB instances.
|
|
18105
18130
|
#
|
|
18106
18131
|
# @option params [String] :ca_certificate_identifier
|
|
18107
|
-
# The CA certificate identifier to use for the DB
|
|
18132
|
+
# The CA certificate identifier to use for the DB instance's server
|
|
18108
18133
|
# certificate.
|
|
18109
18134
|
#
|
|
18110
18135
|
# This setting doesn't apply to RDS Custom DB instances.
|
|
@@ -18927,6 +18952,7 @@ module Aws::RDS
|
|
|
18927
18952
|
# resp.db_instance.certificate_details.ca_identifier #=> String
|
|
18928
18953
|
# resp.db_instance.certificate_details.valid_till #=> Time
|
|
18929
18954
|
# resp.db_instance.read_replica_source_db_cluster_identifier #=> String
|
|
18955
|
+
# resp.db_instance.percent_progress #=> String
|
|
18930
18956
|
#
|
|
18931
18957
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstance AWS API Documentation
|
|
18932
18958
|
#
|
|
@@ -19426,6 +19452,7 @@ module Aws::RDS
|
|
|
19426
19452
|
# resp.db_snapshot.snapshot_database_time #=> Time
|
|
19427
19453
|
# resp.db_snapshot.snapshot_target #=> String
|
|
19428
19454
|
# resp.db_snapshot.storage_throughput #=> Integer
|
|
19455
|
+
# resp.db_snapshot.db_system_id #=> String
|
|
19429
19456
|
#
|
|
19430
19457
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBSnapshot AWS API Documentation
|
|
19431
19458
|
#
|
|
@@ -19814,13 +19841,13 @@ module Aws::RDS
|
|
|
19814
19841
|
req.send_request(options)
|
|
19815
19842
|
end
|
|
19816
19843
|
|
|
19817
|
-
#
|
|
19844
|
+
# Modifies a setting for an Amazon Aurora global cluster. You can change
|
|
19818
19845
|
# one or more database configuration parameters by specifying these
|
|
19819
19846
|
# parameters and the new values in the request. For more information on
|
|
19820
19847
|
# Amazon Aurora, see [ What is Amazon Aurora?][1] in the *Amazon Aurora
|
|
19821
19848
|
# User Guide*.
|
|
19822
19849
|
#
|
|
19823
|
-
# <note markdown="1"> This
|
|
19850
|
+
# <note markdown="1"> This operation only applies to Aurora global database clusters.
|
|
19824
19851
|
#
|
|
19825
19852
|
# </note>
|
|
19826
19853
|
#
|
|
@@ -19829,7 +19856,7 @@ module Aws::RDS
|
|
|
19829
19856
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
|
19830
19857
|
#
|
|
19831
19858
|
# @option params [String] :global_cluster_identifier
|
|
19832
|
-
# The
|
|
19859
|
+
# The cluster identifier for the global cluster to modify. This
|
|
19833
19860
|
# parameter isn't case-sensitive.
|
|
19834
19861
|
#
|
|
19835
19862
|
# Constraints:
|
|
@@ -19839,30 +19866,27 @@ module Aws::RDS
|
|
|
19839
19866
|
# ^
|
|
19840
19867
|
#
|
|
19841
19868
|
# @option params [String] :new_global_cluster_identifier
|
|
19842
|
-
# The new cluster identifier for the global database cluster
|
|
19843
|
-
#
|
|
19844
|
-
# lowercase string.
|
|
19869
|
+
# The new cluster identifier for the global database cluster. This value
|
|
19870
|
+
# is stored as a lowercase string.
|
|
19845
19871
|
#
|
|
19846
19872
|
# Constraints:
|
|
19847
19873
|
#
|
|
19848
|
-
# * Must contain from 1 to 63 letters, numbers, or hyphens
|
|
19874
|
+
# * Must contain from 1 to 63 letters, numbers, or hyphens.
|
|
19849
19875
|
#
|
|
19850
|
-
# * The first character must be a letter
|
|
19876
|
+
# * The first character must be a letter.
|
|
19851
19877
|
#
|
|
19852
|
-
# * Can't end with a hyphen or contain two consecutive hyphens
|
|
19878
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
|
19853
19879
|
#
|
|
19854
19880
|
# Example: `my-cluster2`
|
|
19855
19881
|
#
|
|
19856
19882
|
# @option params [Boolean] :deletion_protection
|
|
19857
|
-
#
|
|
19858
|
-
#
|
|
19859
|
-
# protection is enabled.
|
|
19883
|
+
# Specifies whether to enable deletion protection for the global
|
|
19884
|
+
# database cluster. The global database cluster can't be deleted when
|
|
19885
|
+
# deletion protection is enabled.
|
|
19860
19886
|
#
|
|
19861
19887
|
# @option params [String] :engine_version
|
|
19862
19888
|
# The version number of the database engine to which you want to
|
|
19863
|
-
# upgrade.
|
|
19864
|
-
# applied during the next maintenance window unless `ApplyImmediately`
|
|
19865
|
-
# is enabled.
|
|
19889
|
+
# upgrade.
|
|
19866
19890
|
#
|
|
19867
19891
|
# To list all of the available engine versions for `aurora-mysql` (for
|
|
19868
19892
|
# MySQL-based Aurora global databases), use the following command:
|
|
@@ -19878,11 +19902,11 @@ module Aws::RDS
|
|
|
19878
19902
|
# --query '*[]|[?SupportsGlobalDatabases == `true`].[EngineVersion]' ``
|
|
19879
19903
|
#
|
|
19880
19904
|
# @option params [Boolean] :allow_major_version_upgrade
|
|
19881
|
-
#
|
|
19905
|
+
# Specifies whether to allow major version upgrades.
|
|
19882
19906
|
#
|
|
19883
|
-
# Constraints:
|
|
19884
|
-
#
|
|
19885
|
-
#
|
|
19907
|
+
# Constraints: Must be enabled if you specify a value for the
|
|
19908
|
+
# `EngineVersion` parameter that's a different major version than the
|
|
19909
|
+
# global cluster's current version.
|
|
19886
19910
|
#
|
|
19887
19911
|
# If you upgrade the major version of a global database, the cluster and
|
|
19888
19912
|
# DB instance parameter groups are set to the default parameter groups
|
|
@@ -20337,6 +20361,7 @@ module Aws::RDS
|
|
|
20337
20361
|
# resp.db_instance.certificate_details.ca_identifier #=> String
|
|
20338
20362
|
# resp.db_instance.certificate_details.valid_till #=> Time
|
|
20339
20363
|
# resp.db_instance.read_replica_source_db_cluster_identifier #=> String
|
|
20364
|
+
# resp.db_instance.percent_progress #=> String
|
|
20340
20365
|
#
|
|
20341
20366
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplica AWS API Documentation
|
|
20342
20367
|
#
|
|
@@ -21004,6 +21029,7 @@ module Aws::RDS
|
|
|
21004
21029
|
# resp.db_instance.certificate_details.ca_identifier #=> String
|
|
21005
21030
|
# resp.db_instance.certificate_details.valid_till #=> Time
|
|
21006
21031
|
# resp.db_instance.read_replica_source_db_cluster_identifier #=> String
|
|
21032
|
+
# resp.db_instance.percent_progress #=> String
|
|
21007
21033
|
#
|
|
21008
21034
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBInstance AWS API Documentation
|
|
21009
21035
|
#
|
|
@@ -24351,6 +24377,7 @@ module Aws::RDS
|
|
|
24351
24377
|
# resp.db_instance.certificate_details.ca_identifier #=> String
|
|
24352
24378
|
# resp.db_instance.certificate_details.valid_till #=> Time
|
|
24353
24379
|
# resp.db_instance.read_replica_source_db_cluster_identifier #=> String
|
|
24380
|
+
# resp.db_instance.percent_progress #=> String
|
|
24354
24381
|
#
|
|
24355
24382
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshot AWS API Documentation
|
|
24356
24383
|
#
|
|
@@ -25083,6 +25110,7 @@ module Aws::RDS
|
|
|
25083
25110
|
# resp.db_instance.certificate_details.ca_identifier #=> String
|
|
25084
25111
|
# resp.db_instance.certificate_details.valid_till #=> Time
|
|
25085
25112
|
# resp.db_instance.read_replica_source_db_cluster_identifier #=> String
|
|
25113
|
+
# resp.db_instance.percent_progress #=> String
|
|
25086
25114
|
#
|
|
25087
25115
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3 AWS API Documentation
|
|
25088
25116
|
#
|
|
@@ -25908,6 +25936,7 @@ module Aws::RDS
|
|
|
25908
25936
|
# resp.db_instance.certificate_details.ca_identifier #=> String
|
|
25909
25937
|
# resp.db_instance.certificate_details.valid_till #=> Time
|
|
25910
25938
|
# resp.db_instance.read_replica_source_db_cluster_identifier #=> String
|
|
25939
|
+
# resp.db_instance.percent_progress #=> String
|
|
25911
25940
|
#
|
|
25912
25941
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTime AWS API Documentation
|
|
25913
25942
|
#
|
|
@@ -26499,6 +26528,7 @@ module Aws::RDS
|
|
|
26499
26528
|
# resp.db_instance.certificate_details.ca_identifier #=> String
|
|
26500
26529
|
# resp.db_instance.certificate_details.valid_till #=> Time
|
|
26501
26530
|
# resp.db_instance.read_replica_source_db_cluster_identifier #=> String
|
|
26531
|
+
# resp.db_instance.percent_progress #=> String
|
|
26502
26532
|
#
|
|
26503
26533
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstance AWS API Documentation
|
|
26504
26534
|
#
|
|
@@ -27317,6 +27347,7 @@ module Aws::RDS
|
|
|
27317
27347
|
# resp.db_instance.certificate_details.ca_identifier #=> String
|
|
27318
27348
|
# resp.db_instance.certificate_details.valid_till #=> Time
|
|
27319
27349
|
# resp.db_instance.read_replica_source_db_cluster_identifier #=> String
|
|
27350
|
+
# resp.db_instance.percent_progress #=> String
|
|
27320
27351
|
#
|
|
27321
27352
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstance AWS API Documentation
|
|
27322
27353
|
#
|
|
@@ -27441,7 +27472,7 @@ module Aws::RDS
|
|
|
27441
27472
|
# routed to the databases in the green environment.
|
|
27442
27473
|
#
|
|
27443
27474
|
# For more information, see [Using Amazon RDS Blue/Green Deployments for
|
|
27444
|
-
# database updates][1] in the *Amazon RDS User Guide* and [
|
|
27475
|
+
# database updates][1] in the *Amazon RDS User Guide* and [Using Amazon
|
|
27445
27476
|
# RDS Blue/Green Deployments for database updates][2] in the *Amazon
|
|
27446
27477
|
# Aurora User Guide*.
|
|
27447
27478
|
#
|
|
@@ -27451,7 +27482,7 @@ module Aws::RDS
|
|
|
27451
27482
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html
|
|
27452
27483
|
#
|
|
27453
27484
|
# @option params [required, String] :blue_green_deployment_identifier
|
|
27454
|
-
# The blue/green deployment
|
|
27485
|
+
# The unique identifier of the blue/green deployment.
|
|
27455
27486
|
#
|
|
27456
27487
|
# Constraints:
|
|
27457
27488
|
#
|
|
@@ -27460,8 +27491,9 @@ module Aws::RDS
|
|
|
27460
27491
|
# ^
|
|
27461
27492
|
#
|
|
27462
27493
|
# @option params [Integer] :switchover_timeout
|
|
27463
|
-
# The amount of time, in seconds, for the switchover to complete.
|
|
27464
|
-
#
|
|
27494
|
+
# The amount of time, in seconds, for the switchover to complete.
|
|
27495
|
+
#
|
|
27496
|
+
# Default: 300
|
|
27465
27497
|
#
|
|
27466
27498
|
# If the switchover takes longer than the specified duration, then any
|
|
27467
27499
|
# changes are rolled back, and no changes are made to the environments.
|
|
@@ -27821,6 +27853,7 @@ module Aws::RDS
|
|
|
27821
27853
|
# resp.db_instance.certificate_details.ca_identifier #=> String
|
|
27822
27854
|
# resp.db_instance.certificate_details.valid_till #=> Time
|
|
27823
27855
|
# resp.db_instance.read_replica_source_db_cluster_identifier #=> String
|
|
27856
|
+
# resp.db_instance.percent_progress #=> String
|
|
27824
27857
|
#
|
|
27825
27858
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SwitchoverReadReplica AWS API Documentation
|
|
27826
27859
|
#
|
|
@@ -27844,7 +27877,7 @@ module Aws::RDS
|
|
|
27844
27877
|
params: params,
|
|
27845
27878
|
config: config)
|
|
27846
27879
|
context[:gem_name] = 'aws-sdk-rds'
|
|
27847
|
-
context[:gem_version] = '1.
|
|
27880
|
+
context[:gem_version] = '1.187.0'
|
|
27848
27881
|
Seahorse::Client::Request.new(handlers, context)
|
|
27849
27882
|
end
|
|
27850
27883
|
|
|
@@ -1032,6 +1032,7 @@ module Aws::RDS
|
|
|
1032
1032
|
CreateDBInstanceMessage.add_member(:manage_master_user_password, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ManageMasterUserPassword"))
|
|
1033
1033
|
CreateDBInstanceMessage.add_member(:master_user_secret_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "MasterUserSecretKmsKeyId"))
|
|
1034
1034
|
CreateDBInstanceMessage.add_member(:ca_certificate_identifier, Shapes::ShapeRef.new(shape: String, location_name: "CACertificateIdentifier"))
|
|
1035
|
+
CreateDBInstanceMessage.add_member(:db_system_id, Shapes::ShapeRef.new(shape: String, location_name: "DBSystemId"))
|
|
1035
1036
|
CreateDBInstanceMessage.struct_class = Types::CreateDBInstanceMessage
|
|
1036
1037
|
|
|
1037
1038
|
CreateDBInstanceReadReplicaMessage.add_member(:db_instance_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBInstanceIdentifier"))
|
|
@@ -1538,6 +1539,7 @@ module Aws::RDS
|
|
|
1538
1539
|
DBInstance.add_member(:master_user_secret, Shapes::ShapeRef.new(shape: MasterUserSecret, location_name: "MasterUserSecret"))
|
|
1539
1540
|
DBInstance.add_member(:certificate_details, Shapes::ShapeRef.new(shape: CertificateDetails, location_name: "CertificateDetails"))
|
|
1540
1541
|
DBInstance.add_member(:read_replica_source_db_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "ReadReplicaSourceDBClusterIdentifier"))
|
|
1542
|
+
DBInstance.add_member(:percent_progress, Shapes::ShapeRef.new(shape: String, location_name: "PercentProgress"))
|
|
1541
1543
|
DBInstance.struct_class = Types::DBInstance
|
|
1542
1544
|
|
|
1543
1545
|
DBInstanceAlreadyExistsFault.struct_class = Types::DBInstanceAlreadyExistsFault
|
|
@@ -1785,6 +1787,7 @@ module Aws::RDS
|
|
|
1785
1787
|
DBSnapshot.add_member(:snapshot_database_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "SnapshotDatabaseTime"))
|
|
1786
1788
|
DBSnapshot.add_member(:snapshot_target, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotTarget"))
|
|
1787
1789
|
DBSnapshot.add_member(:storage_throughput, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "StorageThroughput"))
|
|
1790
|
+
DBSnapshot.add_member(:db_system_id, Shapes::ShapeRef.new(shape: String, location_name: "DBSystemId"))
|
|
1788
1791
|
DBSnapshot.struct_class = Types::DBSnapshot
|
|
1789
1792
|
|
|
1790
1793
|
DBSnapshotAlreadyExistsFault.struct_class = Types::DBSnapshotAlreadyExistsFault
|