aws-sdk-rds 1.99.0 → 1.104.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-rds.rb +1 -1
- data/lib/aws-sdk-rds/client.rb +164 -32
- data/lib/aws-sdk-rds/client_api.rb +13 -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 +8 -7
- data/lib/aws-sdk-rds/db_instance.rb +33 -3
- data/lib/aws-sdk-rds/db_snapshot.rb +13 -2
- data/lib/aws-sdk-rds/errors.rb +11 -0
- data/lib/aws-sdk-rds/pending_maintenance_action.rb +6 -3
- data/lib/aws-sdk-rds/resource.rb +25 -9
- data/lib/aws-sdk-rds/types.rb +142 -59
- metadata +4 -4
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
|
#
|
@@ -1637,25 +1643,13 @@ module Aws::RDS
|
|
1637
1643
|
# Copies the specified option group.
|
1638
1644
|
#
|
1639
1645
|
# @option params [required, String] :source_option_group_identifier
|
1640
|
-
# The identifier
|
1641
|
-
# about creating an ARN, see [ Constructing an ARN for Amazon RDS][1] in
|
1642
|
-
# the *Amazon RDS User Guide*.
|
1646
|
+
# The identifier for the source option group.
|
1643
1647
|
#
|
1644
1648
|
# Constraints:
|
1645
1649
|
#
|
1646
1650
|
# * Must specify a valid option group.
|
1647
1651
|
#
|
1648
|
-
#
|
1649
|
-
# specify a valid option group identifier, for example
|
1650
|
-
# `my-option-group`, or a valid ARN.
|
1651
|
-
#
|
1652
|
-
# * If the source option group is in a different AWS Region than the
|
1653
|
-
# copy, specify a valid option group ARN, for example
|
1654
|
-
# `arn:aws:rds:us-west-2:123456789012:og:special-options`.
|
1655
|
-
#
|
1656
|
-
#
|
1657
|
-
#
|
1658
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.ARN.html#USER_Tagging.ARN.Constructing
|
1652
|
+
# ^
|
1659
1653
|
#
|
1660
1654
|
# @option params [required, String] :target_option_group_identifier
|
1661
1655
|
# The identifier for the copied option group.
|
@@ -2157,14 +2151,23 @@ module Aws::RDS
|
|
2157
2151
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
2158
2152
|
#
|
2159
2153
|
# @option params [String] :engine_mode
|
2160
|
-
# The DB engine mode of the DB cluster, either `provisioned
|
2154
|
+
# The DB engine mode of the DB cluster, either `provisioned`
|
2161
2155
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
2162
2156
|
#
|
2163
|
-
#
|
2164
|
-
#
|
2165
|
-
#
|
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.
|
2166
2160
|
#
|
2167
|
-
#
|
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.
|
2168
2171
|
#
|
2169
2172
|
# Limitations and requirements apply to some DB engine modes. For more
|
2170
2173
|
# information, see the following sections in the *Amazon Aurora User
|
@@ -2174,7 +2177,7 @@ module Aws::RDS
|
|
2174
2177
|
#
|
2175
2178
|
# * [ Limitations of Parallel Query][2]
|
2176
2179
|
#
|
2177
|
-
# * [
|
2180
|
+
# * [ Limitations of Aurora Global Databases][3]
|
2178
2181
|
#
|
2179
2182
|
# * [ Limitations of Multi-Master Clusters][4]
|
2180
2183
|
#
|
@@ -2405,6 +2408,9 @@ module Aws::RDS
|
|
2405
2408
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
2406
2409
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
2407
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
|
2408
2414
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
2409
2415
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
2410
2416
|
#
|
@@ -2722,6 +2728,9 @@ module Aws::RDS
|
|
2722
2728
|
# resp.db_cluster_snapshot.db_cluster_snapshot_arn #=> String
|
2723
2729
|
# resp.db_cluster_snapshot.source_db_cluster_snapshot_arn #=> String
|
2724
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
|
2725
2734
|
#
|
2726
2735
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBClusterSnapshot AWS API Documentation
|
2727
2736
|
#
|
@@ -3263,8 +3272,8 @@ module Aws::RDS
|
|
3263
3272
|
#
|
3264
3273
|
# **Microsoft SQL Server**
|
3265
3274
|
#
|
3266
|
-
# See [
|
3267
|
-
# User Guide.*
|
3275
|
+
# See [Microsoft SQL Server Versions on Amazon RDS][2] in the *Amazon
|
3276
|
+
# RDS User Guide.*
|
3268
3277
|
#
|
3269
3278
|
# **MySQL**
|
3270
3279
|
#
|
@@ -3283,7 +3292,7 @@ module Aws::RDS
|
|
3283
3292
|
#
|
3284
3293
|
#
|
3285
3294
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MariaDB.html#MariaDB.Concepts.VersionMgmt
|
3286
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.
|
3295
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.VersionSupport
|
3287
3296
|
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MySQL.html#MySQL.Concepts.VersionMgmt
|
3288
3297
|
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Appendix.Oracle.PatchComposition.html
|
3289
3298
|
# [5]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_PostgreSQL.html#PostgreSQL.Concepts.General.DBVersions
|
@@ -3332,6 +3341,9 @@ module Aws::RDS
|
|
3332
3341
|
# Not applicable. The character set is managed by the DB cluster. For
|
3333
3342
|
# more information, see `CreateDBCluster`.
|
3334
3343
|
#
|
3344
|
+
# @option params [String] :nchar_character_set_name
|
3345
|
+
# The name of the NCHAR character set for the Oracle DB instance.
|
3346
|
+
#
|
3335
3347
|
# @option params [Boolean] :publicly_accessible
|
3336
3348
|
# A value that indicates whether the DB instance is publicly accessible.
|
3337
3349
|
#
|
@@ -3559,6 +3571,10 @@ module Aws::RDS
|
|
3559
3571
|
# CloudWatch Logs ][1] in the *Amazon Relational Database Service User
|
3560
3572
|
# Guide*.
|
3561
3573
|
#
|
3574
|
+
# **Amazon Aurora**
|
3575
|
+
#
|
3576
|
+
# Not applicable. CloudWatch Logs exports are managed by the DB cluster.
|
3577
|
+
#
|
3562
3578
|
# **MariaDB**
|
3563
3579
|
#
|
3564
3580
|
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
@@ -3658,6 +3674,7 @@ module Aws::RDS
|
|
3658
3674
|
# iops: 1,
|
3659
3675
|
# option_group_name: "String",
|
3660
3676
|
# character_set_name: "String",
|
3677
|
+
# nchar_character_set_name: "String",
|
3661
3678
|
# publicly_accessible: false,
|
3662
3679
|
# tags: [
|
3663
3680
|
# {
|
@@ -3765,6 +3782,7 @@ module Aws::RDS
|
|
3765
3782
|
# resp.db_instance.option_group_memberships[0].option_group_name #=> String
|
3766
3783
|
# resp.db_instance.option_group_memberships[0].status #=> String
|
3767
3784
|
# resp.db_instance.character_set_name #=> String
|
3785
|
+
# resp.db_instance.nchar_character_set_name #=> String
|
3768
3786
|
# resp.db_instance.secondary_availability_zone #=> String
|
3769
3787
|
# resp.db_instance.publicly_accessible #=> Boolean
|
3770
3788
|
# resp.db_instance.status_infos #=> Array
|
@@ -3810,6 +3828,9 @@ module Aws::RDS
|
|
3810
3828
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
3811
3829
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
3812
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
|
3813
3834
|
#
|
3814
3835
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstance AWS API Documentation
|
3815
3836
|
#
|
@@ -4399,6 +4420,7 @@ module Aws::RDS
|
|
4399
4420
|
# resp.db_instance.option_group_memberships[0].option_group_name #=> String
|
4400
4421
|
# resp.db_instance.option_group_memberships[0].status #=> String
|
4401
4422
|
# resp.db_instance.character_set_name #=> String
|
4423
|
+
# resp.db_instance.nchar_character_set_name #=> String
|
4402
4424
|
# resp.db_instance.secondary_availability_zone #=> String
|
4403
4425
|
# resp.db_instance.publicly_accessible #=> Boolean
|
4404
4426
|
# resp.db_instance.status_infos #=> Array
|
@@ -4444,6 +4466,9 @@ module Aws::RDS
|
|
4444
4466
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
4445
4467
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
4446
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
|
4447
4472
|
#
|
4448
4473
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceReadReplica AWS API Documentation
|
4449
4474
|
#
|
@@ -4774,8 +4799,8 @@ module Aws::RDS
|
|
4774
4799
|
req.send_request(options)
|
4775
4800
|
end
|
4776
4801
|
|
4777
|
-
# Creates a
|
4778
|
-
# state.
|
4802
|
+
# Creates a snapshot of a DB instance. The source DB instance must be in
|
4803
|
+
# the `available` or `storage-optimization`state.
|
4779
4804
|
#
|
4780
4805
|
# @option params [required, String] :db_snapshot_identifier
|
4781
4806
|
# The identifier for the DB snapshot.
|
@@ -4875,6 +4900,9 @@ module Aws::RDS
|
|
4875
4900
|
# resp.db_snapshot.processor_features[0].name #=> String
|
4876
4901
|
# resp.db_snapshot.processor_features[0].value #=> String
|
4877
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
|
4878
4906
|
#
|
4879
4907
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBSnapshot AWS API Documentation
|
4880
4908
|
#
|
@@ -5537,6 +5565,9 @@ module Aws::RDS
|
|
5537
5565
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
5538
5566
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
5539
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
|
5540
5571
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
5541
5572
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
5542
5573
|
#
|
@@ -5728,6 +5759,9 @@ module Aws::RDS
|
|
5728
5759
|
# resp.db_cluster_snapshot.db_cluster_snapshot_arn #=> String
|
5729
5760
|
# resp.db_cluster_snapshot.source_db_cluster_snapshot_arn #=> String
|
5730
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
|
5731
5765
|
#
|
5732
5766
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBClusterSnapshot AWS API Documentation
|
5733
5767
|
#
|
@@ -5923,6 +5957,7 @@ module Aws::RDS
|
|
5923
5957
|
# resp.db_instance.option_group_memberships[0].option_group_name #=> String
|
5924
5958
|
# resp.db_instance.option_group_memberships[0].status #=> String
|
5925
5959
|
# resp.db_instance.character_set_name #=> String
|
5960
|
+
# resp.db_instance.nchar_character_set_name #=> String
|
5926
5961
|
# resp.db_instance.secondary_availability_zone #=> String
|
5927
5962
|
# resp.db_instance.publicly_accessible #=> Boolean
|
5928
5963
|
# resp.db_instance.status_infos #=> Array
|
@@ -5968,6 +6003,9 @@ module Aws::RDS
|
|
5968
6003
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
5969
6004
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
5970
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
|
5971
6009
|
#
|
5972
6010
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstance AWS API Documentation
|
5973
6011
|
#
|
@@ -6239,6 +6277,9 @@ module Aws::RDS
|
|
6239
6277
|
# resp.db_snapshot.processor_features[0].name #=> String
|
6240
6278
|
# resp.db_snapshot.processor_features[0].value #=> String
|
6241
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
|
6242
6283
|
#
|
6243
6284
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBSnapshot AWS API Documentation
|
6244
6285
|
#
|
@@ -7387,6 +7428,9 @@ module Aws::RDS
|
|
7387
7428
|
# resp.db_cluster_snapshots[0].db_cluster_snapshot_arn #=> String
|
7388
7429
|
# resp.db_cluster_snapshots[0].source_db_cluster_snapshot_arn #=> String
|
7389
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
|
7390
7434
|
#
|
7391
7435
|
#
|
7392
7436
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -7574,6 +7618,9 @@ module Aws::RDS
|
|
7574
7618
|
# resp.db_clusters[0].domain_memberships[0].status #=> String
|
7575
7619
|
# resp.db_clusters[0].domain_memberships[0].fqdn #=> String
|
7576
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
|
7577
7624
|
# resp.db_clusters[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
7578
7625
|
# resp.db_clusters[0].global_write_forwarding_requested #=> Boolean
|
7579
7626
|
#
|
@@ -7707,6 +7754,9 @@ module Aws::RDS
|
|
7707
7754
|
# resp.db_engine_versions[0].supported_character_sets #=> Array
|
7708
7755
|
# resp.db_engine_versions[0].supported_character_sets[0].character_set_name #=> String
|
7709
7756
|
# resp.db_engine_versions[0].supported_character_sets[0].character_set_description #=> String
|
7757
|
+
# resp.db_engine_versions[0].supported_nchar_character_sets #=> Array
|
7758
|
+
# resp.db_engine_versions[0].supported_nchar_character_sets[0].character_set_name #=> String
|
7759
|
+
# resp.db_engine_versions[0].supported_nchar_character_sets[0].character_set_description #=> String
|
7710
7760
|
# resp.db_engine_versions[0].valid_upgrade_target #=> Array
|
7711
7761
|
# resp.db_engine_versions[0].valid_upgrade_target[0].engine #=> String
|
7712
7762
|
# resp.db_engine_versions[0].valid_upgrade_target[0].engine_version #=> String
|
@@ -8021,6 +8071,7 @@ module Aws::RDS
|
|
8021
8071
|
# resp.db_instances[0].option_group_memberships[0].option_group_name #=> String
|
8022
8072
|
# resp.db_instances[0].option_group_memberships[0].status #=> String
|
8023
8073
|
# resp.db_instances[0].character_set_name #=> String
|
8074
|
+
# resp.db_instances[0].nchar_character_set_name #=> String
|
8024
8075
|
# resp.db_instances[0].secondary_availability_zone #=> String
|
8025
8076
|
# resp.db_instances[0].publicly_accessible #=> Boolean
|
8026
8077
|
# resp.db_instances[0].status_infos #=> Array
|
@@ -8066,6 +8117,9 @@ module Aws::RDS
|
|
8066
8117
|
# resp.db_instances[0].listener_endpoint.port #=> Integer
|
8067
8118
|
# resp.db_instances[0].listener_endpoint.hosted_zone_id #=> String
|
8068
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
|
8069
8123
|
#
|
8070
8124
|
#
|
8071
8125
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -8932,6 +8986,9 @@ module Aws::RDS
|
|
8932
8986
|
# resp.db_snapshots[0].processor_features[0].name #=> String
|
8933
8987
|
# resp.db_snapshots[0].processor_features[0].value #=> String
|
8934
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
|
8935
8992
|
#
|
8936
8993
|
#
|
8937
8994
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -10944,6 +11001,9 @@ module Aws::RDS
|
|
10944
11001
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
10945
11002
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
10946
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
|
10947
11007
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
10948
11008
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
10949
11009
|
#
|
@@ -10990,12 +11050,12 @@ module Aws::RDS
|
|
10990
11050
|
#
|
10991
11051
|
# **Microsoft SQL Server**
|
10992
11052
|
#
|
10993
|
-
# See [
|
10994
|
-
# User Guide.*
|
11053
|
+
# See [ Microsoft SQL Server Versions on Amazon RDS][1] in the *Amazon
|
11054
|
+
# RDS User Guide.*
|
10995
11055
|
#
|
10996
11056
|
#
|
10997
11057
|
#
|
10998
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.
|
11058
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.VersionSupport
|
10999
11059
|
#
|
11000
11060
|
# @option params [required, String] :engine_installation_media_path
|
11001
11061
|
# The path to the installation medium for the specified DB engine.
|
@@ -11722,6 +11782,9 @@ module Aws::RDS
|
|
11722
11782
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
11723
11783
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
11724
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
|
11725
11788
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
11726
11789
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
11727
11790
|
#
|
@@ -12822,6 +12885,7 @@ module Aws::RDS
|
|
12822
12885
|
# resp.db_instance.option_group_memberships[0].option_group_name #=> String
|
12823
12886
|
# resp.db_instance.option_group_memberships[0].status #=> String
|
12824
12887
|
# resp.db_instance.character_set_name #=> String
|
12888
|
+
# resp.db_instance.nchar_character_set_name #=> String
|
12825
12889
|
# resp.db_instance.secondary_availability_zone #=> String
|
12826
12890
|
# resp.db_instance.publicly_accessible #=> Boolean
|
12827
12891
|
# resp.db_instance.status_infos #=> Array
|
@@ -12867,6 +12931,9 @@ module Aws::RDS
|
|
12867
12931
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
12868
12932
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
12869
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
|
12870
12937
|
#
|
12871
12938
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstance AWS API Documentation
|
12872
12939
|
#
|
@@ -13241,6 +13308,9 @@ module Aws::RDS
|
|
13241
13308
|
# resp.db_snapshot.processor_features[0].name #=> String
|
13242
13309
|
# resp.db_snapshot.processor_features[0].value #=> String
|
13243
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
|
13244
13314
|
#
|
13245
13315
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBSnapshot AWS API Documentation
|
13246
13316
|
#
|
@@ -13906,6 +13976,7 @@ module Aws::RDS
|
|
13906
13976
|
# resp.db_instance.option_group_memberships[0].option_group_name #=> String
|
13907
13977
|
# resp.db_instance.option_group_memberships[0].status #=> String
|
13908
13978
|
# resp.db_instance.character_set_name #=> String
|
13979
|
+
# resp.db_instance.nchar_character_set_name #=> String
|
13909
13980
|
# resp.db_instance.secondary_availability_zone #=> String
|
13910
13981
|
# resp.db_instance.publicly_accessible #=> Boolean
|
13911
13982
|
# resp.db_instance.status_infos #=> Array
|
@@ -13951,6 +14022,9 @@ module Aws::RDS
|
|
13951
14022
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
13952
14023
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
13953
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
|
13954
14028
|
#
|
13955
14029
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplica AWS API Documentation
|
13956
14030
|
#
|
@@ -14066,6 +14140,9 @@ module Aws::RDS
|
|
14066
14140
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
14067
14141
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
14068
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
|
14069
14146
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
14070
14147
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
14071
14148
|
#
|
@@ -14299,6 +14376,7 @@ module Aws::RDS
|
|
14299
14376
|
# resp.db_instance.option_group_memberships[0].option_group_name #=> String
|
14300
14377
|
# resp.db_instance.option_group_memberships[0].status #=> String
|
14301
14378
|
# resp.db_instance.character_set_name #=> String
|
14379
|
+
# resp.db_instance.nchar_character_set_name #=> String
|
14302
14380
|
# resp.db_instance.secondary_availability_zone #=> String
|
14303
14381
|
# resp.db_instance.publicly_accessible #=> Boolean
|
14304
14382
|
# resp.db_instance.status_infos #=> Array
|
@@ -14344,6 +14422,9 @@ module Aws::RDS
|
|
14344
14422
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
14345
14423
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
14346
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
|
14347
14428
|
#
|
14348
14429
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBInstance AWS API Documentation
|
14349
14430
|
#
|
@@ -15290,6 +15371,9 @@ module Aws::RDS
|
|
15290
15371
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
15291
15372
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
15292
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
|
15293
15377
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
15294
15378
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
15295
15379
|
#
|
@@ -15493,6 +15577,12 @@ module Aws::RDS
|
|
15493
15577
|
# The DB engine mode of the DB cluster, either `provisioned`,
|
15494
15578
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
15495
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
|
+
#
|
15496
15586
|
# @option params [Types::ScalingConfiguration] :scaling_configuration
|
15497
15587
|
# For DB clusters in `serverless` DB engine mode, the scaling properties
|
15498
15588
|
# of the DB cluster.
|
@@ -15676,6 +15766,9 @@ module Aws::RDS
|
|
15676
15766
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
15677
15767
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
15678
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
|
15679
15772
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
15680
15773
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
15681
15774
|
#
|
@@ -16046,6 +16139,9 @@ module Aws::RDS
|
|
16046
16139
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
16047
16140
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
16048
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
|
16049
16145
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
16050
16146
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
16051
16147
|
#
|
@@ -16321,11 +16417,11 @@ module Aws::RDS
|
|
16321
16417
|
# The list of logs that the restored DB instance is to export to
|
16322
16418
|
# CloudWatch Logs. The values in the list depend on the DB engine being
|
16323
16419
|
# used. For more information, see [Publishing Database Logs to Amazon
|
16324
|
-
# CloudWatch Logs][1] in the *Amazon
|
16420
|
+
# CloudWatch Logs][1] in the *Amazon RDS User Guide*.
|
16325
16421
|
#
|
16326
16422
|
#
|
16327
16423
|
#
|
16328
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/
|
16424
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
16329
16425
|
#
|
16330
16426
|
# @option params [Array<Types::ProcessorFeature>] :processor_features
|
16331
16427
|
# The number of CPU cores and the number of threads per core for the DB
|
@@ -16575,6 +16671,7 @@ module Aws::RDS
|
|
16575
16671
|
# resp.db_instance.option_group_memberships[0].option_group_name #=> String
|
16576
16672
|
# resp.db_instance.option_group_memberships[0].status #=> String
|
16577
16673
|
# resp.db_instance.character_set_name #=> String
|
16674
|
+
# resp.db_instance.nchar_character_set_name #=> String
|
16578
16675
|
# resp.db_instance.secondary_availability_zone #=> String
|
16579
16676
|
# resp.db_instance.publicly_accessible #=> Boolean
|
16580
16677
|
# resp.db_instance.status_infos #=> Array
|
@@ -16620,6 +16717,9 @@ module Aws::RDS
|
|
16620
16717
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
16621
16718
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
16622
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
|
16623
16723
|
#
|
16624
16724
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshot AWS API Documentation
|
16625
16725
|
#
|
@@ -17000,6 +17100,10 @@ module Aws::RDS
|
|
17000
17100
|
#
|
17001
17101
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
|
17002
17102
|
#
|
17103
|
+
# @option params [Integer] :max_allocated_storage
|
17104
|
+
# The upper limit to which Amazon RDS can automatically scale the
|
17105
|
+
# storage of the DB instance.
|
17106
|
+
#
|
17003
17107
|
# @return [Types::RestoreDBInstanceFromS3Result] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
17004
17108
|
#
|
17005
17109
|
# * {Types::RestoreDBInstanceFromS3Result#db_instance #db_instance} => Types::DBInstance
|
@@ -17060,6 +17164,7 @@ module Aws::RDS
|
|
17060
17164
|
# ],
|
17061
17165
|
# use_default_processor_features: false,
|
17062
17166
|
# deletion_protection: false,
|
17167
|
+
# max_allocated_storage: 1,
|
17063
17168
|
# })
|
17064
17169
|
#
|
17065
17170
|
# @example Response structure
|
@@ -17134,6 +17239,7 @@ module Aws::RDS
|
|
17134
17239
|
# resp.db_instance.option_group_memberships[0].option_group_name #=> String
|
17135
17240
|
# resp.db_instance.option_group_memberships[0].status #=> String
|
17136
17241
|
# resp.db_instance.character_set_name #=> String
|
17242
|
+
# resp.db_instance.nchar_character_set_name #=> String
|
17137
17243
|
# resp.db_instance.secondary_availability_zone #=> String
|
17138
17244
|
# resp.db_instance.publicly_accessible #=> Boolean
|
17139
17245
|
# resp.db_instance.status_infos #=> Array
|
@@ -17179,6 +17285,9 @@ module Aws::RDS
|
|
17179
17285
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
17180
17286
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
17181
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
|
17182
17291
|
#
|
17183
17292
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3 AWS API Documentation
|
17184
17293
|
#
|
@@ -17495,6 +17604,10 @@ module Aws::RDS
|
|
17495
17604
|
# @option params [String] :source_dbi_resource_id
|
17496
17605
|
# The resource ID of the source DB instance from which to restore.
|
17497
17606
|
#
|
17607
|
+
# @option params [Integer] :max_allocated_storage
|
17608
|
+
# The upper limit to which Amazon RDS can automatically scale the
|
17609
|
+
# storage of the DB instance.
|
17610
|
+
#
|
17498
17611
|
# @return [Types::RestoreDBInstanceToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
17499
17612
|
#
|
17500
17613
|
# * {Types::RestoreDBInstanceToPointInTimeResult#db_instance #db_instance} => Types::DBInstance
|
@@ -17639,6 +17752,7 @@ module Aws::RDS
|
|
17639
17752
|
# db_parameter_group_name: "String",
|
17640
17753
|
# deletion_protection: false,
|
17641
17754
|
# source_dbi_resource_id: "String",
|
17755
|
+
# max_allocated_storage: 1,
|
17642
17756
|
# })
|
17643
17757
|
#
|
17644
17758
|
# @example Response structure
|
@@ -17713,6 +17827,7 @@ module Aws::RDS
|
|
17713
17827
|
# resp.db_instance.option_group_memberships[0].option_group_name #=> String
|
17714
17828
|
# resp.db_instance.option_group_memberships[0].status #=> String
|
17715
17829
|
# resp.db_instance.character_set_name #=> String
|
17830
|
+
# resp.db_instance.nchar_character_set_name #=> String
|
17716
17831
|
# resp.db_instance.secondary_availability_zone #=> String
|
17717
17832
|
# resp.db_instance.publicly_accessible #=> Boolean
|
17718
17833
|
# resp.db_instance.status_infos #=> Array
|
@@ -17758,6 +17873,9 @@ module Aws::RDS
|
|
17758
17873
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
17759
17874
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
17760
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
|
17761
17879
|
#
|
17762
17880
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTime AWS API Documentation
|
17763
17881
|
#
|
@@ -18025,6 +18143,9 @@ module Aws::RDS
|
|
18025
18143
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
18026
18144
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
18027
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
|
18028
18149
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
18029
18150
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
18030
18151
|
#
|
@@ -18138,6 +18259,7 @@ module Aws::RDS
|
|
18138
18259
|
# resp.db_instance.option_group_memberships[0].option_group_name #=> String
|
18139
18260
|
# resp.db_instance.option_group_memberships[0].status #=> String
|
18140
18261
|
# resp.db_instance.character_set_name #=> String
|
18262
|
+
# resp.db_instance.nchar_character_set_name #=> String
|
18141
18263
|
# resp.db_instance.secondary_availability_zone #=> String
|
18142
18264
|
# resp.db_instance.publicly_accessible #=> Boolean
|
18143
18265
|
# resp.db_instance.status_infos #=> Array
|
@@ -18183,6 +18305,9 @@ module Aws::RDS
|
|
18183
18305
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
18184
18306
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
18185
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
|
18186
18311
|
#
|
18187
18312
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstance AWS API Documentation
|
18188
18313
|
#
|
@@ -18473,6 +18598,9 @@ module Aws::RDS
|
|
18473
18598
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
18474
18599
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
18475
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
|
18476
18604
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
18477
18605
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
18478
18606
|
#
|
@@ -18593,6 +18721,7 @@ module Aws::RDS
|
|
18593
18721
|
# resp.db_instance.option_group_memberships[0].option_group_name #=> String
|
18594
18722
|
# resp.db_instance.option_group_memberships[0].status #=> String
|
18595
18723
|
# resp.db_instance.character_set_name #=> String
|
18724
|
+
# resp.db_instance.nchar_character_set_name #=> String
|
18596
18725
|
# resp.db_instance.secondary_availability_zone #=> String
|
18597
18726
|
# resp.db_instance.publicly_accessible #=> Boolean
|
18598
18727
|
# resp.db_instance.status_infos #=> Array
|
@@ -18638,6 +18767,9 @@ module Aws::RDS
|
|
18638
18767
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
18639
18768
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
18640
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
|
18641
18773
|
#
|
18642
18774
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstance AWS API Documentation
|
18643
18775
|
#
|
@@ -18661,7 +18793,7 @@ module Aws::RDS
|
|
18661
18793
|
params: params,
|
18662
18794
|
config: config)
|
18663
18795
|
context[:gem_name] = 'aws-sdk-rds'
|
18664
|
-
context[:gem_version] = '1.
|
18796
|
+
context[:gem_version] = '1.104.0'
|
18665
18797
|
Seahorse::Client::Request.new(handlers, context)
|
18666
18798
|
end
|
18667
18799
|
|