aws-sdk-rds 1.119.0 → 1.120.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds.rb +1 -1
- data/lib/aws-sdk-rds/client.rb +44 -96
- data/lib/aws-sdk-rds/client_api.rb +2 -0
- data/lib/aws-sdk-rds/db_cluster.rb +18 -0
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +0 -41
- data/lib/aws-sdk-rds/db_instance.rb +3 -3
- data/lib/aws-sdk-rds/db_parameter_group.rb +11 -54
- data/lib/aws-sdk-rds/resource.rb +3 -64
- data/lib/aws-sdk-rds/types.rb +40 -101
- 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: b487c183dc57de46f80ea8e44175cde122606ca236868ce07e87aa8eaaa69f4a
|
4
|
+
data.tar.gz: f924e376fdb0961c4fc1f98c02dd371798cb27a7a4123f5736f00861903be303
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '094b8860b7136c4d1b9e575bc833ad460847830bff70cb48cd6acc09477672cc82fd96abd2f94d40697944877854a039b8f04739a66ab21f933798dde7f98499'
|
7
|
+
data.tar.gz: 036ff4e77adba94d0aae0f739b03c64e36a6a1665054aa75b2a37813132dc2d4bd6098c4ec1d9c2f1133c80a0af9ee454c4c6e896385c8a7079083c23873511f
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.120.0 (2021-06-16)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release enables fast cloning in Aurora Serverless. You can now clone between Aurora Serverless clusters and Aurora Provisioned clusters.
|
8
|
+
|
4
9
|
1.119.0 (2021-06-04)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.120.0
|
data/lib/aws-sdk-rds.rb
CHANGED
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -2586,31 +2586,6 @@ module Aws::RDS
|
|
2586
2586
|
#
|
2587
2587
|
# Example: `aurora-postgresql9.6`
|
2588
2588
|
#
|
2589
|
-
# To list all of the available parameter group families for a DB engine,
|
2590
|
-
# use the following command:
|
2591
|
-
#
|
2592
|
-
# `aws rds describe-db-engine-versions --query
|
2593
|
-
# "DBEngineVersions[].DBParameterGroupFamily" --engine <engine>`
|
2594
|
-
#
|
2595
|
-
# For example, to list all of the available parameter group families for
|
2596
|
-
# the Aurora PostgreSQL DB engine, use the following command:
|
2597
|
-
#
|
2598
|
-
# `aws rds describe-db-engine-versions --query
|
2599
|
-
# "DBEngineVersions[].DBParameterGroupFamily" --engine
|
2600
|
-
# aurora-postgresql`
|
2601
|
-
#
|
2602
|
-
# <note markdown="1"> The output contains duplicates.
|
2603
|
-
#
|
2604
|
-
# </note>
|
2605
|
-
#
|
2606
|
-
# The following are the valid DB engine values:
|
2607
|
-
#
|
2608
|
-
# * `aurora` (for MySQL 5.6-compatible Aurora)
|
2609
|
-
#
|
2610
|
-
# * `aurora-mysql` (for MySQL 5.7-compatible Aurora)
|
2611
|
-
#
|
2612
|
-
# * `aurora-postgresql`
|
2613
|
-
#
|
2614
2589
|
# @option params [required, String] :description
|
2615
2590
|
# The description for the DB cluster parameter group.
|
2616
2591
|
#
|
@@ -4611,52 +4586,16 @@ module Aws::RDS
|
|
4611
4586
|
# applied only to a DB instance running a database engine and engine
|
4612
4587
|
# version compatible with that DB parameter group family.
|
4613
4588
|
#
|
4614
|
-
# To list all of the available parameter group families
|
4615
|
-
#
|
4589
|
+
# To list all of the available parameter group families, use the
|
4590
|
+
# following command:
|
4616
4591
|
#
|
4617
4592
|
# `aws rds describe-db-engine-versions --query
|
4618
|
-
# "DBEngineVersions[].DBParameterGroupFamily"
|
4619
|
-
#
|
4620
|
-
# For example, to list all of the available parameter group families for
|
4621
|
-
# the MySQL DB engine, use the following command:
|
4622
|
-
#
|
4623
|
-
# `aws rds describe-db-engine-versions --query
|
4624
|
-
# "DBEngineVersions[].DBParameterGroupFamily" --engine mysql`
|
4593
|
+
# "DBEngineVersions[].DBParameterGroupFamily"`
|
4625
4594
|
#
|
4626
4595
|
# <note markdown="1"> The output contains duplicates.
|
4627
4596
|
#
|
4628
4597
|
# </note>
|
4629
4598
|
#
|
4630
|
-
# The following are the valid DB engine values:
|
4631
|
-
#
|
4632
|
-
# * `aurora` (for MySQL 5.6-compatible Aurora)
|
4633
|
-
#
|
4634
|
-
# * `aurora-mysql` (for MySQL 5.7-compatible Aurora)
|
4635
|
-
#
|
4636
|
-
# * `aurora-postgresql`
|
4637
|
-
#
|
4638
|
-
# * `mariadb`
|
4639
|
-
#
|
4640
|
-
# * `mysql`
|
4641
|
-
#
|
4642
|
-
# * `oracle-ee`
|
4643
|
-
#
|
4644
|
-
# * `oracle-se2`
|
4645
|
-
#
|
4646
|
-
# * `oracle-se1`
|
4647
|
-
#
|
4648
|
-
# * `oracle-se`
|
4649
|
-
#
|
4650
|
-
# * `postgres`
|
4651
|
-
#
|
4652
|
-
# * `sqlserver-ee`
|
4653
|
-
#
|
4654
|
-
# * `sqlserver-se`
|
4655
|
-
#
|
4656
|
-
# * `sqlserver-ex`
|
4657
|
-
#
|
4658
|
-
# * `sqlserver-web`
|
4659
|
-
#
|
4660
4599
|
# @option params [required, String] :description
|
4661
4600
|
# The description for the DB parameter group.
|
4662
4601
|
#
|
@@ -12503,6 +12442,12 @@ module Aws::RDS
|
|
12503
12442
|
# For more information on Amazon Aurora, see [ What Is Amazon
|
12504
12443
|
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
12505
12444
|
#
|
12445
|
+
# <note markdown="1"> Changes to dynamic parameters are applied immediately. Changes to
|
12446
|
+
# static parameters require a reboot without failover to the DB cluster
|
12447
|
+
# associated with the parameter group before the change can take effect.
|
12448
|
+
#
|
12449
|
+
# </note>
|
12450
|
+
#
|
12506
12451
|
# After you create a DB cluster parameter group, you should wait at
|
12507
12452
|
# least 5 minutes before creating your first DB cluster that uses that
|
12508
12453
|
# DB cluster parameter group as the default parameter group. This allows
|
@@ -12536,22 +12481,6 @@ module Aws::RDS
|
|
12536
12481
|
# @option params [required, Array<Types::Parameter>] :parameters
|
12537
12482
|
# A list of parameters in the DB cluster parameter group to modify.
|
12538
12483
|
#
|
12539
|
-
# Valid Values (for the application method): `immediate |
|
12540
|
-
# pending-reboot`
|
12541
|
-
#
|
12542
|
-
# <note markdown="1"> You can use the `immediate` value with dynamic parameters only. You
|
12543
|
-
# can use the `pending-reboot` value for both dynamic and static
|
12544
|
-
# parameters.
|
12545
|
-
#
|
12546
|
-
# When the application method is `immediate`, changes to dynamic
|
12547
|
-
# parameters are applied immediately to the DB clusters associated with
|
12548
|
-
# the parameter group. When the application method is `pending-reboot`,
|
12549
|
-
# changes to dynamic and static parameters are applied after a reboot
|
12550
|
-
# without failover to the DB clusters associated with the parameter
|
12551
|
-
# group.
|
12552
|
-
#
|
12553
|
-
# </note>
|
12554
|
-
#
|
12555
12484
|
# @return [Types::DBClusterParameterGroupNameMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
12556
12485
|
#
|
12557
12486
|
# * {Types::DBClusterParameterGroupNameMessage#db_cluster_parameter_group_name #db_cluster_parameter_group_name} => String
|
@@ -13650,6 +13579,12 @@ module Aws::RDS
|
|
13650
13579
|
# `ParameterValue`, and `ApplyMethod`. A maximum of 20 parameters can be
|
13651
13580
|
# modified in a single request.
|
13652
13581
|
#
|
13582
|
+
# <note markdown="1"> Changes to dynamic parameters are applied immediately. Changes to
|
13583
|
+
# static parameters require a reboot without failover to the DB instance
|
13584
|
+
# associated with the parameter group before the change can take effect.
|
13585
|
+
#
|
13586
|
+
# </note>
|
13587
|
+
#
|
13653
13588
|
# After you modify a DB parameter group, you should wait at least 5
|
13654
13589
|
# minutes before creating your first DB instance that uses that DB
|
13655
13590
|
# parameter group as the default parameter group. This allows Amazon RDS
|
@@ -13676,25 +13611,18 @@ module Aws::RDS
|
|
13676
13611
|
# ^
|
13677
13612
|
#
|
13678
13613
|
# @option params [required, Array<Types::Parameter>] :parameters
|
13679
|
-
# An array of parameter names, values, and the
|
13680
|
-
#
|
13681
|
-
#
|
13682
|
-
#
|
13683
|
-
# request.
|
13614
|
+
# An array of parameter names, values, and the apply method for the
|
13615
|
+
# parameter update. At least one parameter name, value, and apply method
|
13616
|
+
# must be supplied; later arguments are optional. A maximum of 20
|
13617
|
+
# parameters can be modified in a single request.
|
13684
13618
|
#
|
13685
13619
|
# Valid Values (for the application method): `immediate |
|
13686
13620
|
# pending-reboot`
|
13687
13621
|
#
|
13688
|
-
# <note markdown="1"> You can use the
|
13689
|
-
#
|
13690
|
-
#
|
13691
|
-
#
|
13692
|
-
# When the application method is `immediate`, changes to dynamic
|
13693
|
-
# parameters are applied immediately to the DB instances associated with
|
13694
|
-
# the parameter group. When the application method is `pending-reboot`,
|
13695
|
-
# changes to dynamic and static parameters are applied after a reboot
|
13696
|
-
# without failover to the DB instances associated with the parameter
|
13697
|
-
# group.
|
13622
|
+
# <note markdown="1"> You can use the immediate value with dynamic parameters only. You can
|
13623
|
+
# use the pending-reboot value for both dynamic and static parameters,
|
13624
|
+
# and changes are applied when you reboot the DB instance without
|
13625
|
+
# failover.
|
13698
13626
|
#
|
13699
13627
|
# </note>
|
13700
13628
|
#
|
@@ -16842,6 +16770,18 @@ module Aws::RDS
|
|
16842
16770
|
# Specify the name of the IAM role to be used when making API calls to
|
16843
16771
|
# the Directory Service.
|
16844
16772
|
#
|
16773
|
+
# @option params [Types::ScalingConfiguration] :scaling_configuration
|
16774
|
+
# For DB clusters in `serverless` DB engine mode, the scaling properties
|
16775
|
+
# of the DB cluster.
|
16776
|
+
#
|
16777
|
+
# @option params [String] :engine_mode
|
16778
|
+
# The engine mode of the new cluster. Specify `provisioned` or
|
16779
|
+
# `serverless`, depending on the type of the cluster you are creating.
|
16780
|
+
# You can create an Aurora Serverless clone from a provisioned cluster,
|
16781
|
+
# or a provisioned clone from an Aurora Serverless cluster. To create a
|
16782
|
+
# clone that is an Aurora Serverless cluster, the original cluster must
|
16783
|
+
# be an Aurora Serverless cluster or an encrypted provisioned cluster.
|
16784
|
+
#
|
16845
16785
|
# @return [Types::RestoreDBClusterToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
16846
16786
|
#
|
16847
16787
|
# * {Types::RestoreDBClusterToPointInTimeResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -16890,6 +16830,14 @@ module Aws::RDS
|
|
16890
16830
|
# copy_tags_to_snapshot: false,
|
16891
16831
|
# domain: "String",
|
16892
16832
|
# domain_iam_role_name: "String",
|
16833
|
+
# scaling_configuration: {
|
16834
|
+
# min_capacity: 1,
|
16835
|
+
# max_capacity: 1,
|
16836
|
+
# auto_pause: false,
|
16837
|
+
# seconds_until_auto_pause: 1,
|
16838
|
+
# timeout_action: "String",
|
16839
|
+
# },
|
16840
|
+
# engine_mode: "String",
|
16893
16841
|
# })
|
16894
16842
|
#
|
16895
16843
|
# @example Response structure
|
@@ -19885,7 +19833,7 @@ module Aws::RDS
|
|
19885
19833
|
params: params,
|
19886
19834
|
config: config)
|
19887
19835
|
context[:gem_name] = 'aws-sdk-rds'
|
19888
|
-
context[:gem_version] = '1.
|
19836
|
+
context[:gem_version] = '1.120.0'
|
19889
19837
|
Seahorse::Client::Request.new(handlers, context)
|
19890
19838
|
end
|
19891
19839
|
|
@@ -3011,6 +3011,8 @@ module Aws::RDS
|
|
3011
3011
|
RestoreDBClusterToPointInTimeMessage.add_member(:copy_tags_to_snapshot, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CopyTagsToSnapshot"))
|
3012
3012
|
RestoreDBClusterToPointInTimeMessage.add_member(:domain, Shapes::ShapeRef.new(shape: String, location_name: "Domain"))
|
3013
3013
|
RestoreDBClusterToPointInTimeMessage.add_member(:domain_iam_role_name, Shapes::ShapeRef.new(shape: String, location_name: "DomainIAMRoleName"))
|
3014
|
+
RestoreDBClusterToPointInTimeMessage.add_member(:scaling_configuration, Shapes::ShapeRef.new(shape: ScalingConfiguration, location_name: "ScalingConfiguration"))
|
3015
|
+
RestoreDBClusterToPointInTimeMessage.add_member(:engine_mode, Shapes::ShapeRef.new(shape: String, location_name: "EngineMode"))
|
3014
3016
|
RestoreDBClusterToPointInTimeMessage.struct_class = Types::RestoreDBClusterToPointInTimeMessage
|
3015
3017
|
|
3016
3018
|
RestoreDBClusterToPointInTimeResult.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
|
@@ -1465,6 +1465,14 @@ module Aws::RDS
|
|
1465
1465
|
# copy_tags_to_snapshot: false,
|
1466
1466
|
# domain: "String",
|
1467
1467
|
# domain_iam_role_name: "String",
|
1468
|
+
# scaling_configuration: {
|
1469
|
+
# min_capacity: 1,
|
1470
|
+
# max_capacity: 1,
|
1471
|
+
# auto_pause: false,
|
1472
|
+
# seconds_until_auto_pause: 1,
|
1473
|
+
# timeout_action: "String",
|
1474
|
+
# },
|
1475
|
+
# engine_mode: "String",
|
1468
1476
|
# })
|
1469
1477
|
# @param [Hash] options ({})
|
1470
1478
|
# @option options [required, String] :db_cluster_identifier
|
@@ -1642,6 +1650,16 @@ module Aws::RDS
|
|
1642
1650
|
# @option options [String] :domain_iam_role_name
|
1643
1651
|
# Specify the name of the IAM role to be used when making API calls to
|
1644
1652
|
# the Directory Service.
|
1653
|
+
# @option options [Types::ScalingConfiguration] :scaling_configuration
|
1654
|
+
# For DB clusters in `serverless` DB engine mode, the scaling properties
|
1655
|
+
# of the DB cluster.
|
1656
|
+
# @option options [String] :engine_mode
|
1657
|
+
# The engine mode of the new cluster. Specify `provisioned` or
|
1658
|
+
# `serverless`, depending on the type of the cluster you are creating.
|
1659
|
+
# You can create an Aurora Serverless clone from a provisioned cluster,
|
1660
|
+
# or a provisioned clone from an Aurora Serverless cluster. To create a
|
1661
|
+
# clone that is an Aurora Serverless cluster, the original cluster must
|
1662
|
+
# be an Aurora Serverless cluster or an encrypted provisioned cluster.
|
1645
1663
|
# @return [DBCluster]
|
1646
1664
|
def restore(options = {})
|
1647
1665
|
options = options.merge(source_db_cluster_identifier: @id)
|
@@ -216,31 +216,6 @@ module Aws::RDS
|
|
216
216
|
# **Aurora PostgreSQL**
|
217
217
|
#
|
218
218
|
# Example: `aurora-postgresql9.6`
|
219
|
-
#
|
220
|
-
# To list all of the available parameter group families for a DB engine,
|
221
|
-
# use the following command:
|
222
|
-
#
|
223
|
-
# `aws rds describe-db-engine-versions --query
|
224
|
-
# "DBEngineVersions[].DBParameterGroupFamily" --engine <engine>`
|
225
|
-
#
|
226
|
-
# For example, to list all of the available parameter group families for
|
227
|
-
# the Aurora PostgreSQL DB engine, use the following command:
|
228
|
-
#
|
229
|
-
# `aws rds describe-db-engine-versions --query
|
230
|
-
# "DBEngineVersions[].DBParameterGroupFamily" --engine
|
231
|
-
# aurora-postgresql`
|
232
|
-
#
|
233
|
-
# <note markdown="1"> The output contains duplicates.
|
234
|
-
#
|
235
|
-
# </note>
|
236
|
-
#
|
237
|
-
# The following are the valid DB engine values:
|
238
|
-
#
|
239
|
-
# * `aurora` (for MySQL 5.6-compatible Aurora)
|
240
|
-
#
|
241
|
-
# * `aurora-mysql` (for MySQL 5.7-compatible Aurora)
|
242
|
-
#
|
243
|
-
# * `aurora-postgresql`
|
244
219
|
# @option options [required, String] :description
|
245
220
|
# The description for the DB cluster parameter group.
|
246
221
|
# @option options [Array<Types::Tag>] :tags
|
@@ -289,22 +264,6 @@ module Aws::RDS
|
|
289
264
|
# @param [Hash] options ({})
|
290
265
|
# @option options [required, Array<Types::Parameter>] :parameters
|
291
266
|
# A list of parameters in the DB cluster parameter group to modify.
|
292
|
-
#
|
293
|
-
# Valid Values (for the application method): `immediate |
|
294
|
-
# pending-reboot`
|
295
|
-
#
|
296
|
-
# <note markdown="1"> You can use the `immediate` value with dynamic parameters only. You
|
297
|
-
# can use the `pending-reboot` value for both dynamic and static
|
298
|
-
# parameters.
|
299
|
-
#
|
300
|
-
# When the application method is `immediate`, changes to dynamic
|
301
|
-
# parameters are applied immediately to the DB clusters associated with
|
302
|
-
# the parameter group. When the application method is `pending-reboot`,
|
303
|
-
# changes to dynamic and static parameters are applied after a reboot
|
304
|
-
# without failover to the DB clusters associated with the parameter
|
305
|
-
# group.
|
306
|
-
#
|
307
|
-
# </note>
|
308
267
|
# @return [DBClusterParameterGroup]
|
309
268
|
def modify(options = {})
|
310
269
|
options = options.merge(db_cluster_parameter_group_name: @name)
|
@@ -50,12 +50,12 @@ module Aws::RDS
|
|
50
50
|
|
51
51
|
# Specifies the current state of this database.
|
52
52
|
#
|
53
|
-
# For information about DB instance statuses, see [
|
54
|
-
#
|
53
|
+
# For information about DB instance statuses, see [DB Instance
|
54
|
+
# Status][1] in the *Amazon RDS User Guide.*
|
55
55
|
#
|
56
56
|
#
|
57
57
|
#
|
58
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
58
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.DBInstance.Status.html
|
59
59
|
# @return [String]
|
60
60
|
def db_instance_status
|
61
61
|
data[:db_instance_status]
|
@@ -208,51 +208,15 @@ module Aws::RDS
|
|
208
208
|
# applied only to a DB instance running a database engine and engine
|
209
209
|
# version compatible with that DB parameter group family.
|
210
210
|
#
|
211
|
-
# To list all of the available parameter group families
|
212
|
-
#
|
211
|
+
# To list all of the available parameter group families, use the
|
212
|
+
# following command:
|
213
213
|
#
|
214
214
|
# `aws rds describe-db-engine-versions --query
|
215
|
-
# "DBEngineVersions[].DBParameterGroupFamily"
|
216
|
-
#
|
217
|
-
# For example, to list all of the available parameter group families for
|
218
|
-
# the MySQL DB engine, use the following command:
|
219
|
-
#
|
220
|
-
# `aws rds describe-db-engine-versions --query
|
221
|
-
# "DBEngineVersions[].DBParameterGroupFamily" --engine mysql`
|
215
|
+
# "DBEngineVersions[].DBParameterGroupFamily"`
|
222
216
|
#
|
223
217
|
# <note markdown="1"> The output contains duplicates.
|
224
218
|
#
|
225
219
|
# </note>
|
226
|
-
#
|
227
|
-
# The following are the valid DB engine values:
|
228
|
-
#
|
229
|
-
# * `aurora` (for MySQL 5.6-compatible Aurora)
|
230
|
-
#
|
231
|
-
# * `aurora-mysql` (for MySQL 5.7-compatible Aurora)
|
232
|
-
#
|
233
|
-
# * `aurora-postgresql`
|
234
|
-
#
|
235
|
-
# * `mariadb`
|
236
|
-
#
|
237
|
-
# * `mysql`
|
238
|
-
#
|
239
|
-
# * `oracle-ee`
|
240
|
-
#
|
241
|
-
# * `oracle-se2`
|
242
|
-
#
|
243
|
-
# * `oracle-se1`
|
244
|
-
#
|
245
|
-
# * `oracle-se`
|
246
|
-
#
|
247
|
-
# * `postgres`
|
248
|
-
#
|
249
|
-
# * `sqlserver-ee`
|
250
|
-
#
|
251
|
-
# * `sqlserver-se`
|
252
|
-
#
|
253
|
-
# * `sqlserver-ex`
|
254
|
-
#
|
255
|
-
# * `sqlserver-web`
|
256
220
|
# @option options [required, String] :description
|
257
221
|
# The description for the DB parameter group.
|
258
222
|
# @option options [Array<Types::Tag>] :tags
|
@@ -347,25 +311,18 @@ module Aws::RDS
|
|
347
311
|
# })
|
348
312
|
# @param [Hash] options ({})
|
349
313
|
# @option options [required, Array<Types::Parameter>] :parameters
|
350
|
-
# An array of parameter names, values, and the
|
351
|
-
#
|
352
|
-
#
|
353
|
-
#
|
354
|
-
# request.
|
314
|
+
# An array of parameter names, values, and the apply method for the
|
315
|
+
# parameter update. At least one parameter name, value, and apply method
|
316
|
+
# must be supplied; later arguments are optional. A maximum of 20
|
317
|
+
# parameters can be modified in a single request.
|
355
318
|
#
|
356
319
|
# Valid Values (for the application method): `immediate |
|
357
320
|
# pending-reboot`
|
358
321
|
#
|
359
|
-
# <note markdown="1"> You can use the
|
360
|
-
#
|
361
|
-
#
|
362
|
-
#
|
363
|
-
# When the application method is `immediate`, changes to dynamic
|
364
|
-
# parameters are applied immediately to the DB instances associated with
|
365
|
-
# the parameter group. When the application method is `pending-reboot`,
|
366
|
-
# changes to dynamic and static parameters are applied after a reboot
|
367
|
-
# without failover to the DB instances associated with the parameter
|
368
|
-
# group.
|
322
|
+
# <note markdown="1"> You can use the immediate value with dynamic parameters only. You can
|
323
|
+
# use the pending-reboot value for both dynamic and static parameters,
|
324
|
+
# and changes are applied when you reboot the DB instance without
|
325
|
+
# failover.
|
369
326
|
#
|
370
327
|
# </note>
|
371
328
|
# @return [DBParameterGroup]
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -516,31 +516,6 @@ module Aws::RDS
|
|
516
516
|
# **Aurora PostgreSQL**
|
517
517
|
#
|
518
518
|
# Example: `aurora-postgresql9.6`
|
519
|
-
#
|
520
|
-
# To list all of the available parameter group families for a DB engine,
|
521
|
-
# use the following command:
|
522
|
-
#
|
523
|
-
# `aws rds describe-db-engine-versions --query
|
524
|
-
# "DBEngineVersions[].DBParameterGroupFamily" --engine <engine>`
|
525
|
-
#
|
526
|
-
# For example, to list all of the available parameter group families for
|
527
|
-
# the Aurora PostgreSQL DB engine, use the following command:
|
528
|
-
#
|
529
|
-
# `aws rds describe-db-engine-versions --query
|
530
|
-
# "DBEngineVersions[].DBParameterGroupFamily" --engine
|
531
|
-
# aurora-postgresql`
|
532
|
-
#
|
533
|
-
# <note markdown="1"> The output contains duplicates.
|
534
|
-
#
|
535
|
-
# </note>
|
536
|
-
#
|
537
|
-
# The following are the valid DB engine values:
|
538
|
-
#
|
539
|
-
# * `aurora` (for MySQL 5.6-compatible Aurora)
|
540
|
-
#
|
541
|
-
# * `aurora-mysql` (for MySQL 5.7-compatible Aurora)
|
542
|
-
#
|
543
|
-
# * `aurora-postgresql`
|
544
519
|
# @option options [required, String] :description
|
545
520
|
# The description for the DB cluster parameter group.
|
546
521
|
# @option options [Array<Types::Tag>] :tags
|
@@ -1514,51 +1489,15 @@ module Aws::RDS
|
|
1514
1489
|
# applied only to a DB instance running a database engine and engine
|
1515
1490
|
# version compatible with that DB parameter group family.
|
1516
1491
|
#
|
1517
|
-
# To list all of the available parameter group families
|
1518
|
-
#
|
1492
|
+
# To list all of the available parameter group families, use the
|
1493
|
+
# following command:
|
1519
1494
|
#
|
1520
1495
|
# `aws rds describe-db-engine-versions --query
|
1521
|
-
# "DBEngineVersions[].DBParameterGroupFamily"
|
1522
|
-
#
|
1523
|
-
# For example, to list all of the available parameter group families for
|
1524
|
-
# the MySQL DB engine, use the following command:
|
1525
|
-
#
|
1526
|
-
# `aws rds describe-db-engine-versions --query
|
1527
|
-
# "DBEngineVersions[].DBParameterGroupFamily" --engine mysql`
|
1496
|
+
# "DBEngineVersions[].DBParameterGroupFamily"`
|
1528
1497
|
#
|
1529
1498
|
# <note markdown="1"> The output contains duplicates.
|
1530
1499
|
#
|
1531
1500
|
# </note>
|
1532
|
-
#
|
1533
|
-
# The following are the valid DB engine values:
|
1534
|
-
#
|
1535
|
-
# * `aurora` (for MySQL 5.6-compatible Aurora)
|
1536
|
-
#
|
1537
|
-
# * `aurora-mysql` (for MySQL 5.7-compatible Aurora)
|
1538
|
-
#
|
1539
|
-
# * `aurora-postgresql`
|
1540
|
-
#
|
1541
|
-
# * `mariadb`
|
1542
|
-
#
|
1543
|
-
# * `mysql`
|
1544
|
-
#
|
1545
|
-
# * `oracle-ee`
|
1546
|
-
#
|
1547
|
-
# * `oracle-se2`
|
1548
|
-
#
|
1549
|
-
# * `oracle-se1`
|
1550
|
-
#
|
1551
|
-
# * `oracle-se`
|
1552
|
-
#
|
1553
|
-
# * `postgres`
|
1554
|
-
#
|
1555
|
-
# * `sqlserver-ee`
|
1556
|
-
#
|
1557
|
-
# * `sqlserver-se`
|
1558
|
-
#
|
1559
|
-
# * `sqlserver-ex`
|
1560
|
-
#
|
1561
|
-
# * `sqlserver-web`
|
1562
1501
|
# @option options [required, String] :description
|
1563
1502
|
# The description for the DB parameter group.
|
1564
1503
|
# @option options [Array<Types::Tag>] :tags
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -2301,31 +2301,6 @@ module Aws::RDS
|
|
2301
2301
|
# **Aurora PostgreSQL**
|
2302
2302
|
#
|
2303
2303
|
# Example: `aurora-postgresql9.6`
|
2304
|
-
#
|
2305
|
-
# To list all of the available parameter group families for a DB
|
2306
|
-
# engine, use the following command:
|
2307
|
-
#
|
2308
|
-
# `aws rds describe-db-engine-versions --query
|
2309
|
-
# "DBEngineVersions[].DBParameterGroupFamily" --engine <engine>`
|
2310
|
-
#
|
2311
|
-
# For example, to list all of the available parameter group families
|
2312
|
-
# for the Aurora PostgreSQL DB engine, use the following command:
|
2313
|
-
#
|
2314
|
-
# `aws rds describe-db-engine-versions --query
|
2315
|
-
# "DBEngineVersions[].DBParameterGroupFamily" --engine
|
2316
|
-
# aurora-postgresql`
|
2317
|
-
#
|
2318
|
-
# <note markdown="1"> The output contains duplicates.
|
2319
|
-
#
|
2320
|
-
# </note>
|
2321
|
-
#
|
2322
|
-
# The following are the valid DB engine values:
|
2323
|
-
#
|
2324
|
-
# * `aurora` (for MySQL 5.6-compatible Aurora)
|
2325
|
-
#
|
2326
|
-
# * `aurora-mysql` (for MySQL 5.7-compatible Aurora)
|
2327
|
-
#
|
2328
|
-
# * `aurora-postgresql`
|
2329
2304
|
# @return [String]
|
2330
2305
|
#
|
2331
2306
|
# @!attribute [rw] description
|
@@ -4138,51 +4113,15 @@ module Aws::RDS
|
|
4138
4113
|
# be applied only to a DB instance running a database engine and
|
4139
4114
|
# engine version compatible with that DB parameter group family.
|
4140
4115
|
#
|
4141
|
-
# To list all of the available parameter group families
|
4142
|
-
#
|
4143
|
-
#
|
4144
|
-
# `aws rds describe-db-engine-versions --query
|
4145
|
-
# "DBEngineVersions[].DBParameterGroupFamily" --engine <engine>`
|
4146
|
-
#
|
4147
|
-
# For example, to list all of the available parameter group families
|
4148
|
-
# for the MySQL DB engine, use the following command:
|
4116
|
+
# To list all of the available parameter group families, use the
|
4117
|
+
# following command:
|
4149
4118
|
#
|
4150
4119
|
# `aws rds describe-db-engine-versions --query
|
4151
|
-
# "DBEngineVersions[].DBParameterGroupFamily"
|
4120
|
+
# "DBEngineVersions[].DBParameterGroupFamily"`
|
4152
4121
|
#
|
4153
4122
|
# <note markdown="1"> The output contains duplicates.
|
4154
4123
|
#
|
4155
4124
|
# </note>
|
4156
|
-
#
|
4157
|
-
# The following are the valid DB engine values:
|
4158
|
-
#
|
4159
|
-
# * `aurora` (for MySQL 5.6-compatible Aurora)
|
4160
|
-
#
|
4161
|
-
# * `aurora-mysql` (for MySQL 5.7-compatible Aurora)
|
4162
|
-
#
|
4163
|
-
# * `aurora-postgresql`
|
4164
|
-
#
|
4165
|
-
# * `mariadb`
|
4166
|
-
#
|
4167
|
-
# * `mysql`
|
4168
|
-
#
|
4169
|
-
# * `oracle-ee`
|
4170
|
-
#
|
4171
|
-
# * `oracle-se2`
|
4172
|
-
#
|
4173
|
-
# * `oracle-se1`
|
4174
|
-
#
|
4175
|
-
# * `oracle-se`
|
4176
|
-
#
|
4177
|
-
# * `postgres`
|
4178
|
-
#
|
4179
|
-
# * `sqlserver-ee`
|
4180
|
-
#
|
4181
|
-
# * `sqlserver-se`
|
4182
|
-
#
|
4183
|
-
# * `sqlserver-ex`
|
4184
|
-
#
|
4185
|
-
# * `sqlserver-web`
|
4186
4125
|
# @return [String]
|
4187
4126
|
#
|
4188
4127
|
# @!attribute [rw] description
|
@@ -6313,12 +6252,12 @@ module Aws::RDS
|
|
6313
6252
|
# @!attribute [rw] db_instance_status
|
6314
6253
|
# Specifies the current state of this database.
|
6315
6254
|
#
|
6316
|
-
# For information about DB instance statuses, see [
|
6317
|
-
#
|
6255
|
+
# For information about DB instance statuses, see [DB Instance
|
6256
|
+
# Status][1] in the *Amazon RDS User Guide.*
|
6318
6257
|
#
|
6319
6258
|
#
|
6320
6259
|
#
|
6321
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
6260
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.DBInstance.Status.html
|
6322
6261
|
# @return [String]
|
6323
6262
|
#
|
6324
6263
|
# @!attribute [rw] master_username
|
@@ -13883,22 +13822,6 @@ module Aws::RDS
|
|
13883
13822
|
#
|
13884
13823
|
# @!attribute [rw] parameters
|
13885
13824
|
# A list of parameters in the DB cluster parameter group to modify.
|
13886
|
-
#
|
13887
|
-
# Valid Values (for the application method): `immediate |
|
13888
|
-
# pending-reboot`
|
13889
|
-
#
|
13890
|
-
# <note markdown="1"> You can use the `immediate` value with dynamic parameters only. You
|
13891
|
-
# can use the `pending-reboot` value for both dynamic and static
|
13892
|
-
# parameters.
|
13893
|
-
#
|
13894
|
-
# When the application method is `immediate`, changes to dynamic
|
13895
|
-
# parameters are applied immediately to the DB clusters associated
|
13896
|
-
# with the parameter group. When the application method is
|
13897
|
-
# `pending-reboot`, changes to dynamic and static parameters are
|
13898
|
-
# applied after a reboot without failover to the DB clusters
|
13899
|
-
# associated with the parameter group.
|
13900
|
-
#
|
13901
|
-
# </note>
|
13902
13825
|
# @return [Array<Types::Parameter>]
|
13903
13826
|
#
|
13904
13827
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterParameterGroupMessage AWS API Documentation
|
@@ -14907,25 +14830,18 @@ module Aws::RDS
|
|
14907
14830
|
# @return [String]
|
14908
14831
|
#
|
14909
14832
|
# @!attribute [rw] parameters
|
14910
|
-
# An array of parameter names, values, and the
|
14911
|
-
#
|
14912
|
-
#
|
14913
|
-
#
|
14914
|
-
# request.
|
14833
|
+
# An array of parameter names, values, and the apply method for the
|
14834
|
+
# parameter update. At least one parameter name, value, and apply
|
14835
|
+
# method must be supplied; later arguments are optional. A maximum of
|
14836
|
+
# 20 parameters can be modified in a single request.
|
14915
14837
|
#
|
14916
14838
|
# Valid Values (for the application method): `immediate |
|
14917
14839
|
# pending-reboot`
|
14918
14840
|
#
|
14919
|
-
# <note markdown="1"> You can use the
|
14920
|
-
# can use the
|
14921
|
-
# parameters
|
14922
|
-
#
|
14923
|
-
# When the application method is `immediate`, changes to dynamic
|
14924
|
-
# parameters are applied immediately to the DB instances associated
|
14925
|
-
# with the parameter group. When the application method is
|
14926
|
-
# `pending-reboot`, changes to dynamic and static parameters are
|
14927
|
-
# applied after a reboot without failover to the DB instances
|
14928
|
-
# associated with the parameter group.
|
14841
|
+
# <note markdown="1"> You can use the immediate value with dynamic parameters only. You
|
14842
|
+
# can use the pending-reboot value for both dynamic and static
|
14843
|
+
# parameters, and changes are applied when you reboot the DB instance
|
14844
|
+
# without failover.
|
14929
14845
|
#
|
14930
14846
|
# </note>
|
14931
14847
|
# @return [Array<Types::Parameter>]
|
@@ -18378,6 +18294,14 @@ module Aws::RDS
|
|
18378
18294
|
# copy_tags_to_snapshot: false,
|
18379
18295
|
# domain: "String",
|
18380
18296
|
# domain_iam_role_name: "String",
|
18297
|
+
# scaling_configuration: {
|
18298
|
+
# min_capacity: 1,
|
18299
|
+
# max_capacity: 1,
|
18300
|
+
# auto_pause: false,
|
18301
|
+
# seconds_until_auto_pause: 1,
|
18302
|
+
# timeout_action: "String",
|
18303
|
+
# },
|
18304
|
+
# engine_mode: "String",
|
18381
18305
|
# }
|
18382
18306
|
#
|
18383
18307
|
# @!attribute [rw] db_cluster_identifier
|
@@ -18601,6 +18525,21 @@ module Aws::RDS
|
|
18601
18525
|
# the Directory Service.
|
18602
18526
|
# @return [String]
|
18603
18527
|
#
|
18528
|
+
# @!attribute [rw] scaling_configuration
|
18529
|
+
# For DB clusters in `serverless` DB engine mode, the scaling
|
18530
|
+
# properties of the DB cluster.
|
18531
|
+
# @return [Types::ScalingConfiguration]
|
18532
|
+
#
|
18533
|
+
# @!attribute [rw] engine_mode
|
18534
|
+
# The engine mode of the new cluster. Specify `provisioned` or
|
18535
|
+
# `serverless`, depending on the type of the cluster you are creating.
|
18536
|
+
# You can create an Aurora Serverless clone from a provisioned
|
18537
|
+
# cluster, or a provisioned clone from an Aurora Serverless cluster.
|
18538
|
+
# To create a clone that is an Aurora Serverless cluster, the original
|
18539
|
+
# cluster must be an Aurora Serverless cluster or an encrypted
|
18540
|
+
# provisioned cluster.
|
18541
|
+
# @return [String]
|
18542
|
+
#
|
18604
18543
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTimeMessage AWS API Documentation
|
18605
18544
|
#
|
18606
18545
|
class RestoreDBClusterToPointInTimeMessage < Struct.new(
|
@@ -18622,7 +18561,9 @@ module Aws::RDS
|
|
18622
18561
|
:deletion_protection,
|
18623
18562
|
:copy_tags_to_snapshot,
|
18624
18563
|
:domain,
|
18625
|
-
:domain_iam_role_name
|
18564
|
+
:domain_iam_role_name,
|
18565
|
+
:scaling_configuration,
|
18566
|
+
:engine_mode)
|
18626
18567
|
SENSITIVE = []
|
18627
18568
|
include Aws::Structure
|
18628
18569
|
end
|
@@ -20251,8 +20192,6 @@ module Aws::RDS
|
|
20251
20192
|
# @!attribute [rw] seconds_until_auto_pause
|
20252
20193
|
# The time, in seconds, before an Aurora DB cluster in `serverless`
|
20253
20194
|
# mode is paused.
|
20254
|
-
#
|
20255
|
-
# Specify a value between 300 and 86,400 seconds.
|
20256
20195
|
# @return [Integer]
|
20257
20196
|
#
|
20258
20197
|
# @!attribute [rw] timeout_action
|
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.120.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: 2021-06-
|
11
|
+
date: 2021-06-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|