aws-sdk-rds 1.103.0 → 1.104.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 +121 -10
- data/lib/aws-sdk-rds/client_api.rb +4 -0
- data/lib/aws-sdk-rds/db_cluster.rb +31 -14
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +17 -0
- data/lib/aws-sdk-rds/db_engine_version.rb +0 -6
- data/lib/aws-sdk-rds/db_instance.rb +11 -0
- data/lib/aws-sdk-rds/db_snapshot.rb +11 -0
- data/lib/aws-sdk-rds/resource.rb +15 -6
- data/lib/aws-sdk-rds/types.rb +68 -31
- 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: 7a86ffd222f9732afc490971f229299c727adee8d2cdbaea6b4eafc67ce1f878
|
4
|
+
data.tar.gz: 489dc7c853da4b6c67adfbf74f6d7bad3ae6bae28f5702b6faf7ef4d60da29e0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 604c2771f9368acc2186a32b1f499927b4bb6381392a79d8797d07d9addf69759f62ff5895cb594cf539f70ee9a4641e25d30747152b04d961f29b0668197f49
|
7
|
+
data.tar.gz: 929c3fa3832cd88adb1b3748879b70062b670f348d970e9192879c6a561569b7fab120f79d7aab5e5a2ad813f3c89c72ce01d59d24751a7eeff56f11195fd043
|
data/lib/aws-sdk-rds.rb
CHANGED
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -1281,6 +1281,9 @@ module Aws::RDS
|
|
1281
1281
|
# resp.db_cluster_snapshot.db_cluster_snapshot_arn #=> String
|
1282
1282
|
# resp.db_cluster_snapshot.source_db_cluster_snapshot_arn #=> String
|
1283
1283
|
# resp.db_cluster_snapshot.iam_database_authentication_enabled #=> Boolean
|
1284
|
+
# resp.db_cluster_snapshot.tag_list #=> Array
|
1285
|
+
# resp.db_cluster_snapshot.tag_list[0].key #=> String
|
1286
|
+
# resp.db_cluster_snapshot.tag_list[0].value #=> String
|
1284
1287
|
#
|
1285
1288
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBClusterSnapshot AWS API Documentation
|
1286
1289
|
#
|
@@ -1387,7 +1390,7 @@ module Aws::RDS
|
|
1387
1390
|
end
|
1388
1391
|
|
1389
1392
|
# Copies the specified DB snapshot. The source DB snapshot must be in
|
1390
|
-
# the `available`
|
1393
|
+
# the `available` state.
|
1391
1394
|
#
|
1392
1395
|
# You can copy a snapshot from one AWS Region to another. In that case,
|
1393
1396
|
# the AWS Region where you call the `CopyDBSnapshot` action is the
|
@@ -1624,6 +1627,9 @@ module Aws::RDS
|
|
1624
1627
|
# resp.db_snapshot.processor_features[0].name #=> String
|
1625
1628
|
# resp.db_snapshot.processor_features[0].value #=> String
|
1626
1629
|
# resp.db_snapshot.dbi_resource_id #=> String
|
1630
|
+
# resp.db_snapshot.tag_list #=> Array
|
1631
|
+
# resp.db_snapshot.tag_list[0].key #=> String
|
1632
|
+
# resp.db_snapshot.tag_list[0].value #=> String
|
1627
1633
|
#
|
1628
1634
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBSnapshot AWS API Documentation
|
1629
1635
|
#
|
@@ -2145,14 +2151,23 @@ module Aws::RDS
|
|
2145
2151
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
2146
2152
|
#
|
2147
2153
|
# @option params [String] :engine_mode
|
2148
|
-
# The DB engine mode of the DB cluster, either `provisioned
|
2154
|
+
# The DB engine mode of the DB cluster, either `provisioned`
|
2149
2155
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
2150
2156
|
#
|
2151
|
-
#
|
2152
|
-
#
|
2153
|
-
#
|
2157
|
+
# The `parallelquery` engine mode isn't required for Aurora MySQL
|
2158
|
+
# version 1.23 and higher 1.x versions, and version 2.09 and higher 2.x
|
2159
|
+
# versions.
|
2154
2160
|
#
|
2155
|
-
#
|
2161
|
+
# The `global` engine mode isn't required for Aurora MySQL version 1.22
|
2162
|
+
# and higher 1.x versions, and `global` engine mode isn't required for
|
2163
|
+
# any 2.x versions.
|
2164
|
+
#
|
2165
|
+
# The `multimaster` engine mode only applies for DB clusters created
|
2166
|
+
# with Aurora MySQL version 5.6.10a.
|
2167
|
+
#
|
2168
|
+
# For Aurora PostgreSQL, the `global` engine mode isn't required, and
|
2169
|
+
# both the `parallelquery` and the `multimaster` engine modes currently
|
2170
|
+
# aren't supported.
|
2156
2171
|
#
|
2157
2172
|
# Limitations and requirements apply to some DB engine modes. For more
|
2158
2173
|
# information, see the following sections in the *Amazon Aurora User
|
@@ -2162,7 +2177,7 @@ module Aws::RDS
|
|
2162
2177
|
#
|
2163
2178
|
# * [ Limitations of Parallel Query][2]
|
2164
2179
|
#
|
2165
|
-
# * [
|
2180
|
+
# * [ Limitations of Aurora Global Databases][3]
|
2166
2181
|
#
|
2167
2182
|
# * [ Limitations of Multi-Master Clusters][4]
|
2168
2183
|
#
|
@@ -2393,6 +2408,9 @@ module Aws::RDS
|
|
2393
2408
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
2394
2409
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
2395
2410
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
2411
|
+
# resp.db_cluster.tag_list #=> Array
|
2412
|
+
# resp.db_cluster.tag_list[0].key #=> String
|
2413
|
+
# resp.db_cluster.tag_list[0].value #=> String
|
2396
2414
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
2397
2415
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
2398
2416
|
#
|
@@ -2710,6 +2728,9 @@ module Aws::RDS
|
|
2710
2728
|
# resp.db_cluster_snapshot.db_cluster_snapshot_arn #=> String
|
2711
2729
|
# resp.db_cluster_snapshot.source_db_cluster_snapshot_arn #=> String
|
2712
2730
|
# resp.db_cluster_snapshot.iam_database_authentication_enabled #=> Boolean
|
2731
|
+
# resp.db_cluster_snapshot.tag_list #=> Array
|
2732
|
+
# resp.db_cluster_snapshot.tag_list[0].key #=> String
|
2733
|
+
# resp.db_cluster_snapshot.tag_list[0].value #=> String
|
2713
2734
|
#
|
2714
2735
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBClusterSnapshot AWS API Documentation
|
2715
2736
|
#
|
@@ -3807,6 +3828,9 @@ module Aws::RDS
|
|
3807
3828
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
3808
3829
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
3809
3830
|
# resp.db_instance.max_allocated_storage #=> Integer
|
3831
|
+
# resp.db_instance.tag_list #=> Array
|
3832
|
+
# resp.db_instance.tag_list[0].key #=> String
|
3833
|
+
# resp.db_instance.tag_list[0].value #=> String
|
3810
3834
|
#
|
3811
3835
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstance AWS API Documentation
|
3812
3836
|
#
|
@@ -4442,6 +4466,9 @@ module Aws::RDS
|
|
4442
4466
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
4443
4467
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
4444
4468
|
# resp.db_instance.max_allocated_storage #=> Integer
|
4469
|
+
# resp.db_instance.tag_list #=> Array
|
4470
|
+
# resp.db_instance.tag_list[0].key #=> String
|
4471
|
+
# resp.db_instance.tag_list[0].value #=> String
|
4445
4472
|
#
|
4446
4473
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceReadReplica AWS API Documentation
|
4447
4474
|
#
|
@@ -4772,8 +4799,8 @@ module Aws::RDS
|
|
4772
4799
|
req.send_request(options)
|
4773
4800
|
end
|
4774
4801
|
|
4775
|
-
# Creates a
|
4776
|
-
# state.
|
4802
|
+
# Creates a snapshot of a DB instance. The source DB instance must be in
|
4803
|
+
# the `available` or `storage-optimization`state.
|
4777
4804
|
#
|
4778
4805
|
# @option params [required, String] :db_snapshot_identifier
|
4779
4806
|
# The identifier for the DB snapshot.
|
@@ -4873,6 +4900,9 @@ module Aws::RDS
|
|
4873
4900
|
# resp.db_snapshot.processor_features[0].name #=> String
|
4874
4901
|
# resp.db_snapshot.processor_features[0].value #=> String
|
4875
4902
|
# resp.db_snapshot.dbi_resource_id #=> String
|
4903
|
+
# resp.db_snapshot.tag_list #=> Array
|
4904
|
+
# resp.db_snapshot.tag_list[0].key #=> String
|
4905
|
+
# resp.db_snapshot.tag_list[0].value #=> String
|
4876
4906
|
#
|
4877
4907
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBSnapshot AWS API Documentation
|
4878
4908
|
#
|
@@ -5535,6 +5565,9 @@ module Aws::RDS
|
|
5535
5565
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
5536
5566
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
5537
5567
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
5568
|
+
# resp.db_cluster.tag_list #=> Array
|
5569
|
+
# resp.db_cluster.tag_list[0].key #=> String
|
5570
|
+
# resp.db_cluster.tag_list[0].value #=> String
|
5538
5571
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
5539
5572
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
5540
5573
|
#
|
@@ -5726,6 +5759,9 @@ module Aws::RDS
|
|
5726
5759
|
# resp.db_cluster_snapshot.db_cluster_snapshot_arn #=> String
|
5727
5760
|
# resp.db_cluster_snapshot.source_db_cluster_snapshot_arn #=> String
|
5728
5761
|
# resp.db_cluster_snapshot.iam_database_authentication_enabled #=> Boolean
|
5762
|
+
# resp.db_cluster_snapshot.tag_list #=> Array
|
5763
|
+
# resp.db_cluster_snapshot.tag_list[0].key #=> String
|
5764
|
+
# resp.db_cluster_snapshot.tag_list[0].value #=> String
|
5729
5765
|
#
|
5730
5766
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBClusterSnapshot AWS API Documentation
|
5731
5767
|
#
|
@@ -5967,6 +6003,9 @@ module Aws::RDS
|
|
5967
6003
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
5968
6004
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
5969
6005
|
# resp.db_instance.max_allocated_storage #=> Integer
|
6006
|
+
# resp.db_instance.tag_list #=> Array
|
6007
|
+
# resp.db_instance.tag_list[0].key #=> String
|
6008
|
+
# resp.db_instance.tag_list[0].value #=> String
|
5970
6009
|
#
|
5971
6010
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstance AWS API Documentation
|
5972
6011
|
#
|
@@ -6238,6 +6277,9 @@ module Aws::RDS
|
|
6238
6277
|
# resp.db_snapshot.processor_features[0].name #=> String
|
6239
6278
|
# resp.db_snapshot.processor_features[0].value #=> String
|
6240
6279
|
# resp.db_snapshot.dbi_resource_id #=> String
|
6280
|
+
# resp.db_snapshot.tag_list #=> Array
|
6281
|
+
# resp.db_snapshot.tag_list[0].key #=> String
|
6282
|
+
# resp.db_snapshot.tag_list[0].value #=> String
|
6241
6283
|
#
|
6242
6284
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBSnapshot AWS API Documentation
|
6243
6285
|
#
|
@@ -7386,6 +7428,9 @@ module Aws::RDS
|
|
7386
7428
|
# resp.db_cluster_snapshots[0].db_cluster_snapshot_arn #=> String
|
7387
7429
|
# resp.db_cluster_snapshots[0].source_db_cluster_snapshot_arn #=> String
|
7388
7430
|
# resp.db_cluster_snapshots[0].iam_database_authentication_enabled #=> Boolean
|
7431
|
+
# resp.db_cluster_snapshots[0].tag_list #=> Array
|
7432
|
+
# resp.db_cluster_snapshots[0].tag_list[0].key #=> String
|
7433
|
+
# resp.db_cluster_snapshots[0].tag_list[0].value #=> String
|
7389
7434
|
#
|
7390
7435
|
#
|
7391
7436
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -7573,6 +7618,9 @@ module Aws::RDS
|
|
7573
7618
|
# resp.db_clusters[0].domain_memberships[0].status #=> String
|
7574
7619
|
# resp.db_clusters[0].domain_memberships[0].fqdn #=> String
|
7575
7620
|
# resp.db_clusters[0].domain_memberships[0].iam_role_name #=> String
|
7621
|
+
# resp.db_clusters[0].tag_list #=> Array
|
7622
|
+
# resp.db_clusters[0].tag_list[0].key #=> String
|
7623
|
+
# resp.db_clusters[0].tag_list[0].value #=> String
|
7576
7624
|
# resp.db_clusters[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
7577
7625
|
# resp.db_clusters[0].global_write_forwarding_requested #=> Boolean
|
7578
7626
|
#
|
@@ -8069,6 +8117,9 @@ module Aws::RDS
|
|
8069
8117
|
# resp.db_instances[0].listener_endpoint.port #=> Integer
|
8070
8118
|
# resp.db_instances[0].listener_endpoint.hosted_zone_id #=> String
|
8071
8119
|
# resp.db_instances[0].max_allocated_storage #=> Integer
|
8120
|
+
# resp.db_instances[0].tag_list #=> Array
|
8121
|
+
# resp.db_instances[0].tag_list[0].key #=> String
|
8122
|
+
# resp.db_instances[0].tag_list[0].value #=> String
|
8072
8123
|
#
|
8073
8124
|
#
|
8074
8125
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -8935,6 +8986,9 @@ module Aws::RDS
|
|
8935
8986
|
# resp.db_snapshots[0].processor_features[0].name #=> String
|
8936
8987
|
# resp.db_snapshots[0].processor_features[0].value #=> String
|
8937
8988
|
# resp.db_snapshots[0].dbi_resource_id #=> String
|
8989
|
+
# resp.db_snapshots[0].tag_list #=> Array
|
8990
|
+
# resp.db_snapshots[0].tag_list[0].key #=> String
|
8991
|
+
# resp.db_snapshots[0].tag_list[0].value #=> String
|
8938
8992
|
#
|
8939
8993
|
#
|
8940
8994
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -10947,6 +11001,9 @@ module Aws::RDS
|
|
10947
11001
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
10948
11002
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
10949
11003
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
11004
|
+
# resp.db_cluster.tag_list #=> Array
|
11005
|
+
# resp.db_cluster.tag_list[0].key #=> String
|
11006
|
+
# resp.db_cluster.tag_list[0].value #=> String
|
10950
11007
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
10951
11008
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
10952
11009
|
#
|
@@ -11725,6 +11782,9 @@ module Aws::RDS
|
|
11725
11782
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
11726
11783
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
11727
11784
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
11785
|
+
# resp.db_cluster.tag_list #=> Array
|
11786
|
+
# resp.db_cluster.tag_list[0].key #=> String
|
11787
|
+
# resp.db_cluster.tag_list[0].value #=> String
|
11728
11788
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
11729
11789
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
11730
11790
|
#
|
@@ -12871,6 +12931,9 @@ module Aws::RDS
|
|
12871
12931
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
12872
12932
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
12873
12933
|
# resp.db_instance.max_allocated_storage #=> Integer
|
12934
|
+
# resp.db_instance.tag_list #=> Array
|
12935
|
+
# resp.db_instance.tag_list[0].key #=> String
|
12936
|
+
# resp.db_instance.tag_list[0].value #=> String
|
12874
12937
|
#
|
12875
12938
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstance AWS API Documentation
|
12876
12939
|
#
|
@@ -13245,6 +13308,9 @@ module Aws::RDS
|
|
13245
13308
|
# resp.db_snapshot.processor_features[0].name #=> String
|
13246
13309
|
# resp.db_snapshot.processor_features[0].value #=> String
|
13247
13310
|
# resp.db_snapshot.dbi_resource_id #=> String
|
13311
|
+
# resp.db_snapshot.tag_list #=> Array
|
13312
|
+
# resp.db_snapshot.tag_list[0].key #=> String
|
13313
|
+
# resp.db_snapshot.tag_list[0].value #=> String
|
13248
13314
|
#
|
13249
13315
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBSnapshot AWS API Documentation
|
13250
13316
|
#
|
@@ -13956,6 +14022,9 @@ module Aws::RDS
|
|
13956
14022
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
13957
14023
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
13958
14024
|
# resp.db_instance.max_allocated_storage #=> Integer
|
14025
|
+
# resp.db_instance.tag_list #=> Array
|
14026
|
+
# resp.db_instance.tag_list[0].key #=> String
|
14027
|
+
# resp.db_instance.tag_list[0].value #=> String
|
13959
14028
|
#
|
13960
14029
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplica AWS API Documentation
|
13961
14030
|
#
|
@@ -14071,6 +14140,9 @@ module Aws::RDS
|
|
14071
14140
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
14072
14141
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
14073
14142
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
14143
|
+
# resp.db_cluster.tag_list #=> Array
|
14144
|
+
# resp.db_cluster.tag_list[0].key #=> String
|
14145
|
+
# resp.db_cluster.tag_list[0].value #=> String
|
14074
14146
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
14075
14147
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
14076
14148
|
#
|
@@ -14350,6 +14422,9 @@ module Aws::RDS
|
|
14350
14422
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
14351
14423
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
14352
14424
|
# resp.db_instance.max_allocated_storage #=> Integer
|
14425
|
+
# resp.db_instance.tag_list #=> Array
|
14426
|
+
# resp.db_instance.tag_list[0].key #=> String
|
14427
|
+
# resp.db_instance.tag_list[0].value #=> String
|
14353
14428
|
#
|
14354
14429
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBInstance AWS API Documentation
|
14355
14430
|
#
|
@@ -15296,6 +15371,9 @@ module Aws::RDS
|
|
15296
15371
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
15297
15372
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
15298
15373
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
15374
|
+
# resp.db_cluster.tag_list #=> Array
|
15375
|
+
# resp.db_cluster.tag_list[0].key #=> String
|
15376
|
+
# resp.db_cluster.tag_list[0].value #=> String
|
15299
15377
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
15300
15378
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
15301
15379
|
#
|
@@ -15499,6 +15577,12 @@ module Aws::RDS
|
|
15499
15577
|
# The DB engine mode of the DB cluster, either `provisioned`,
|
15500
15578
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
15501
15579
|
#
|
15580
|
+
# For more information, see [ CreateDBCluster][1].
|
15581
|
+
#
|
15582
|
+
#
|
15583
|
+
#
|
15584
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_CreateDBCluster.html
|
15585
|
+
#
|
15502
15586
|
# @option params [Types::ScalingConfiguration] :scaling_configuration
|
15503
15587
|
# For DB clusters in `serverless` DB engine mode, the scaling properties
|
15504
15588
|
# of the DB cluster.
|
@@ -15682,6 +15766,9 @@ module Aws::RDS
|
|
15682
15766
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
15683
15767
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
15684
15768
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
15769
|
+
# resp.db_cluster.tag_list #=> Array
|
15770
|
+
# resp.db_cluster.tag_list[0].key #=> String
|
15771
|
+
# resp.db_cluster.tag_list[0].value #=> String
|
15685
15772
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
15686
15773
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
15687
15774
|
#
|
@@ -16052,6 +16139,9 @@ module Aws::RDS
|
|
16052
16139
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
16053
16140
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
16054
16141
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
16142
|
+
# resp.db_cluster.tag_list #=> Array
|
16143
|
+
# resp.db_cluster.tag_list[0].key #=> String
|
16144
|
+
# resp.db_cluster.tag_list[0].value #=> String
|
16055
16145
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
16056
16146
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
16057
16147
|
#
|
@@ -16627,6 +16717,9 @@ module Aws::RDS
|
|
16627
16717
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
16628
16718
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
16629
16719
|
# resp.db_instance.max_allocated_storage #=> Integer
|
16720
|
+
# resp.db_instance.tag_list #=> Array
|
16721
|
+
# resp.db_instance.tag_list[0].key #=> String
|
16722
|
+
# resp.db_instance.tag_list[0].value #=> String
|
16630
16723
|
#
|
16631
16724
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshot AWS API Documentation
|
16632
16725
|
#
|
@@ -17192,6 +17285,9 @@ module Aws::RDS
|
|
17192
17285
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
17193
17286
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
17194
17287
|
# resp.db_instance.max_allocated_storage #=> Integer
|
17288
|
+
# resp.db_instance.tag_list #=> Array
|
17289
|
+
# resp.db_instance.tag_list[0].key #=> String
|
17290
|
+
# resp.db_instance.tag_list[0].value #=> String
|
17195
17291
|
#
|
17196
17292
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3 AWS API Documentation
|
17197
17293
|
#
|
@@ -17777,6 +17873,9 @@ module Aws::RDS
|
|
17777
17873
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
17778
17874
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
17779
17875
|
# resp.db_instance.max_allocated_storage #=> Integer
|
17876
|
+
# resp.db_instance.tag_list #=> Array
|
17877
|
+
# resp.db_instance.tag_list[0].key #=> String
|
17878
|
+
# resp.db_instance.tag_list[0].value #=> String
|
17780
17879
|
#
|
17781
17880
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTime AWS API Documentation
|
17782
17881
|
#
|
@@ -18044,6 +18143,9 @@ module Aws::RDS
|
|
18044
18143
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
18045
18144
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
18046
18145
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
18146
|
+
# resp.db_cluster.tag_list #=> Array
|
18147
|
+
# resp.db_cluster.tag_list[0].key #=> String
|
18148
|
+
# resp.db_cluster.tag_list[0].value #=> String
|
18047
18149
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
18048
18150
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
18049
18151
|
#
|
@@ -18203,6 +18305,9 @@ module Aws::RDS
|
|
18203
18305
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
18204
18306
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
18205
18307
|
# resp.db_instance.max_allocated_storage #=> Integer
|
18308
|
+
# resp.db_instance.tag_list #=> Array
|
18309
|
+
# resp.db_instance.tag_list[0].key #=> String
|
18310
|
+
# resp.db_instance.tag_list[0].value #=> String
|
18206
18311
|
#
|
18207
18312
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstance AWS API Documentation
|
18208
18313
|
#
|
@@ -18493,6 +18598,9 @@ module Aws::RDS
|
|
18493
18598
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
18494
18599
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
18495
18600
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
18601
|
+
# resp.db_cluster.tag_list #=> Array
|
18602
|
+
# resp.db_cluster.tag_list[0].key #=> String
|
18603
|
+
# resp.db_cluster.tag_list[0].value #=> String
|
18496
18604
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
18497
18605
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
18498
18606
|
#
|
@@ -18659,6 +18767,9 @@ module Aws::RDS
|
|
18659
18767
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
18660
18768
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
18661
18769
|
# resp.db_instance.max_allocated_storage #=> Integer
|
18770
|
+
# resp.db_instance.tag_list #=> Array
|
18771
|
+
# resp.db_instance.tag_list[0].key #=> String
|
18772
|
+
# resp.db_instance.tag_list[0].value #=> String
|
18662
18773
|
#
|
18663
18774
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstance AWS API Documentation
|
18664
18775
|
#
|
@@ -18682,7 +18793,7 @@ module Aws::RDS
|
|
18682
18793
|
params: params,
|
18683
18794
|
config: config)
|
18684
18795
|
context[:gem_name] = 'aws-sdk-rds'
|
18685
|
-
context[:gem_version] = '1.
|
18796
|
+
context[:gem_version] = '1.104.0'
|
18686
18797
|
Seahorse::Client::Request.new(handlers, context)
|
18687
18798
|
end
|
18688
18799
|
|
@@ -1062,6 +1062,7 @@ module Aws::RDS
|
|
1062
1062
|
DBCluster.add_member(:copy_tags_to_snapshot, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CopyTagsToSnapshot"))
|
1063
1063
|
DBCluster.add_member(:cross_account_clone, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CrossAccountClone"))
|
1064
1064
|
DBCluster.add_member(:domain_memberships, Shapes::ShapeRef.new(shape: DomainMembershipList, location_name: "DomainMemberships"))
|
1065
|
+
DBCluster.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
1065
1066
|
DBCluster.add_member(:global_write_forwarding_status, Shapes::ShapeRef.new(shape: WriteForwardingStatus, location_name: "GlobalWriteForwardingStatus"))
|
1066
1067
|
DBCluster.add_member(:global_write_forwarding_requested, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "GlobalWriteForwardingRequested"))
|
1067
1068
|
DBCluster.struct_class = Types::DBCluster
|
@@ -1193,6 +1194,7 @@ module Aws::RDS
|
|
1193
1194
|
DBClusterSnapshot.add_member(:db_cluster_snapshot_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterSnapshotArn"))
|
1194
1195
|
DBClusterSnapshot.add_member(:source_db_cluster_snapshot_arn, Shapes::ShapeRef.new(shape: String, location_name: "SourceDBClusterSnapshotArn"))
|
1195
1196
|
DBClusterSnapshot.add_member(:iam_database_authentication_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "IAMDatabaseAuthenticationEnabled"))
|
1197
|
+
DBClusterSnapshot.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
1196
1198
|
DBClusterSnapshot.struct_class = Types::DBClusterSnapshot
|
1197
1199
|
|
1198
1200
|
DBClusterSnapshotAlreadyExistsFault.struct_class = Types::DBClusterSnapshotAlreadyExistsFault
|
@@ -1301,6 +1303,7 @@ module Aws::RDS
|
|
1301
1303
|
DBInstance.add_member(:associated_roles, Shapes::ShapeRef.new(shape: DBInstanceRoles, location_name: "AssociatedRoles"))
|
1302
1304
|
DBInstance.add_member(:listener_endpoint, Shapes::ShapeRef.new(shape: Endpoint, location_name: "ListenerEndpoint"))
|
1303
1305
|
DBInstance.add_member(:max_allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxAllocatedStorage"))
|
1306
|
+
DBInstance.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
1304
1307
|
DBInstance.struct_class = Types::DBInstance
|
1305
1308
|
|
1306
1309
|
DBInstanceAlreadyExistsFault.struct_class = Types::DBInstanceAlreadyExistsFault
|
@@ -1510,6 +1513,7 @@ module Aws::RDS
|
|
1510
1513
|
DBSnapshot.add_member(:iam_database_authentication_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "IAMDatabaseAuthenticationEnabled"))
|
1511
1514
|
DBSnapshot.add_member(:processor_features, Shapes::ShapeRef.new(shape: ProcessorFeatureList, location_name: "ProcessorFeatures"))
|
1512
1515
|
DBSnapshot.add_member(:dbi_resource_id, Shapes::ShapeRef.new(shape: String, location_name: "DbiResourceId"))
|
1516
|
+
DBSnapshot.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
1513
1517
|
DBSnapshot.struct_class = Types::DBSnapshot
|
1514
1518
|
|
1515
1519
|
DBSnapshotAlreadyExistsFault.struct_class = Types::DBSnapshotAlreadyExistsFault
|
@@ -336,14 +336,11 @@ module Aws::RDS
|
|
336
336
|
# The DB engine mode of the DB cluster, either `provisioned`,
|
337
337
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
338
338
|
#
|
339
|
-
#
|
340
|
-
#
|
341
|
-
#
|
342
|
-
#
|
343
|
-
#
|
344
|
-
# value from `DescribeDBClusters`.
|
345
|
-
#
|
346
|
-
# </note>
|
339
|
+
# For more information, see [ CreateDBCluster][1].
|
340
|
+
#
|
341
|
+
#
|
342
|
+
#
|
343
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_CreateDBCluster.html
|
347
344
|
# @return [String]
|
348
345
|
def engine_mode
|
349
346
|
data[:engine_mode]
|
@@ -439,6 +436,17 @@ module Aws::RDS
|
|
439
436
|
data[:domain_memberships]
|
440
437
|
end
|
441
438
|
|
439
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
440
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
441
|
+
#
|
442
|
+
#
|
443
|
+
#
|
444
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
445
|
+
# @return [Array<Types::Tag>]
|
446
|
+
def tag_list
|
447
|
+
data[:tag_list]
|
448
|
+
end
|
449
|
+
|
442
450
|
# Specifies whether a secondary cluster in an Aurora global database has
|
443
451
|
# write forwarding enabled, not enabled, or is in the process of
|
444
452
|
# enabling it.
|
@@ -916,14 +924,23 @@ module Aws::RDS
|
|
916
924
|
#
|
917
925
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
918
926
|
# @option options [String] :engine_mode
|
919
|
-
# The DB engine mode of the DB cluster, either `provisioned
|
927
|
+
# The DB engine mode of the DB cluster, either `provisioned`
|
920
928
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
921
929
|
#
|
922
|
-
#
|
923
|
-
#
|
924
|
-
#
|
930
|
+
# The `parallelquery` engine mode isn't required for Aurora MySQL
|
931
|
+
# version 1.23 and higher 1.x versions, and version 2.09 and higher 2.x
|
932
|
+
# versions.
|
925
933
|
#
|
926
|
-
#
|
934
|
+
# The `global` engine mode isn't required for Aurora MySQL version 1.22
|
935
|
+
# and higher 1.x versions, and `global` engine mode isn't required for
|
936
|
+
# any 2.x versions.
|
937
|
+
#
|
938
|
+
# The `multimaster` engine mode only applies for DB clusters created
|
939
|
+
# with Aurora MySQL version 5.6.10a.
|
940
|
+
#
|
941
|
+
# For Aurora PostgreSQL, the `global` engine mode isn't required, and
|
942
|
+
# both the `parallelquery` and the `multimaster` engine modes currently
|
943
|
+
# aren't supported.
|
927
944
|
#
|
928
945
|
# Limitations and requirements apply to some DB engine modes. For more
|
929
946
|
# information, see the following sections in the *Amazon Aurora User
|
@@ -933,7 +950,7 @@ module Aws::RDS
|
|
933
950
|
#
|
934
951
|
# * [ Limitations of Parallel Query][2]
|
935
952
|
#
|
936
|
-
# * [
|
953
|
+
# * [ Limitations of Aurora Global Databases][3]
|
937
954
|
#
|
938
955
|
# * [ Limitations of Multi-Master Clusters][4]
|
939
956
|
#
|
@@ -162,6 +162,17 @@ module Aws::RDS
|
|
162
162
|
data[:iam_database_authentication_enabled]
|
163
163
|
end
|
164
164
|
|
165
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
166
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
167
|
+
#
|
168
|
+
#
|
169
|
+
#
|
170
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
171
|
+
# @return [Array<Types::Tag>]
|
172
|
+
def tag_list
|
173
|
+
data[:tag_list]
|
174
|
+
end
|
175
|
+
|
165
176
|
# @!endgroup
|
166
177
|
|
167
178
|
# @return [Client]
|
@@ -639,6 +650,12 @@ module Aws::RDS
|
|
639
650
|
# @option options [String] :engine_mode
|
640
651
|
# The DB engine mode of the DB cluster, either `provisioned`,
|
641
652
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
653
|
+
#
|
654
|
+
# For more information, see [ CreateDBCluster][1].
|
655
|
+
#
|
656
|
+
#
|
657
|
+
#
|
658
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_CreateDBCluster.html
|
642
659
|
# @option options [Types::ScalingConfiguration] :scaling_configuration
|
643
660
|
# For DB clusters in `serverless` DB engine mode, the scaling properties
|
644
661
|
# of the DB cluster.
|
@@ -119,12 +119,6 @@ module Aws::RDS
|
|
119
119
|
end
|
120
120
|
|
121
121
|
# A list of the supported DB engine modes.
|
122
|
-
#
|
123
|
-
# <note markdown="1"> `global` engine mode only applies for global database clusters created
|
124
|
-
# with Aurora MySQL version 5.6.10a. For higher Aurora MySQL versions,
|
125
|
-
# the clusters in a global database use `provisioned` engine mode.
|
126
|
-
#
|
127
|
-
# </note>
|
128
122
|
# @return [Array<String>]
|
129
123
|
def supported_engine_modes
|
130
124
|
data[:supported_engine_modes]
|
@@ -522,6 +522,17 @@ module Aws::RDS
|
|
522
522
|
data[:max_allocated_storage]
|
523
523
|
end
|
524
524
|
|
525
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
526
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
527
|
+
#
|
528
|
+
#
|
529
|
+
#
|
530
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
531
|
+
# @return [Array<Types::Tag>]
|
532
|
+
def tag_list
|
533
|
+
data[:tag_list]
|
534
|
+
end
|
535
|
+
|
525
536
|
# @!endgroup
|
526
537
|
|
527
538
|
# @return [Client]
|
@@ -215,6 +215,17 @@ module Aws::RDS
|
|
215
215
|
data[:dbi_resource_id]
|
216
216
|
end
|
217
217
|
|
218
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
219
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
220
|
+
#
|
221
|
+
#
|
222
|
+
#
|
223
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
224
|
+
# @return [Array<Types::Tag>]
|
225
|
+
def tag_list
|
226
|
+
data[:tag_list]
|
227
|
+
end
|
228
|
+
|
218
229
|
# @!endgroup
|
219
230
|
|
220
231
|
# @return [Client]
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -374,14 +374,23 @@ module Aws::RDS
|
|
374
374
|
#
|
375
375
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
376
376
|
# @option options [String] :engine_mode
|
377
|
-
# The DB engine mode of the DB cluster, either `provisioned
|
377
|
+
# The DB engine mode of the DB cluster, either `provisioned`
|
378
378
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
379
379
|
#
|
380
|
-
#
|
381
|
-
#
|
382
|
-
#
|
380
|
+
# The `parallelquery` engine mode isn't required for Aurora MySQL
|
381
|
+
# version 1.23 and higher 1.x versions, and version 2.09 and higher 2.x
|
382
|
+
# versions.
|
383
383
|
#
|
384
|
-
#
|
384
|
+
# The `global` engine mode isn't required for Aurora MySQL version 1.22
|
385
|
+
# and higher 1.x versions, and `global` engine mode isn't required for
|
386
|
+
# any 2.x versions.
|
387
|
+
#
|
388
|
+
# The `multimaster` engine mode only applies for DB clusters created
|
389
|
+
# with Aurora MySQL version 5.6.10a.
|
390
|
+
#
|
391
|
+
# For Aurora PostgreSQL, the `global` engine mode isn't required, and
|
392
|
+
# both the `parallelquery` and the `multimaster` engine modes currently
|
393
|
+
# aren't supported.
|
385
394
|
#
|
386
395
|
# Limitations and requirements apply to some DB engine modes. For more
|
387
396
|
# information, see the following sections in the *Amazon Aurora User
|
@@ -391,7 +400,7 @@ module Aws::RDS
|
|
391
400
|
#
|
392
401
|
# * [ Limitations of Parallel Query][2]
|
393
402
|
#
|
394
|
-
# * [
|
403
|
+
# * [ Limitations of Aurora Global Databases][3]
|
395
404
|
#
|
396
405
|
# * [ Limitations of Multi-Master Clusters][4]
|
397
406
|
#
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -2072,15 +2072,23 @@ module Aws::RDS
|
|
2072
2072
|
# @return [Array<String>]
|
2073
2073
|
#
|
2074
2074
|
# @!attribute [rw] engine_mode
|
2075
|
-
# The DB engine mode of the DB cluster, either `provisioned
|
2075
|
+
# The DB engine mode of the DB cluster, either `provisioned`
|
2076
2076
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
2077
2077
|
#
|
2078
|
-
#
|
2079
|
-
#
|
2080
|
-
# versions
|
2081
|
-
# mode.
|
2078
|
+
# The `parallelquery` engine mode isn't required for Aurora MySQL
|
2079
|
+
# version 1.23 and higher 1.x versions, and version 2.09 and higher
|
2080
|
+
# 2.x versions.
|
2082
2081
|
#
|
2083
|
-
#
|
2082
|
+
# The `global` engine mode isn't required for Aurora MySQL version
|
2083
|
+
# 1.22 and higher 1.x versions, and `global` engine mode isn't
|
2084
|
+
# required for any 2.x versions.
|
2085
|
+
#
|
2086
|
+
# The `multimaster` engine mode only applies for DB clusters created
|
2087
|
+
# with Aurora MySQL version 5.6.10a.
|
2088
|
+
#
|
2089
|
+
# For Aurora PostgreSQL, the `global` engine mode isn't required, and
|
2090
|
+
# both the `parallelquery` and the `multimaster` engine modes
|
2091
|
+
# currently aren't supported.
|
2084
2092
|
#
|
2085
2093
|
# Limitations and requirements apply to some DB engine modes. For more
|
2086
2094
|
# information, see the following sections in the *Amazon Aurora User
|
@@ -2090,7 +2098,7 @@ module Aws::RDS
|
|
2090
2098
|
#
|
2091
2099
|
# * [ Limitations of Parallel Query][2]
|
2092
2100
|
#
|
2093
|
-
# * [
|
2101
|
+
# * [ Limitations of Aurora Global Databases][3]
|
2094
2102
|
#
|
2095
2103
|
# * [ Limitations of Multi-Master Clusters][4]
|
2096
2104
|
#
|
@@ -4988,14 +4996,11 @@ module Aws::RDS
|
|
4988
4996
|
# The DB engine mode of the DB cluster, either `provisioned`,
|
4989
4997
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
4990
4998
|
#
|
4991
|
-
#
|
4992
|
-
# created with Aurora MySQL version 5.6.10a. For higher Aurora MySQL
|
4993
|
-
# versions, the clusters in a global database use `provisioned` engine
|
4994
|
-
# mode. To check if a DB cluster is part of a global database, use
|
4995
|
-
# `DescribeGlobalClusters` instead of checking the `EngineMode` return
|
4996
|
-
# value from `DescribeDBClusters`.
|
4999
|
+
# For more information, see [ CreateDBCluster][1].
|
4997
5000
|
#
|
4998
|
-
#
|
5001
|
+
#
|
5002
|
+
#
|
5003
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_CreateDBCluster.html
|
4999
5004
|
# @return [String]
|
5000
5005
|
#
|
5001
5006
|
# @!attribute [rw] scaling_configuration_info
|
@@ -5068,6 +5073,15 @@ module Aws::RDS
|
|
5068
5073
|
# DB cluster.
|
5069
5074
|
# @return [Array<Types::DomainMembership>]
|
5070
5075
|
#
|
5076
|
+
# @!attribute [rw] tag_list
|
5077
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
5078
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
5079
|
+
#
|
5080
|
+
#
|
5081
|
+
#
|
5082
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
5083
|
+
# @return [Array<Types::Tag>]
|
5084
|
+
#
|
5071
5085
|
# @!attribute [rw] global_write_forwarding_status
|
5072
5086
|
# Specifies whether a secondary cluster in an Aurora global database
|
5073
5087
|
# has write forwarding enabled, not enabled, or is in the process of
|
@@ -5138,6 +5152,7 @@ module Aws::RDS
|
|
5138
5152
|
:copy_tags_to_snapshot,
|
5139
5153
|
:cross_account_clone,
|
5140
5154
|
:domain_memberships,
|
5155
|
+
:tag_list,
|
5141
5156
|
:global_write_forwarding_status,
|
5142
5157
|
:global_write_forwarding_requested)
|
5143
5158
|
SENSITIVE = []
|
@@ -5746,6 +5761,15 @@ module Aws::RDS
|
|
5746
5761
|
# to database accounts is enabled, and otherwise false.
|
5747
5762
|
# @return [Boolean]
|
5748
5763
|
#
|
5764
|
+
# @!attribute [rw] tag_list
|
5765
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
5766
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
5767
|
+
#
|
5768
|
+
#
|
5769
|
+
#
|
5770
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
5771
|
+
# @return [Array<Types::Tag>]
|
5772
|
+
#
|
5749
5773
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBClusterSnapshot AWS API Documentation
|
5750
5774
|
#
|
5751
5775
|
class DBClusterSnapshot < Struct.new(
|
@@ -5768,7 +5792,8 @@ module Aws::RDS
|
|
5768
5792
|
:kms_key_id,
|
5769
5793
|
:db_cluster_snapshot_arn,
|
5770
5794
|
:source_db_cluster_snapshot_arn,
|
5771
|
-
:iam_database_authentication_enabled
|
5795
|
+
:iam_database_authentication_enabled,
|
5796
|
+
:tag_list)
|
5772
5797
|
SENSITIVE = []
|
5773
5798
|
include Aws::Structure
|
5774
5799
|
end
|
@@ -5937,13 +5962,6 @@ module Aws::RDS
|
|
5937
5962
|
#
|
5938
5963
|
# @!attribute [rw] supported_engine_modes
|
5939
5964
|
# A list of the supported DB engine modes.
|
5940
|
-
#
|
5941
|
-
# <note markdown="1"> `global` engine mode only applies for global database clusters
|
5942
|
-
# created with Aurora MySQL version 5.6.10a. For higher Aurora MySQL
|
5943
|
-
# versions, the clusters in a global database use `provisioned` engine
|
5944
|
-
# mode.
|
5945
|
-
#
|
5946
|
-
# </note>
|
5947
5965
|
# @return [Array<String>]
|
5948
5966
|
#
|
5949
5967
|
# @!attribute [rw] supported_feature_names
|
@@ -6400,6 +6418,15 @@ module Aws::RDS
|
|
6400
6418
|
# storage of the DB instance.
|
6401
6419
|
# @return [Integer]
|
6402
6420
|
#
|
6421
|
+
# @!attribute [rw] tag_list
|
6422
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
6423
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
6424
|
+
#
|
6425
|
+
#
|
6426
|
+
#
|
6427
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
6428
|
+
# @return [Array<Types::Tag>]
|
6429
|
+
#
|
6403
6430
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstance AWS API Documentation
|
6404
6431
|
#
|
6405
6432
|
class DBInstance < Struct.new(
|
@@ -6462,7 +6489,8 @@ module Aws::RDS
|
|
6462
6489
|
:deletion_protection,
|
6463
6490
|
:associated_roles,
|
6464
6491
|
:listener_endpoint,
|
6465
|
-
:max_allocated_storage
|
6492
|
+
:max_allocated_storage,
|
6493
|
+
:tag_list)
|
6466
6494
|
SENSITIVE = []
|
6467
6495
|
include Aws::Structure
|
6468
6496
|
end
|
@@ -7457,6 +7485,15 @@ module Aws::RDS
|
|
7457
7485
|
# and which is unique to an AWS Region.
|
7458
7486
|
# @return [String]
|
7459
7487
|
#
|
7488
|
+
# @!attribute [rw] tag_list
|
7489
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
7490
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
7491
|
+
#
|
7492
|
+
#
|
7493
|
+
#
|
7494
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
7495
|
+
# @return [Array<Types::Tag>]
|
7496
|
+
#
|
7460
7497
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBSnapshot AWS API Documentation
|
7461
7498
|
#
|
7462
7499
|
class DBSnapshot < Struct.new(
|
@@ -7487,7 +7524,8 @@ module Aws::RDS
|
|
7487
7524
|
:timezone,
|
7488
7525
|
:iam_database_authentication_enabled,
|
7489
7526
|
:processor_features,
|
7490
|
-
:dbi_resource_id
|
7527
|
+
:dbi_resource_id,
|
7528
|
+
:tag_list)
|
7491
7529
|
SENSITIVE = []
|
7492
7530
|
include Aws::Structure
|
7493
7531
|
end
|
@@ -15188,13 +15226,6 @@ module Aws::RDS
|
|
15188
15226
|
#
|
15189
15227
|
# @!attribute [rw] supported_engine_modes
|
15190
15228
|
# A list of the supported DB engine modes.
|
15191
|
-
#
|
15192
|
-
# <note markdown="1"> `global` engine mode only applies for global database clusters
|
15193
|
-
# created with Aurora MySQL version 5.6.10a. For higher Aurora MySQL
|
15194
|
-
# versions, the clusters in a global database use `provisioned` engine
|
15195
|
-
# mode.
|
15196
|
-
#
|
15197
|
-
# </note>
|
15198
15229
|
# @return [Array<String>]
|
15199
15230
|
#
|
15200
15231
|
# @!attribute [rw] supports_storage_autoscaling
|
@@ -17221,6 +17252,12 @@ module Aws::RDS
|
|
17221
17252
|
# @!attribute [rw] engine_mode
|
17222
17253
|
# The DB engine mode of the DB cluster, either `provisioned`,
|
17223
17254
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
17255
|
+
#
|
17256
|
+
# For more information, see [ CreateDBCluster][1].
|
17257
|
+
#
|
17258
|
+
#
|
17259
|
+
#
|
17260
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_CreateDBCluster.html
|
17224
17261
|
# @return [String]
|
17225
17262
|
#
|
17226
17263
|
# @!attribute [rw] scaling_configuration
|
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.104.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-10-
|
11
|
+
date: 2020-10-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|