aws-sdk-rds 1.118.0 → 1.119.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds.rb +1 -1
- data/lib/aws-sdk-rds/client.rb +96 -24
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +41 -0
- data/lib/aws-sdk-rds/db_instance.rb +3 -3
- data/lib/aws-sdk-rds/db_parameter_group.rb +54 -11
- data/lib/aws-sdk-rds/resource.rb +64 -3
- data/lib/aws-sdk-rds/types.rb +98 -14
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fd7e4673f637e9ee0683b535ece5fe0563bf13d1138fc0872b990a20ee303893
|
4
|
+
data.tar.gz: 1db2731ff1d73462878f54fb664a6436805886b876c01403b35b1ca3608501da
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e06ed432e66ff6c32518f338884f0760ba1304443aff907f6547d0a3506fb5e5e282e62bbcd782202344a27f18571398bf7e183abd243109d80af8198123a80f
|
7
|
+
data.tar.gz: '04485d9bef591833a84883ce2f6d421ddb96a62c9f97f529182c3c15305d17b23225b23ba47f8e11a9bf79989ca531958b92112d7e152ef9095564d699b56c2d'
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.119.0 (2021-06-04)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Documentation updates for RDS: fixing an outdated link to the RDS documentation in DBInstance$DBInstanceStatus
|
8
|
+
|
4
9
|
1.118.0 (2021-04-13)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.119.0
|
data/lib/aws-sdk-rds.rb
CHANGED
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -2586,6 +2586,31 @@ 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
|
+
#
|
2589
2614
|
# @option params [required, String] :description
|
2590
2615
|
# The description for the DB cluster parameter group.
|
2591
2616
|
#
|
@@ -4586,16 +4611,52 @@ module Aws::RDS
|
|
4586
4611
|
# applied only to a DB instance running a database engine and engine
|
4587
4612
|
# version compatible with that DB parameter group family.
|
4588
4613
|
#
|
4589
|
-
# To list all of the available parameter group families
|
4590
|
-
# following command:
|
4614
|
+
# To list all of the available parameter group families for a DB engine,
|
4615
|
+
# use the following command:
|
4616
|
+
#
|
4617
|
+
# `aws rds describe-db-engine-versions --query
|
4618
|
+
# "DBEngineVersions[].DBParameterGroupFamily" --engine <engine>`
|
4619
|
+
#
|
4620
|
+
# For example, to list all of the available parameter group families for
|
4621
|
+
# the MySQL DB engine, use the following command:
|
4591
4622
|
#
|
4592
4623
|
# `aws rds describe-db-engine-versions --query
|
4593
|
-
# "DBEngineVersions[].DBParameterGroupFamily"`
|
4624
|
+
# "DBEngineVersions[].DBParameterGroupFamily" --engine mysql`
|
4594
4625
|
#
|
4595
4626
|
# <note markdown="1"> The output contains duplicates.
|
4596
4627
|
#
|
4597
4628
|
# </note>
|
4598
4629
|
#
|
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
|
+
#
|
4599
4660
|
# @option params [required, String] :description
|
4600
4661
|
# The description for the DB parameter group.
|
4601
4662
|
#
|
@@ -12442,12 +12503,6 @@ module Aws::RDS
|
|
12442
12503
|
# For more information on Amazon Aurora, see [ What Is Amazon
|
12443
12504
|
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
12444
12505
|
#
|
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
|
-
#
|
12451
12506
|
# After you create a DB cluster parameter group, you should wait at
|
12452
12507
|
# least 5 minutes before creating your first DB cluster that uses that
|
12453
12508
|
# DB cluster parameter group as the default parameter group. This allows
|
@@ -12481,6 +12536,22 @@ module Aws::RDS
|
|
12481
12536
|
# @option params [required, Array<Types::Parameter>] :parameters
|
12482
12537
|
# A list of parameters in the DB cluster parameter group to modify.
|
12483
12538
|
#
|
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
|
+
#
|
12484
12555
|
# @return [Types::DBClusterParameterGroupNameMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
12485
12556
|
#
|
12486
12557
|
# * {Types::DBClusterParameterGroupNameMessage#db_cluster_parameter_group_name #db_cluster_parameter_group_name} => String
|
@@ -13579,12 +13650,6 @@ module Aws::RDS
|
|
13579
13650
|
# `ParameterValue`, and `ApplyMethod`. A maximum of 20 parameters can be
|
13580
13651
|
# modified in a single request.
|
13581
13652
|
#
|
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
|
-
#
|
13588
13653
|
# After you modify a DB parameter group, you should wait at least 5
|
13589
13654
|
# minutes before creating your first DB instance that uses that DB
|
13590
13655
|
# parameter group as the default parameter group. This allows Amazon RDS
|
@@ -13611,18 +13676,25 @@ module Aws::RDS
|
|
13611
13676
|
# ^
|
13612
13677
|
#
|
13613
13678
|
# @option params [required, Array<Types::Parameter>] :parameters
|
13614
|
-
# An array of parameter names, values, and the
|
13615
|
-
# parameter update. At least one parameter name, value, and
|
13616
|
-
# must be supplied; later arguments are
|
13617
|
-
# parameters can be modified in a single
|
13679
|
+
# An array of parameter names, values, and the application methods for
|
13680
|
+
# the parameter update. At least one parameter name, value, and
|
13681
|
+
# application method method must be supplied; later arguments are
|
13682
|
+
# optional. A maximum of 20 parameters can be modified in a single
|
13683
|
+
# request.
|
13618
13684
|
#
|
13619
13685
|
# Valid Values (for the application method): `immediate |
|
13620
13686
|
# pending-reboot`
|
13621
13687
|
#
|
13622
|
-
# <note markdown="1"> You can use the immediate value with dynamic parameters only. You
|
13623
|
-
# use the pending-reboot value for both dynamic and static
|
13624
|
-
#
|
13625
|
-
#
|
13688
|
+
# <note markdown="1"> You can use the `immediate` value with dynamic parameters only. You
|
13689
|
+
# can use the `pending-reboot` value for both dynamic and static
|
13690
|
+
# parameters.
|
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.
|
13626
13698
|
#
|
13627
13699
|
# </note>
|
13628
13700
|
#
|
@@ -19813,7 +19885,7 @@ module Aws::RDS
|
|
19813
19885
|
params: params,
|
19814
19886
|
config: config)
|
19815
19887
|
context[:gem_name] = 'aws-sdk-rds'
|
19816
|
-
context[:gem_version] = '1.
|
19888
|
+
context[:gem_version] = '1.119.0'
|
19817
19889
|
Seahorse::Client::Request.new(handlers, context)
|
19818
19890
|
end
|
19819
19891
|
|
@@ -216,6 +216,31 @@ 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`
|
219
244
|
# @option options [required, String] :description
|
220
245
|
# The description for the DB cluster parameter group.
|
221
246
|
# @option options [Array<Types::Tag>] :tags
|
@@ -264,6 +289,22 @@ module Aws::RDS
|
|
264
289
|
# @param [Hash] options ({})
|
265
290
|
# @option options [required, Array<Types::Parameter>] :parameters
|
266
291
|
# 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>
|
267
308
|
# @return [DBClusterParameterGroup]
|
268
309
|
def modify(options = {})
|
269
310
|
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 [DB
|
54
|
-
#
|
53
|
+
# For information about DB instance statuses, see [Viewing 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/Overview.DBInstance.Status
|
58
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/accessing-monitoring.html#Overview.DBInstance.Status
|
59
59
|
# @return [String]
|
60
60
|
def db_instance_status
|
61
61
|
data[:db_instance_status]
|
@@ -208,15 +208,51 @@ 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
|
-
# following command:
|
211
|
+
# To list all of the available parameter group families for a DB engine,
|
212
|
+
# use the following command:
|
213
213
|
#
|
214
214
|
# `aws rds describe-db-engine-versions --query
|
215
|
-
# "DBEngineVersions[].DBParameterGroupFamily"
|
215
|
+
# "DBEngineVersions[].DBParameterGroupFamily" --engine <engine>`
|
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`
|
216
222
|
#
|
217
223
|
# <note markdown="1"> The output contains duplicates.
|
218
224
|
#
|
219
225
|
# </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`
|
220
256
|
# @option options [required, String] :description
|
221
257
|
# The description for the DB parameter group.
|
222
258
|
# @option options [Array<Types::Tag>] :tags
|
@@ -311,18 +347,25 @@ module Aws::RDS
|
|
311
347
|
# })
|
312
348
|
# @param [Hash] options ({})
|
313
349
|
# @option options [required, Array<Types::Parameter>] :parameters
|
314
|
-
# An array of parameter names, values, and the
|
315
|
-
# parameter update. At least one parameter name, value, and
|
316
|
-
# must be supplied; later arguments are
|
317
|
-
# parameters can be modified in a single
|
350
|
+
# An array of parameter names, values, and the application methods for
|
351
|
+
# the parameter update. At least one parameter name, value, and
|
352
|
+
# application method method must be supplied; later arguments are
|
353
|
+
# optional. A maximum of 20 parameters can be modified in a single
|
354
|
+
# request.
|
318
355
|
#
|
319
356
|
# Valid Values (for the application method): `immediate |
|
320
357
|
# pending-reboot`
|
321
358
|
#
|
322
|
-
# <note markdown="1"> You can use the immediate value with dynamic parameters only. You
|
323
|
-
# use the pending-reboot value for both dynamic and static
|
324
|
-
#
|
325
|
-
#
|
359
|
+
# <note markdown="1"> You can use the `immediate` value with dynamic parameters only. You
|
360
|
+
# can use the `pending-reboot` value for both dynamic and static
|
361
|
+
# parameters.
|
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.
|
326
369
|
#
|
327
370
|
# </note>
|
328
371
|
# @return [DBParameterGroup]
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -516,6 +516,31 @@ 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`
|
519
544
|
# @option options [required, String] :description
|
520
545
|
# The description for the DB cluster parameter group.
|
521
546
|
# @option options [Array<Types::Tag>] :tags
|
@@ -1489,15 +1514,51 @@ module Aws::RDS
|
|
1489
1514
|
# applied only to a DB instance running a database engine and engine
|
1490
1515
|
# version compatible with that DB parameter group family.
|
1491
1516
|
#
|
1492
|
-
# To list all of the available parameter group families
|
1493
|
-
# following command:
|
1517
|
+
# To list all of the available parameter group families for a DB engine,
|
1518
|
+
# use the following command:
|
1494
1519
|
#
|
1495
1520
|
# `aws rds describe-db-engine-versions --query
|
1496
|
-
# "DBEngineVersions[].DBParameterGroupFamily"
|
1521
|
+
# "DBEngineVersions[].DBParameterGroupFamily" --engine <engine>`
|
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`
|
1497
1528
|
#
|
1498
1529
|
# <note markdown="1"> The output contains duplicates.
|
1499
1530
|
#
|
1500
1531
|
# </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`
|
1501
1562
|
# @option options [required, String] :description
|
1502
1563
|
# The description for the DB parameter group.
|
1503
1564
|
# @option options [Array<Types::Tag>] :tags
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -2301,6 +2301,31 @@ 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`
|
2304
2329
|
# @return [String]
|
2305
2330
|
#
|
2306
2331
|
# @!attribute [rw] description
|
@@ -4113,15 +4138,51 @@ module Aws::RDS
|
|
4113
4138
|
# be applied only to a DB instance running a database engine and
|
4114
4139
|
# engine version compatible with that DB parameter group family.
|
4115
4140
|
#
|
4116
|
-
# To list all of the available parameter group families
|
4117
|
-
# following command:
|
4141
|
+
# To list all of the available parameter group families for a DB
|
4142
|
+
# engine, use the following command:
|
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:
|
4118
4149
|
#
|
4119
4150
|
# `aws rds describe-db-engine-versions --query
|
4120
|
-
# "DBEngineVersions[].DBParameterGroupFamily"`
|
4151
|
+
# "DBEngineVersions[].DBParameterGroupFamily" --engine mysql`
|
4121
4152
|
#
|
4122
4153
|
# <note markdown="1"> The output contains duplicates.
|
4123
4154
|
#
|
4124
4155
|
# </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`
|
4125
4186
|
# @return [String]
|
4126
4187
|
#
|
4127
4188
|
# @!attribute [rw] description
|
@@ -6252,12 +6313,12 @@ module Aws::RDS
|
|
6252
6313
|
# @!attribute [rw] db_instance_status
|
6253
6314
|
# Specifies the current state of this database.
|
6254
6315
|
#
|
6255
|
-
# For information about DB instance statuses, see [DB
|
6256
|
-
#
|
6316
|
+
# For information about DB instance statuses, see [Viewing DB instance
|
6317
|
+
# status][1] in the *Amazon RDS User Guide.*
|
6257
6318
|
#
|
6258
6319
|
#
|
6259
6320
|
#
|
6260
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.DBInstance.Status
|
6321
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/accessing-monitoring.html#Overview.DBInstance.Status
|
6261
6322
|
# @return [String]
|
6262
6323
|
#
|
6263
6324
|
# @!attribute [rw] master_username
|
@@ -13822,6 +13883,22 @@ module Aws::RDS
|
|
13822
13883
|
#
|
13823
13884
|
# @!attribute [rw] parameters
|
13824
13885
|
# 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>
|
13825
13902
|
# @return [Array<Types::Parameter>]
|
13826
13903
|
#
|
13827
13904
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterParameterGroupMessage AWS API Documentation
|
@@ -14830,18 +14907,25 @@ module Aws::RDS
|
|
14830
14907
|
# @return [String]
|
14831
14908
|
#
|
14832
14909
|
# @!attribute [rw] parameters
|
14833
|
-
# An array of parameter names, values, and the
|
14834
|
-
# parameter update. At least one parameter name, value, and
|
14835
|
-
# method must be supplied; later arguments are
|
14836
|
-
# 20 parameters can be modified in a single
|
14910
|
+
# An array of parameter names, values, and the application methods for
|
14911
|
+
# the parameter update. At least one parameter name, value, and
|
14912
|
+
# application method method must be supplied; later arguments are
|
14913
|
+
# optional. A maximum of 20 parameters can be modified in a single
|
14914
|
+
# request.
|
14837
14915
|
#
|
14838
14916
|
# Valid Values (for the application method): `immediate |
|
14839
14917
|
# pending-reboot`
|
14840
14918
|
#
|
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
|
14844
|
-
#
|
14919
|
+
# <note markdown="1"> You can use the `immediate` value with dynamic parameters only. You
|
14920
|
+
# can use the `pending-reboot` value for both dynamic and static
|
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.
|
14845
14929
|
#
|
14846
14930
|
# </note>
|
14847
14931
|
# @return [Array<Types::Parameter>]
|
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.119.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-04
|
11
|
+
date: 2021-06-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|
@@ -111,8 +111,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
111
111
|
- !ruby/object:Gem::Version
|
112
112
|
version: '0'
|
113
113
|
requirements: []
|
114
|
-
|
115
|
-
rubygems_version: 2.7.6.2
|
114
|
+
rubygems_version: 3.1.6
|
116
115
|
signing_key:
|
117
116
|
specification_version: 4
|
118
117
|
summary: AWS SDK for Ruby - Amazon RDS
|