aws-sdk-rds 1.107.0 → 1.108.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/lib/aws-sdk-rds.rb +1 -1
- data/lib/aws-sdk-rds/client.rb +106 -6
- data/lib/aws-sdk-rds/client_api.rb +10 -0
- data/lib/aws-sdk-rds/db_cluster.rb +8 -0
- data/lib/aws-sdk-rds/db_instance.rb +5 -5
- data/lib/aws-sdk-rds/resource.rb +2 -2
- data/lib/aws-sdk-rds/types.rb +88 -26
- 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: 3f30d43719089ac6bd89890d5d18b2fa84346d3fd64107bc2347015bbfbd0fca
|
|
4
|
+
data.tar.gz: 156c98334b4a75d079f4c149c0ed354c3a1b4be7670bcc3d9668e436a45d4356
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 43cbaa0665a48597ee22cb74f03005c2e6d86a56b82d6d6114ad5ec390cfe8935749fff9575563fe678287309de73be40018710f33a066e928b95675d16f84a3
|
|
7
|
+
data.tar.gz: aa15fa9029fd7d3760a841422915ccd7561283d6298996fc464b841248bc41903ac940e4ec6f32bcc8a7423115609c8ccd82124459335549235151bd0a1c1880
|
data/lib/aws-sdk-rds.rb
CHANGED
data/lib/aws-sdk-rds/client.rb
CHANGED
|
@@ -2418,6 +2418,14 @@ module Aws::RDS
|
|
|
2418
2418
|
# resp.db_cluster.tag_list[0].value #=> String
|
|
2419
2419
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
|
2420
2420
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
|
2421
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
|
2422
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
|
2423
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
|
2424
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
|
2425
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
|
2426
|
+
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
|
2427
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
2428
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
|
2421
2429
|
#
|
|
2422
2430
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBCluster AWS API Documentation
|
|
2423
2431
|
#
|
|
@@ -2785,8 +2793,8 @@ module Aws::RDS
|
|
|
2785
2793
|
# **PostgreSQL**
|
|
2786
2794
|
#
|
|
2787
2795
|
# The name of the database to create when the DB instance is created. If
|
|
2788
|
-
# this parameter isn't specified,
|
|
2789
|
-
#
|
|
2796
|
+
# this parameter isn't specified, no database is created in the DB
|
|
2797
|
+
# instance.
|
|
2790
2798
|
#
|
|
2791
2799
|
# Constraints:
|
|
2792
2800
|
#
|
|
@@ -3749,6 +3757,7 @@ module Aws::RDS
|
|
|
3749
3757
|
# resp.db_instance.pending_modified_values.processor_features #=> Array
|
|
3750
3758
|
# resp.db_instance.pending_modified_values.processor_features[0].name #=> String
|
|
3751
3759
|
# resp.db_instance.pending_modified_values.processor_features[0].value #=> String
|
|
3760
|
+
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
3752
3761
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
3753
3762
|
# resp.db_instance.multi_az #=> Boolean
|
|
3754
3763
|
# resp.db_instance.engine_version #=> String
|
|
@@ -4072,9 +4081,9 @@ module Aws::RDS
|
|
|
4072
4081
|
# name for the AWS KMS CMK.
|
|
4073
4082
|
#
|
|
4074
4083
|
# If you create an encrypted read replica in the same AWS Region as the
|
|
4075
|
-
# source DB instance, then
|
|
4076
|
-
#
|
|
4077
|
-
# the source DB instance.
|
|
4084
|
+
# source DB instance, then do not specify a value for this parameter. A
|
|
4085
|
+
# read replica in the same Region is always encrypted with the same AWS
|
|
4086
|
+
# KMS CMK as the source DB instance.
|
|
4078
4087
|
#
|
|
4079
4088
|
# If you create an encrypted read replica in a different AWS Region,
|
|
4080
4089
|
# then you must specify a AWS KMS key identifier for the destination AWS
|
|
@@ -4396,6 +4405,7 @@ module Aws::RDS
|
|
|
4396
4405
|
# resp.db_instance.pending_modified_values.processor_features #=> Array
|
|
4397
4406
|
# resp.db_instance.pending_modified_values.processor_features[0].name #=> String
|
|
4398
4407
|
# resp.db_instance.pending_modified_values.processor_features[0].value #=> String
|
|
4408
|
+
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
4399
4409
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
4400
4410
|
# resp.db_instance.multi_az #=> Boolean
|
|
4401
4411
|
# resp.db_instance.engine_version #=> String
|
|
@@ -5564,6 +5574,14 @@ module Aws::RDS
|
|
|
5564
5574
|
# resp.db_cluster.tag_list[0].value #=> String
|
|
5565
5575
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
|
5566
5576
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
|
5577
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
|
5578
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
|
5579
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
|
5580
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
|
5581
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
|
5582
|
+
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
|
5583
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
5584
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
|
5567
5585
|
#
|
|
5568
5586
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBCluster AWS API Documentation
|
|
5569
5587
|
#
|
|
@@ -5935,6 +5953,7 @@ module Aws::RDS
|
|
|
5935
5953
|
# resp.db_instance.pending_modified_values.processor_features #=> Array
|
|
5936
5954
|
# resp.db_instance.pending_modified_values.processor_features[0].name #=> String
|
|
5937
5955
|
# resp.db_instance.pending_modified_values.processor_features[0].value #=> String
|
|
5956
|
+
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
5938
5957
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
5939
5958
|
# resp.db_instance.multi_az #=> Boolean
|
|
5940
5959
|
# resp.db_instance.engine_version #=> String
|
|
@@ -7630,6 +7649,14 @@ module Aws::RDS
|
|
|
7630
7649
|
# resp.db_clusters[0].tag_list[0].value #=> String
|
|
7631
7650
|
# resp.db_clusters[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
|
7632
7651
|
# resp.db_clusters[0].global_write_forwarding_requested #=> Boolean
|
|
7652
|
+
# resp.db_clusters[0].pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
|
7653
|
+
# resp.db_clusters[0].pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
|
7654
|
+
# resp.db_clusters[0].pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
|
7655
|
+
# resp.db_clusters[0].pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
|
7656
|
+
# resp.db_clusters[0].pending_modified_values.db_cluster_identifier #=> String
|
|
7657
|
+
# resp.db_clusters[0].pending_modified_values.master_user_password #=> String
|
|
7658
|
+
# resp.db_clusters[0].pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
7659
|
+
# resp.db_clusters[0].pending_modified_values.engine_version #=> String
|
|
7633
7660
|
#
|
|
7634
7661
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusters AWS API Documentation
|
|
7635
7662
|
#
|
|
@@ -8072,6 +8099,7 @@ module Aws::RDS
|
|
|
8072
8099
|
# resp.db_instances[0].pending_modified_values.processor_features #=> Array
|
|
8073
8100
|
# resp.db_instances[0].pending_modified_values.processor_features[0].name #=> String
|
|
8074
8101
|
# resp.db_instances[0].pending_modified_values.processor_features[0].value #=> String
|
|
8102
|
+
# resp.db_instances[0].pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
8075
8103
|
# resp.db_instances[0].latest_restorable_time #=> Time
|
|
8076
8104
|
# resp.db_instances[0].multi_az #=> Boolean
|
|
8077
8105
|
# resp.db_instances[0].engine_version #=> String
|
|
@@ -11026,6 +11054,14 @@ module Aws::RDS
|
|
|
11026
11054
|
# resp.db_cluster.tag_list[0].value #=> String
|
|
11027
11055
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
|
11028
11056
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
|
11057
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
|
11058
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
|
11059
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
|
11060
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
|
11061
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
|
11062
|
+
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
|
11063
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
11064
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
|
11029
11065
|
#
|
|
11030
11066
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverDBCluster AWS API Documentation
|
|
11031
11067
|
#
|
|
@@ -11807,6 +11843,14 @@ module Aws::RDS
|
|
|
11807
11843
|
# resp.db_cluster.tag_list[0].value #=> String
|
|
11808
11844
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
|
11809
11845
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
|
11846
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
|
11847
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
|
11848
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
|
11849
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
|
11850
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
|
11851
|
+
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
|
11852
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
11853
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
|
11810
11854
|
#
|
|
11811
11855
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBCluster AWS API Documentation
|
|
11812
11856
|
#
|
|
@@ -12893,6 +12937,7 @@ module Aws::RDS
|
|
|
12893
12937
|
# resp.db_instance.pending_modified_values.processor_features #=> Array
|
|
12894
12938
|
# resp.db_instance.pending_modified_values.processor_features[0].name #=> String
|
|
12895
12939
|
# resp.db_instance.pending_modified_values.processor_features[0].value #=> String
|
|
12940
|
+
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
12896
12941
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
12897
12942
|
# resp.db_instance.multi_az #=> Boolean
|
|
12898
12943
|
# resp.db_instance.engine_version #=> String
|
|
@@ -13986,6 +14031,7 @@ module Aws::RDS
|
|
|
13986
14031
|
# resp.db_instance.pending_modified_values.processor_features #=> Array
|
|
13987
14032
|
# resp.db_instance.pending_modified_values.processor_features[0].name #=> String
|
|
13988
14033
|
# resp.db_instance.pending_modified_values.processor_features[0].value #=> String
|
|
14034
|
+
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
13989
14035
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
13990
14036
|
# resp.db_instance.multi_az #=> Boolean
|
|
13991
14037
|
# resp.db_instance.engine_version #=> String
|
|
@@ -14173,6 +14219,14 @@ module Aws::RDS
|
|
|
14173
14219
|
# resp.db_cluster.tag_list[0].value #=> String
|
|
14174
14220
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
|
14175
14221
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
|
14222
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
|
14223
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
|
14224
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
|
14225
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
|
14226
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
|
14227
|
+
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
|
14228
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
14229
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
|
14176
14230
|
#
|
|
14177
14231
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplicaDBCluster AWS API Documentation
|
|
14178
14232
|
#
|
|
@@ -14388,6 +14442,7 @@ module Aws::RDS
|
|
|
14388
14442
|
# resp.db_instance.pending_modified_values.processor_features #=> Array
|
|
14389
14443
|
# resp.db_instance.pending_modified_values.processor_features[0].name #=> String
|
|
14390
14444
|
# resp.db_instance.pending_modified_values.processor_features[0].value #=> String
|
|
14445
|
+
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
14391
14446
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
14392
14447
|
# resp.db_instance.multi_az #=> Boolean
|
|
14393
14448
|
# resp.db_instance.engine_version #=> String
|
|
@@ -15403,6 +15458,14 @@ module Aws::RDS
|
|
|
15403
15458
|
# resp.db_cluster.tag_list[0].value #=> String
|
|
15404
15459
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
|
15405
15460
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
|
15461
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
|
15462
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
|
15463
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
|
15464
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
|
15465
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
|
15466
|
+
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
|
15467
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
15468
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
|
15406
15469
|
#
|
|
15407
15470
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3 AWS API Documentation
|
|
15408
15471
|
#
|
|
@@ -15797,6 +15860,14 @@ module Aws::RDS
|
|
|
15797
15860
|
# resp.db_cluster.tag_list[0].value #=> String
|
|
15798
15861
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
|
15799
15862
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
|
15863
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
|
15864
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
|
15865
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
|
15866
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
|
15867
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
|
15868
|
+
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
|
15869
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
15870
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
|
15800
15871
|
#
|
|
15801
15872
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshot AWS API Documentation
|
|
15802
15873
|
#
|
|
@@ -16168,6 +16239,14 @@ module Aws::RDS
|
|
|
16168
16239
|
# resp.db_cluster.tag_list[0].value #=> String
|
|
16169
16240
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
|
16170
16241
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
|
16242
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
|
16243
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
|
16244
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
|
16245
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
|
16246
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
|
16247
|
+
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
|
16248
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
16249
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
|
16171
16250
|
#
|
|
16172
16251
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTime AWS API Documentation
|
|
16173
16252
|
#
|
|
@@ -16678,6 +16757,7 @@ module Aws::RDS
|
|
|
16678
16757
|
# resp.db_instance.pending_modified_values.processor_features #=> Array
|
|
16679
16758
|
# resp.db_instance.pending_modified_values.processor_features[0].name #=> String
|
|
16680
16759
|
# resp.db_instance.pending_modified_values.processor_features[0].value #=> String
|
|
16760
|
+
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
16681
16761
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
16682
16762
|
# resp.db_instance.multi_az #=> Boolean
|
|
16683
16763
|
# resp.db_instance.engine_version #=> String
|
|
@@ -17246,6 +17326,7 @@ module Aws::RDS
|
|
|
17246
17326
|
# resp.db_instance.pending_modified_values.processor_features #=> Array
|
|
17247
17327
|
# resp.db_instance.pending_modified_values.processor_features[0].name #=> String
|
|
17248
17328
|
# resp.db_instance.pending_modified_values.processor_features[0].value #=> String
|
|
17329
|
+
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
17249
17330
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
17250
17331
|
# resp.db_instance.multi_az #=> Boolean
|
|
17251
17332
|
# resp.db_instance.engine_version #=> String
|
|
@@ -17841,6 +17922,7 @@ module Aws::RDS
|
|
|
17841
17922
|
# resp.db_instance.pending_modified_values.processor_features #=> Array
|
|
17842
17923
|
# resp.db_instance.pending_modified_values.processor_features[0].name #=> String
|
|
17843
17924
|
# resp.db_instance.pending_modified_values.processor_features[0].value #=> String
|
|
17925
|
+
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
17844
17926
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
17845
17927
|
# resp.db_instance.multi_az #=> Boolean
|
|
17846
17928
|
# resp.db_instance.engine_version #=> String
|
|
@@ -18180,6 +18262,14 @@ module Aws::RDS
|
|
|
18180
18262
|
# resp.db_cluster.tag_list[0].value #=> String
|
|
18181
18263
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
|
18182
18264
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
|
18265
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
|
18266
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
|
18267
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
|
18268
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
|
18269
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
|
18270
|
+
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
|
18271
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
18272
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
|
18183
18273
|
#
|
|
18184
18274
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBCluster AWS API Documentation
|
|
18185
18275
|
#
|
|
@@ -18275,6 +18365,7 @@ module Aws::RDS
|
|
|
18275
18365
|
# resp.db_instance.pending_modified_values.processor_features #=> Array
|
|
18276
18366
|
# resp.db_instance.pending_modified_values.processor_features[0].name #=> String
|
|
18277
18367
|
# resp.db_instance.pending_modified_values.processor_features[0].value #=> String
|
|
18368
|
+
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
18278
18369
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
18279
18370
|
# resp.db_instance.multi_az #=> Boolean
|
|
18280
18371
|
# resp.db_instance.engine_version #=> String
|
|
@@ -18726,6 +18817,14 @@ module Aws::RDS
|
|
|
18726
18817
|
# resp.db_cluster.tag_list[0].value #=> String
|
|
18727
18818
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
|
18728
18819
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
|
18820
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
|
18821
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
|
18822
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
|
18823
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
|
18824
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
|
18825
|
+
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
|
18826
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
18827
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
|
18729
18828
|
#
|
|
18730
18829
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBCluster AWS API Documentation
|
|
18731
18830
|
#
|
|
@@ -18828,6 +18927,7 @@ module Aws::RDS
|
|
|
18828
18927
|
# resp.db_instance.pending_modified_values.processor_features #=> Array
|
|
18829
18928
|
# resp.db_instance.pending_modified_values.processor_features[0].name #=> String
|
|
18830
18929
|
# resp.db_instance.pending_modified_values.processor_features[0].value #=> String
|
|
18930
|
+
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
18831
18931
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
18832
18932
|
# resp.db_instance.multi_az #=> Boolean
|
|
18833
18933
|
# resp.db_instance.engine_version #=> String
|
|
@@ -18982,7 +19082,7 @@ module Aws::RDS
|
|
|
18982
19082
|
params: params,
|
|
18983
19083
|
config: config)
|
|
18984
19084
|
context[:gem_name] = 'aws-sdk-rds'
|
|
18985
|
-
context[:gem_version] = '1.
|
|
19085
|
+
context[:gem_version] = '1.108.0'
|
|
18986
19086
|
Seahorse::Client::Request.new(handlers, context)
|
|
18987
19087
|
end
|
|
18988
19088
|
|
|
@@ -49,6 +49,7 @@ module Aws::RDS
|
|
|
49
49
|
CertificateNotFoundFault = Shapes::StructureShape.new(name: 'CertificateNotFoundFault')
|
|
50
50
|
CharacterSet = Shapes::StructureShape.new(name: 'CharacterSet')
|
|
51
51
|
CloudwatchLogsExportConfiguration = Shapes::StructureShape.new(name: 'CloudwatchLogsExportConfiguration')
|
|
52
|
+
ClusterPendingModifiedValues = Shapes::StructureShape.new(name: 'ClusterPendingModifiedValues')
|
|
52
53
|
ConnectionPoolConfiguration = Shapes::StructureShape.new(name: 'ConnectionPoolConfiguration')
|
|
53
54
|
ConnectionPoolConfigurationInfo = Shapes::StructureShape.new(name: 'ConnectionPoolConfigurationInfo')
|
|
54
55
|
CopyDBClusterParameterGroupMessage = Shapes::StructureShape.new(name: 'CopyDBClusterParameterGroupMessage')
|
|
@@ -683,6 +684,13 @@ module Aws::RDS
|
|
|
683
684
|
CloudwatchLogsExportConfiguration.add_member(:disable_log_types, Shapes::ShapeRef.new(shape: LogTypeList, location_name: "DisableLogTypes"))
|
|
684
685
|
CloudwatchLogsExportConfiguration.struct_class = Types::CloudwatchLogsExportConfiguration
|
|
685
686
|
|
|
687
|
+
ClusterPendingModifiedValues.add_member(:pending_cloudwatch_logs_exports, Shapes::ShapeRef.new(shape: PendingCloudwatchLogsExports, location_name: "PendingCloudwatchLogsExports"))
|
|
688
|
+
ClusterPendingModifiedValues.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterIdentifier"))
|
|
689
|
+
ClusterPendingModifiedValues.add_member(:master_user_password, Shapes::ShapeRef.new(shape: String, location_name: "MasterUserPassword"))
|
|
690
|
+
ClusterPendingModifiedValues.add_member(:iam_database_authentication_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "IAMDatabaseAuthenticationEnabled"))
|
|
691
|
+
ClusterPendingModifiedValues.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
|
|
692
|
+
ClusterPendingModifiedValues.struct_class = Types::ClusterPendingModifiedValues
|
|
693
|
+
|
|
686
694
|
ConnectionPoolConfiguration.add_member(:max_connections_percent, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxConnectionsPercent"))
|
|
687
695
|
ConnectionPoolConfiguration.add_member(:max_idle_connections_percent, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxIdleConnectionsPercent"))
|
|
688
696
|
ConnectionPoolConfiguration.add_member(:connection_borrow_timeout, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "ConnectionBorrowTimeout"))
|
|
@@ -1069,6 +1077,7 @@ module Aws::RDS
|
|
|
1069
1077
|
DBCluster.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
|
1070
1078
|
DBCluster.add_member(:global_write_forwarding_status, Shapes::ShapeRef.new(shape: WriteForwardingStatus, location_name: "GlobalWriteForwardingStatus"))
|
|
1071
1079
|
DBCluster.add_member(:global_write_forwarding_requested, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "GlobalWriteForwardingRequested"))
|
|
1080
|
+
DBCluster.add_member(:pending_modified_values, Shapes::ShapeRef.new(shape: ClusterPendingModifiedValues, location_name: "PendingModifiedValues"))
|
|
1072
1081
|
DBCluster.struct_class = Types::DBCluster
|
|
1073
1082
|
|
|
1074
1083
|
DBClusterAlreadyExistsFault.struct_class = Types::DBClusterAlreadyExistsFault
|
|
@@ -2645,6 +2654,7 @@ module Aws::RDS
|
|
|
2645
2654
|
PendingModifiedValues.add_member(:db_subnet_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBSubnetGroupName"))
|
|
2646
2655
|
PendingModifiedValues.add_member(:pending_cloudwatch_logs_exports, Shapes::ShapeRef.new(shape: PendingCloudwatchLogsExports, location_name: "PendingCloudwatchLogsExports"))
|
|
2647
2656
|
PendingModifiedValues.add_member(:processor_features, Shapes::ShapeRef.new(shape: ProcessorFeatureList, location_name: "ProcessorFeatures"))
|
|
2657
|
+
PendingModifiedValues.add_member(:iam_database_authentication_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "IAMDatabaseAuthenticationEnabled"))
|
|
2648
2658
|
PendingModifiedValues.struct_class = Types::PendingModifiedValues
|
|
2649
2659
|
|
|
2650
2660
|
PointInTimeRestoreNotEnabledFault.struct_class = Types::PointInTimeRestoreNotEnabledFault
|
|
@@ -471,6 +471,14 @@ module Aws::RDS
|
|
|
471
471
|
data[:global_write_forwarding_requested]
|
|
472
472
|
end
|
|
473
473
|
|
|
474
|
+
# Specifies that changes to the DB cluster are pending. This element is
|
|
475
|
+
# only included when changes are pending. Specific changes are
|
|
476
|
+
# identified by subelements.
|
|
477
|
+
# @return [Types::ClusterPendingModifiedValues]
|
|
478
|
+
def pending_modified_values
|
|
479
|
+
data[:pending_modified_values]
|
|
480
|
+
end
|
|
481
|
+
|
|
474
482
|
# @!endgroup
|
|
475
483
|
|
|
476
484
|
# @return [Client]
|
|
@@ -777,8 +777,8 @@ module Aws::RDS
|
|
|
777
777
|
# **PostgreSQL**
|
|
778
778
|
#
|
|
779
779
|
# The name of the database to create when the DB instance is created. If
|
|
780
|
-
# this parameter isn't specified,
|
|
781
|
-
#
|
|
780
|
+
# this parameter isn't specified, no database is created in the DB
|
|
781
|
+
# instance.
|
|
782
782
|
#
|
|
783
783
|
# Constraints:
|
|
784
784
|
#
|
|
@@ -1764,9 +1764,9 @@ module Aws::RDS
|
|
|
1764
1764
|
# name for the AWS KMS CMK.
|
|
1765
1765
|
#
|
|
1766
1766
|
# If you create an encrypted read replica in the same AWS Region as the
|
|
1767
|
-
# source DB instance, then
|
|
1768
|
-
#
|
|
1769
|
-
# the source DB instance.
|
|
1767
|
+
# source DB instance, then do not specify a value for this parameter. A
|
|
1768
|
+
# read replica in the same Region is always encrypted with the same AWS
|
|
1769
|
+
# KMS CMK as the source DB instance.
|
|
1770
1770
|
#
|
|
1771
1771
|
# If you create an encrypted read replica in a different AWS Region,
|
|
1772
1772
|
# then you must specify a AWS KMS key identifier for the destination AWS
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
|
@@ -623,8 +623,8 @@ module Aws::RDS
|
|
|
623
623
|
# **PostgreSQL**
|
|
624
624
|
#
|
|
625
625
|
# The name of the database to create when the DB instance is created. If
|
|
626
|
-
# this parameter isn't specified,
|
|
627
|
-
#
|
|
626
|
+
# this parameter isn't specified, no database is created in the DB
|
|
627
|
+
# instance.
|
|
628
628
|
#
|
|
629
629
|
# Constraints:
|
|
630
630
|
#
|
data/lib/aws-sdk-rds/types.rb
CHANGED
|
@@ -755,6 +755,45 @@ module Aws::RDS
|
|
|
755
755
|
include Aws::Structure
|
|
756
756
|
end
|
|
757
757
|
|
|
758
|
+
# This data type is used as a response element in the `ModifyDBCluster`
|
|
759
|
+
# operation and contains changes that will be applied during the next
|
|
760
|
+
# maintenance window.
|
|
761
|
+
#
|
|
762
|
+
# @!attribute [rw] pending_cloudwatch_logs_exports
|
|
763
|
+
# A list of the log types whose configuration is still pending. In
|
|
764
|
+
# other words, these log types are in the process of being activated
|
|
765
|
+
# or deactivated.
|
|
766
|
+
# @return [Types::PendingCloudwatchLogsExports]
|
|
767
|
+
#
|
|
768
|
+
# @!attribute [rw] db_cluster_identifier
|
|
769
|
+
# The DBClusterIdentifier for the DB cluster.
|
|
770
|
+
# @return [String]
|
|
771
|
+
#
|
|
772
|
+
# @!attribute [rw] master_user_password
|
|
773
|
+
# The master credentials for the DB cluster.
|
|
774
|
+
# @return [String]
|
|
775
|
+
#
|
|
776
|
+
# @!attribute [rw] iam_database_authentication_enabled
|
|
777
|
+
# Whether mapping of AWS Identity and Access Management (IAM) accounts
|
|
778
|
+
# to database accounts is enabled.
|
|
779
|
+
# @return [Boolean]
|
|
780
|
+
#
|
|
781
|
+
# @!attribute [rw] engine_version
|
|
782
|
+
# The database engine version.
|
|
783
|
+
# @return [String]
|
|
784
|
+
#
|
|
785
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ClusterPendingModifiedValues AWS API Documentation
|
|
786
|
+
#
|
|
787
|
+
class ClusterPendingModifiedValues < Struct.new(
|
|
788
|
+
:pending_cloudwatch_logs_exports,
|
|
789
|
+
:db_cluster_identifier,
|
|
790
|
+
:master_user_password,
|
|
791
|
+
:iam_database_authentication_enabled,
|
|
792
|
+
:engine_version)
|
|
793
|
+
SENSITIVE = []
|
|
794
|
+
include Aws::Structure
|
|
795
|
+
end
|
|
796
|
+
|
|
758
797
|
# Specifies the settings that control the size and behavior of the
|
|
759
798
|
# connection pool associated with a `DBProxyTargetGroup`.
|
|
760
799
|
#
|
|
@@ -2485,8 +2524,8 @@ module Aws::RDS
|
|
|
2485
2524
|
# **PostgreSQL**
|
|
2486
2525
|
#
|
|
2487
2526
|
# The name of the database to create when the DB instance is created.
|
|
2488
|
-
# If this parameter isn't specified, the
|
|
2489
|
-
#
|
|
2527
|
+
# If this parameter isn't specified, no database is created in the DB
|
|
2528
|
+
# instance.
|
|
2490
2529
|
#
|
|
2491
2530
|
# Constraints:
|
|
2492
2531
|
#
|
|
@@ -3709,9 +3748,9 @@ module Aws::RDS
|
|
|
3709
3748
|
# alias name for the AWS KMS CMK.
|
|
3710
3749
|
#
|
|
3711
3750
|
# If you create an encrypted read replica in the same AWS Region as
|
|
3712
|
-
# the source DB instance, then
|
|
3713
|
-
#
|
|
3714
|
-
# CMK as the source DB instance.
|
|
3751
|
+
# the source DB instance, then do not specify a value for this
|
|
3752
|
+
# parameter. A read replica in the same Region is always encrypted
|
|
3753
|
+
# with the same AWS KMS CMK as the source DB instance.
|
|
3715
3754
|
#
|
|
3716
3755
|
# If you create an encrypted read replica in a different AWS Region,
|
|
3717
3756
|
# then you must specify a AWS KMS key identifier for the destination
|
|
@@ -5080,6 +5119,12 @@ module Aws::RDS
|
|
|
5080
5119
|
# cluster.
|
|
5081
5120
|
# @return [Boolean]
|
|
5082
5121
|
#
|
|
5122
|
+
# @!attribute [rw] pending_modified_values
|
|
5123
|
+
# Specifies that changes to the DB cluster are pending. This element
|
|
5124
|
+
# is only included when changes are pending. Specific changes are
|
|
5125
|
+
# identified by subelements.
|
|
5126
|
+
# @return [Types::ClusterPendingModifiedValues]
|
|
5127
|
+
#
|
|
5083
5128
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBCluster AWS API Documentation
|
|
5084
5129
|
#
|
|
5085
5130
|
class DBCluster < Struct.new(
|
|
@@ -5137,7 +5182,8 @@ module Aws::RDS
|
|
|
5137
5182
|
:domain_memberships,
|
|
5138
5183
|
:tag_list,
|
|
5139
5184
|
:global_write_forwarding_status,
|
|
5140
|
-
:global_write_forwarding_requested
|
|
5185
|
+
:global_write_forwarding_requested,
|
|
5186
|
+
:pending_modified_values)
|
|
5141
5187
|
SENSITIVE = []
|
|
5142
5188
|
include Aws::Structure
|
|
5143
5189
|
end
|
|
@@ -12039,6 +12085,10 @@ module Aws::RDS
|
|
|
12039
12085
|
include Aws::Structure
|
|
12040
12086
|
end
|
|
12041
12087
|
|
|
12088
|
+
# The `GlobalClusterIdentifier` already exists. Choose a new global
|
|
12089
|
+
# database identifier (unique name) to create a new global database
|
|
12090
|
+
# cluster.
|
|
12091
|
+
#
|
|
12042
12092
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/GlobalClusterAlreadyExistsFault AWS API Documentation
|
|
12043
12093
|
#
|
|
12044
12094
|
class GlobalClusterAlreadyExistsFault < Aws::EmptyStructure; end
|
|
@@ -12078,10 +12128,16 @@ module Aws::RDS
|
|
|
12078
12128
|
include Aws::Structure
|
|
12079
12129
|
end
|
|
12080
12130
|
|
|
12131
|
+
# The `GlobalClusterIdentifier` doesn't refer to an existing global
|
|
12132
|
+
# database cluster.
|
|
12133
|
+
#
|
|
12081
12134
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/GlobalClusterNotFoundFault AWS API Documentation
|
|
12082
12135
|
#
|
|
12083
12136
|
class GlobalClusterNotFoundFault < Aws::EmptyStructure; end
|
|
12084
12137
|
|
|
12138
|
+
# The number of global database clusters for this account is already at
|
|
12139
|
+
# the maximum allowed.
|
|
12140
|
+
#
|
|
12085
12141
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/GlobalClusterQuotaExceededFault AWS API Documentation
|
|
12086
12142
|
#
|
|
12087
12143
|
class GlobalClusterQuotaExceededFault < Aws::EmptyStructure; end
|
|
@@ -12469,6 +12525,9 @@ module Aws::RDS
|
|
|
12469
12525
|
#
|
|
12470
12526
|
class InvalidExportTaskStateFault < Aws::EmptyStructure; end
|
|
12471
12527
|
|
|
12528
|
+
# The global cluster is in an invalid state and can't perform the
|
|
12529
|
+
# requested operation.
|
|
12530
|
+
#
|
|
12472
12531
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/InvalidGlobalClusterStateFault AWS API Documentation
|
|
12473
12532
|
#
|
|
12474
12533
|
class InvalidGlobalClusterStateFault < Aws::EmptyStructure; end
|
|
@@ -15575,39 +15634,38 @@ module Aws::RDS
|
|
|
15575
15634
|
end
|
|
15576
15635
|
|
|
15577
15636
|
# This data type is used as a response element in the `ModifyDBInstance`
|
|
15578
|
-
# action
|
|
15637
|
+
# action and contains changes that will be applied during the next
|
|
15638
|
+
# maintenance window.
|
|
15579
15639
|
#
|
|
15580
15640
|
# @!attribute [rw] db_instance_class
|
|
15581
|
-
#
|
|
15582
|
-
#
|
|
15641
|
+
# The name of the compute and memory capacity class for the DB
|
|
15642
|
+
# instance.
|
|
15583
15643
|
# @return [String]
|
|
15584
15644
|
#
|
|
15585
15645
|
# @!attribute [rw] allocated_storage
|
|
15586
|
-
#
|
|
15587
|
-
#
|
|
15646
|
+
# The allocated storage size for the DB instance specified in
|
|
15647
|
+
# gibibytes .
|
|
15588
15648
|
# @return [Integer]
|
|
15589
15649
|
#
|
|
15590
15650
|
# @!attribute [rw] master_user_password
|
|
15591
|
-
#
|
|
15592
|
-
# credentials for the DB instance.
|
|
15651
|
+
# The master credentials for the DB instance.
|
|
15593
15652
|
# @return [String]
|
|
15594
15653
|
#
|
|
15595
15654
|
# @!attribute [rw] port
|
|
15596
|
-
#
|
|
15655
|
+
# The port for the DB instance.
|
|
15597
15656
|
# @return [Integer]
|
|
15598
15657
|
#
|
|
15599
15658
|
# @!attribute [rw] backup_retention_period
|
|
15600
|
-
#
|
|
15601
|
-
# retained.
|
|
15659
|
+
# The number of days for which automated backups are retained.
|
|
15602
15660
|
# @return [Integer]
|
|
15603
15661
|
#
|
|
15604
15662
|
# @!attribute [rw] multi_az
|
|
15605
|
-
# Indicates that the Single-AZ DB instance
|
|
15663
|
+
# Indicates that the Single-AZ DB instance will change to a Multi-AZ
|
|
15606
15664
|
# deployment.
|
|
15607
15665
|
# @return [Boolean]
|
|
15608
15666
|
#
|
|
15609
15667
|
# @!attribute [rw] engine_version
|
|
15610
|
-
#
|
|
15668
|
+
# The database engine version.
|
|
15611
15669
|
# @return [String]
|
|
15612
15670
|
#
|
|
15613
15671
|
# @!attribute [rw] license_model
|
|
@@ -15618,25 +15676,23 @@ module Aws::RDS
|
|
|
15618
15676
|
# @return [String]
|
|
15619
15677
|
#
|
|
15620
15678
|
# @!attribute [rw] iops
|
|
15621
|
-
#
|
|
15622
|
-
# will be applied or is currently being applied.
|
|
15679
|
+
# The Provisioned IOPS value for the DB instance.
|
|
15623
15680
|
# @return [Integer]
|
|
15624
15681
|
#
|
|
15625
15682
|
# @!attribute [rw] db_instance_identifier
|
|
15626
|
-
#
|
|
15627
|
-
# will be applied or is currently being applied.
|
|
15683
|
+
# The database identifier for the DB instance.
|
|
15628
15684
|
# @return [String]
|
|
15629
15685
|
#
|
|
15630
15686
|
# @!attribute [rw] storage_type
|
|
15631
|
-
#
|
|
15687
|
+
# The storage type of the DB instance.
|
|
15632
15688
|
# @return [String]
|
|
15633
15689
|
#
|
|
15634
15690
|
# @!attribute [rw] ca_certificate_identifier
|
|
15635
|
-
#
|
|
15691
|
+
# The identifier of the CA certificate for the DB instance.
|
|
15636
15692
|
# @return [String]
|
|
15637
15693
|
#
|
|
15638
15694
|
# @!attribute [rw] db_subnet_group_name
|
|
15639
|
-
# The
|
|
15695
|
+
# The DB subnet group for the DB instance.
|
|
15640
15696
|
# @return [String]
|
|
15641
15697
|
#
|
|
15642
15698
|
# @!attribute [rw] pending_cloudwatch_logs_exports
|
|
@@ -15650,6 +15706,11 @@ module Aws::RDS
|
|
|
15650
15706
|
# DB instance class of the DB instance.
|
|
15651
15707
|
# @return [Array<Types::ProcessorFeature>]
|
|
15652
15708
|
#
|
|
15709
|
+
# @!attribute [rw] iam_database_authentication_enabled
|
|
15710
|
+
# Whether mapping of AWS Identity and Access Management (IAM) accounts
|
|
15711
|
+
# to database accounts is enabled.
|
|
15712
|
+
# @return [Boolean]
|
|
15713
|
+
#
|
|
15653
15714
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PendingModifiedValues AWS API Documentation
|
|
15654
15715
|
#
|
|
15655
15716
|
class PendingModifiedValues < Struct.new(
|
|
@@ -15667,7 +15728,8 @@ module Aws::RDS
|
|
|
15667
15728
|
:ca_certificate_identifier,
|
|
15668
15729
|
:db_subnet_group_name,
|
|
15669
15730
|
:pending_cloudwatch_logs_exports,
|
|
15670
|
-
:processor_features
|
|
15731
|
+
:processor_features,
|
|
15732
|
+
:iam_database_authentication_enabled)
|
|
15671
15733
|
SENSITIVE = []
|
|
15672
15734
|
include Aws::Structure
|
|
15673
15735
|
end
|
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.108.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: 2020-12-
|
|
11
|
+
date: 2020-12-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sigv4
|