aws-sdk-rds 1.101.0 → 1.106.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 +187 -66
- data/lib/aws-sdk-rds/client_api.rb +12 -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 +46 -33
- data/lib/aws-sdk-rds/db_snapshot.rb +21 -5
- data/lib/aws-sdk-rds/resource.rb +27 -32
- data/lib/aws-sdk-rds/types.rb +156 -92
- 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: 4418206992a01b1349c95a28e301de23f52cb89125967a94465155108631bb1a
|
4
|
+
data.tar.gz: de186c18fd6f2291ccf1f46cc5ed2e30f3690a44861ee7730d3ca73980f1d5de
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6cd083c744ff46f90bbbd3278c8664c5ab222829bef4d67aea33f87a1e1d606d1baf56f12390aa00fcd8b905b7cb816d6aa34af9db45118d3d0e4bc227d84e73
|
7
|
+
data.tar.gz: d3c1a89457f0776aafebeb4338da12948fb0093169b84d0114d98ae7ae9e5c9259c871ab641caf090ad04059d5d871ce34d3744bb84134a274c3d095475fa4fc
|
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
|
@@ -1550,6 +1553,12 @@ module Aws::RDS
|
|
1550
1553
|
#
|
1551
1554
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_CopySnapshot.html#USER_CopySnapshot.Options
|
1552
1555
|
#
|
1556
|
+
# @option params [String] :target_custom_availability_zone
|
1557
|
+
# The external custom Availability Zone (CAZ) identifier for the target
|
1558
|
+
# CAZ.
|
1559
|
+
#
|
1560
|
+
# Example: `rds-caz-aiqhTgQv`.
|
1561
|
+
#
|
1553
1562
|
# @option params [String] :source_region
|
1554
1563
|
# The source region of the snapshot. This is only needed when the
|
1555
1564
|
# shapshot is encrypted and in a different region.
|
@@ -1589,6 +1598,7 @@ module Aws::RDS
|
|
1589
1598
|
# copy_tags: false,
|
1590
1599
|
# pre_signed_url: "String",
|
1591
1600
|
# option_group_name: "String",
|
1601
|
+
# target_custom_availability_zone: "String",
|
1592
1602
|
# source_region: "String",
|
1593
1603
|
# })
|
1594
1604
|
#
|
@@ -1624,6 +1634,9 @@ module Aws::RDS
|
|
1624
1634
|
# resp.db_snapshot.processor_features[0].name #=> String
|
1625
1635
|
# resp.db_snapshot.processor_features[0].value #=> String
|
1626
1636
|
# resp.db_snapshot.dbi_resource_id #=> String
|
1637
|
+
# resp.db_snapshot.tag_list #=> Array
|
1638
|
+
# resp.db_snapshot.tag_list[0].key #=> String
|
1639
|
+
# resp.db_snapshot.tag_list[0].value #=> String
|
1627
1640
|
#
|
1628
1641
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBSnapshot AWS API Documentation
|
1629
1642
|
#
|
@@ -1637,25 +1650,13 @@ module Aws::RDS
|
|
1637
1650
|
# Copies the specified option group.
|
1638
1651
|
#
|
1639
1652
|
# @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*.
|
1653
|
+
# The identifier for the source option group.
|
1643
1654
|
#
|
1644
1655
|
# Constraints:
|
1645
1656
|
#
|
1646
1657
|
# * Must specify a valid option group.
|
1647
1658
|
#
|
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
|
1659
|
+
# ^
|
1659
1660
|
#
|
1660
1661
|
# @option params [required, String] :target_option_group_identifier
|
1661
1662
|
# The identifier for the copied option group.
|
@@ -2157,14 +2158,23 @@ module Aws::RDS
|
|
2157
2158
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
2158
2159
|
#
|
2159
2160
|
# @option params [String] :engine_mode
|
2160
|
-
# The DB engine mode of the DB cluster, either `provisioned
|
2161
|
+
# The DB engine mode of the DB cluster, either `provisioned`
|
2161
2162
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
2162
2163
|
#
|
2163
|
-
#
|
2164
|
-
#
|
2165
|
-
#
|
2164
|
+
# The `parallelquery` engine mode isn't required for Aurora MySQL
|
2165
|
+
# version 1.23 and higher 1.x versions, and version 2.09 and higher 2.x
|
2166
|
+
# versions.
|
2167
|
+
#
|
2168
|
+
# The `global` engine mode isn't required for Aurora MySQL version 1.22
|
2169
|
+
# and higher 1.x versions, and `global` engine mode isn't required for
|
2170
|
+
# any 2.x versions.
|
2166
2171
|
#
|
2167
|
-
#
|
2172
|
+
# The `multimaster` engine mode only applies for DB clusters created
|
2173
|
+
# with Aurora MySQL version 5.6.10a.
|
2174
|
+
#
|
2175
|
+
# For Aurora PostgreSQL, the `global` engine mode isn't required, and
|
2176
|
+
# both the `parallelquery` and the `multimaster` engine modes currently
|
2177
|
+
# aren't supported.
|
2168
2178
|
#
|
2169
2179
|
# Limitations and requirements apply to some DB engine modes. For more
|
2170
2180
|
# information, see the following sections in the *Amazon Aurora User
|
@@ -2174,7 +2184,7 @@ module Aws::RDS
|
|
2174
2184
|
#
|
2175
2185
|
# * [ Limitations of Parallel Query][2]
|
2176
2186
|
#
|
2177
|
-
# * [
|
2187
|
+
# * [ Limitations of Aurora Global Databases][3]
|
2178
2188
|
#
|
2179
2189
|
# * [ Limitations of Multi-Master Clusters][4]
|
2180
2190
|
#
|
@@ -2405,6 +2415,9 @@ module Aws::RDS
|
|
2405
2415
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
2406
2416
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
2407
2417
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
2418
|
+
# resp.db_cluster.tag_list #=> Array
|
2419
|
+
# resp.db_cluster.tag_list[0].key #=> String
|
2420
|
+
# resp.db_cluster.tag_list[0].value #=> String
|
2408
2421
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
2409
2422
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
2410
2423
|
#
|
@@ -2722,6 +2735,9 @@ module Aws::RDS
|
|
2722
2735
|
# resp.db_cluster_snapshot.db_cluster_snapshot_arn #=> String
|
2723
2736
|
# resp.db_cluster_snapshot.source_db_cluster_snapshot_arn #=> String
|
2724
2737
|
# resp.db_cluster_snapshot.iam_database_authentication_enabled #=> Boolean
|
2738
|
+
# resp.db_cluster_snapshot.tag_list #=> Array
|
2739
|
+
# resp.db_cluster_snapshot.tag_list[0].key #=> String
|
2740
|
+
# resp.db_cluster_snapshot.tag_list[0].value #=> String
|
2725
2741
|
#
|
2726
2742
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBClusterSnapshot AWS API Documentation
|
2727
2743
|
#
|
@@ -3263,8 +3279,8 @@ module Aws::RDS
|
|
3263
3279
|
#
|
3264
3280
|
# **Microsoft SQL Server**
|
3265
3281
|
#
|
3266
|
-
# See [
|
3267
|
-
# User Guide.*
|
3282
|
+
# See [Microsoft SQL Server Versions on Amazon RDS][2] in the *Amazon
|
3283
|
+
# RDS User Guide.*
|
3268
3284
|
#
|
3269
3285
|
# **MySQL**
|
3270
3286
|
#
|
@@ -3283,7 +3299,7 @@ module Aws::RDS
|
|
3283
3299
|
#
|
3284
3300
|
#
|
3285
3301
|
# [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.
|
3302
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.VersionSupport
|
3287
3303
|
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MySQL.html#MySQL.Concepts.VersionMgmt
|
3288
3304
|
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Appendix.Oracle.PatchComposition.html
|
3289
3305
|
# [5]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_PostgreSQL.html#PostgreSQL.Concepts.General.DBVersions
|
@@ -3332,6 +3348,9 @@ module Aws::RDS
|
|
3332
3348
|
# Not applicable. The character set is managed by the DB cluster. For
|
3333
3349
|
# more information, see `CreateDBCluster`.
|
3334
3350
|
#
|
3351
|
+
# @option params [String] :nchar_character_set_name
|
3352
|
+
# The name of the NCHAR character set for the Oracle DB instance.
|
3353
|
+
#
|
3335
3354
|
# @option params [Boolean] :publicly_accessible
|
3336
3355
|
# A value that indicates whether the DB instance is publicly accessible.
|
3337
3356
|
#
|
@@ -3496,29 +3515,8 @@ module Aws::RDS
|
|
3496
3515
|
# Access Management (IAM) accounts to database accounts. By default,
|
3497
3516
|
# mapping is disabled.
|
3498
3517
|
#
|
3499
|
-
#
|
3500
|
-
#
|
3501
|
-
#
|
3502
|
-
# **Amazon Aurora**
|
3503
|
-
#
|
3504
|
-
# Not applicable. Mapping AWS IAM accounts to database accounts is
|
3505
|
-
# managed by the DB cluster.
|
3506
|
-
#
|
3507
|
-
# **MySQL**
|
3508
|
-
#
|
3509
|
-
# * For MySQL 5.6, minor version 5.6.34 or higher
|
3510
|
-
#
|
3511
|
-
# * For MySQL 5.7, minor version 5.7.16 or higher
|
3512
|
-
#
|
3513
|
-
# * For MySQL 8.0, minor version 8.0.16 or higher
|
3514
|
-
#
|
3515
|
-
# **PostgreSQL**
|
3516
|
-
#
|
3517
|
-
# * For PostgreSQL 9.5, minor version 9.5.15 or higher
|
3518
|
-
#
|
3519
|
-
# * For PostgreSQL 9.6, minor version 9.6.11 or higher
|
3520
|
-
#
|
3521
|
-
# * PostgreSQL 10.6, 10.7, and 10.9
|
3518
|
+
# This setting doesn't apply to Amazon Aurora. Mapping AWS IAM accounts
|
3519
|
+
# to database accounts is managed by the DB cluster.
|
3522
3520
|
#
|
3523
3521
|
# For more information, see [ IAM Database Authentication for MySQL and
|
3524
3522
|
# PostgreSQL][1] in the *Amazon RDS User Guide.*
|
@@ -3559,6 +3557,10 @@ module Aws::RDS
|
|
3559
3557
|
# CloudWatch Logs ][1] in the *Amazon Relational Database Service User
|
3560
3558
|
# Guide*.
|
3561
3559
|
#
|
3560
|
+
# **Amazon Aurora**
|
3561
|
+
#
|
3562
|
+
# Not applicable. CloudWatch Logs exports are managed by the DB cluster.
|
3563
|
+
#
|
3562
3564
|
# **MariaDB**
|
3563
3565
|
#
|
3564
3566
|
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
@@ -3658,6 +3660,7 @@ module Aws::RDS
|
|
3658
3660
|
# iops: 1,
|
3659
3661
|
# option_group_name: "String",
|
3660
3662
|
# character_set_name: "String",
|
3663
|
+
# nchar_character_set_name: "String",
|
3661
3664
|
# publicly_accessible: false,
|
3662
3665
|
# tags: [
|
3663
3666
|
# {
|
@@ -3765,6 +3768,7 @@ module Aws::RDS
|
|
3765
3768
|
# resp.db_instance.option_group_memberships[0].option_group_name #=> String
|
3766
3769
|
# resp.db_instance.option_group_memberships[0].status #=> String
|
3767
3770
|
# resp.db_instance.character_set_name #=> String
|
3771
|
+
# resp.db_instance.nchar_character_set_name #=> String
|
3768
3772
|
# resp.db_instance.secondary_availability_zone #=> String
|
3769
3773
|
# resp.db_instance.publicly_accessible #=> Boolean
|
3770
3774
|
# resp.db_instance.status_infos #=> Array
|
@@ -3810,6 +3814,9 @@ module Aws::RDS
|
|
3810
3814
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
3811
3815
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
3812
3816
|
# resp.db_instance.max_allocated_storage #=> Integer
|
3817
|
+
# resp.db_instance.tag_list #=> Array
|
3818
|
+
# resp.db_instance.tag_list[0].key #=> String
|
3819
|
+
# resp.db_instance.tag_list[0].value #=> String
|
3813
3820
|
#
|
3814
3821
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstance AWS API Documentation
|
3815
3822
|
#
|
@@ -4143,8 +4150,7 @@ module Aws::RDS
|
|
4143
4150
|
# @option params [Boolean] :enable_iam_database_authentication
|
4144
4151
|
# A value that indicates whether to enable mapping of AWS Identity and
|
4145
4152
|
# Access Management (IAM) accounts to database accounts. By default,
|
4146
|
-
# mapping is disabled.
|
4147
|
-
# see CreateDBInstance.
|
4153
|
+
# mapping is disabled.
|
4148
4154
|
#
|
4149
4155
|
# For more information about IAM database authentication, see [ IAM
|
4150
4156
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -4245,6 +4251,10 @@ module Aws::RDS
|
|
4245
4251
|
#
|
4246
4252
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
4247
4253
|
#
|
4254
|
+
# @option params [Integer] :max_allocated_storage
|
4255
|
+
# The upper limit to which Amazon RDS can automatically scale the
|
4256
|
+
# storage of the DB instance.
|
4257
|
+
#
|
4248
4258
|
# @option params [String] :source_region
|
4249
4259
|
# The source region of the snapshot. This is only needed when the
|
4250
4260
|
# shapshot is encrypted and in a different region.
|
@@ -4324,6 +4334,7 @@ module Aws::RDS
|
|
4324
4334
|
# domain: "String",
|
4325
4335
|
# domain_iam_role_name: "String",
|
4326
4336
|
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
4337
|
+
# max_allocated_storage: 1,
|
4327
4338
|
# source_region: "String",
|
4328
4339
|
# })
|
4329
4340
|
#
|
@@ -4399,6 +4410,7 @@ module Aws::RDS
|
|
4399
4410
|
# resp.db_instance.option_group_memberships[0].option_group_name #=> String
|
4400
4411
|
# resp.db_instance.option_group_memberships[0].status #=> String
|
4401
4412
|
# resp.db_instance.character_set_name #=> String
|
4413
|
+
# resp.db_instance.nchar_character_set_name #=> String
|
4402
4414
|
# resp.db_instance.secondary_availability_zone #=> String
|
4403
4415
|
# resp.db_instance.publicly_accessible #=> Boolean
|
4404
4416
|
# resp.db_instance.status_infos #=> Array
|
@@ -4444,6 +4456,9 @@ module Aws::RDS
|
|
4444
4456
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
4445
4457
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
4446
4458
|
# resp.db_instance.max_allocated_storage #=> Integer
|
4459
|
+
# resp.db_instance.tag_list #=> Array
|
4460
|
+
# resp.db_instance.tag_list[0].key #=> String
|
4461
|
+
# resp.db_instance.tag_list[0].value #=> String
|
4447
4462
|
#
|
4448
4463
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceReadReplica AWS API Documentation
|
4449
4464
|
#
|
@@ -4774,8 +4789,8 @@ module Aws::RDS
|
|
4774
4789
|
req.send_request(options)
|
4775
4790
|
end
|
4776
4791
|
|
4777
|
-
# Creates a
|
4778
|
-
# state.
|
4792
|
+
# Creates a snapshot of a DB instance. The source DB instance must be in
|
4793
|
+
# the `available` or `storage-optimization`state.
|
4779
4794
|
#
|
4780
4795
|
# @option params [required, String] :db_snapshot_identifier
|
4781
4796
|
# The identifier for the DB snapshot.
|
@@ -4875,6 +4890,9 @@ module Aws::RDS
|
|
4875
4890
|
# resp.db_snapshot.processor_features[0].name #=> String
|
4876
4891
|
# resp.db_snapshot.processor_features[0].value #=> String
|
4877
4892
|
# resp.db_snapshot.dbi_resource_id #=> String
|
4893
|
+
# resp.db_snapshot.tag_list #=> Array
|
4894
|
+
# resp.db_snapshot.tag_list[0].key #=> String
|
4895
|
+
# resp.db_snapshot.tag_list[0].value #=> String
|
4878
4896
|
#
|
4879
4897
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBSnapshot AWS API Documentation
|
4880
4898
|
#
|
@@ -5537,6 +5555,9 @@ module Aws::RDS
|
|
5537
5555
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
5538
5556
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
5539
5557
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
5558
|
+
# resp.db_cluster.tag_list #=> Array
|
5559
|
+
# resp.db_cluster.tag_list[0].key #=> String
|
5560
|
+
# resp.db_cluster.tag_list[0].value #=> String
|
5540
5561
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
5541
5562
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
5542
5563
|
#
|
@@ -5728,6 +5749,9 @@ module Aws::RDS
|
|
5728
5749
|
# resp.db_cluster_snapshot.db_cluster_snapshot_arn #=> String
|
5729
5750
|
# resp.db_cluster_snapshot.source_db_cluster_snapshot_arn #=> String
|
5730
5751
|
# resp.db_cluster_snapshot.iam_database_authentication_enabled #=> Boolean
|
5752
|
+
# resp.db_cluster_snapshot.tag_list #=> Array
|
5753
|
+
# resp.db_cluster_snapshot.tag_list[0].key #=> String
|
5754
|
+
# resp.db_cluster_snapshot.tag_list[0].value #=> String
|
5731
5755
|
#
|
5732
5756
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBClusterSnapshot AWS API Documentation
|
5733
5757
|
#
|
@@ -5923,6 +5947,7 @@ module Aws::RDS
|
|
5923
5947
|
# resp.db_instance.option_group_memberships[0].option_group_name #=> String
|
5924
5948
|
# resp.db_instance.option_group_memberships[0].status #=> String
|
5925
5949
|
# resp.db_instance.character_set_name #=> String
|
5950
|
+
# resp.db_instance.nchar_character_set_name #=> String
|
5926
5951
|
# resp.db_instance.secondary_availability_zone #=> String
|
5927
5952
|
# resp.db_instance.publicly_accessible #=> Boolean
|
5928
5953
|
# resp.db_instance.status_infos #=> Array
|
@@ -5968,6 +5993,9 @@ module Aws::RDS
|
|
5968
5993
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
5969
5994
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
5970
5995
|
# resp.db_instance.max_allocated_storage #=> Integer
|
5996
|
+
# resp.db_instance.tag_list #=> Array
|
5997
|
+
# resp.db_instance.tag_list[0].key #=> String
|
5998
|
+
# resp.db_instance.tag_list[0].value #=> String
|
5971
5999
|
#
|
5972
6000
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstance AWS API Documentation
|
5973
6001
|
#
|
@@ -6239,6 +6267,9 @@ module Aws::RDS
|
|
6239
6267
|
# resp.db_snapshot.processor_features[0].name #=> String
|
6240
6268
|
# resp.db_snapshot.processor_features[0].value #=> String
|
6241
6269
|
# resp.db_snapshot.dbi_resource_id #=> String
|
6270
|
+
# resp.db_snapshot.tag_list #=> Array
|
6271
|
+
# resp.db_snapshot.tag_list[0].key #=> String
|
6272
|
+
# resp.db_snapshot.tag_list[0].value #=> String
|
6242
6273
|
#
|
6243
6274
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBSnapshot AWS API Documentation
|
6244
6275
|
#
|
@@ -7387,6 +7418,9 @@ module Aws::RDS
|
|
7387
7418
|
# resp.db_cluster_snapshots[0].db_cluster_snapshot_arn #=> String
|
7388
7419
|
# resp.db_cluster_snapshots[0].source_db_cluster_snapshot_arn #=> String
|
7389
7420
|
# resp.db_cluster_snapshots[0].iam_database_authentication_enabled #=> Boolean
|
7421
|
+
# resp.db_cluster_snapshots[0].tag_list #=> Array
|
7422
|
+
# resp.db_cluster_snapshots[0].tag_list[0].key #=> String
|
7423
|
+
# resp.db_cluster_snapshots[0].tag_list[0].value #=> String
|
7390
7424
|
#
|
7391
7425
|
#
|
7392
7426
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -7574,6 +7608,9 @@ module Aws::RDS
|
|
7574
7608
|
# resp.db_clusters[0].domain_memberships[0].status #=> String
|
7575
7609
|
# resp.db_clusters[0].domain_memberships[0].fqdn #=> String
|
7576
7610
|
# resp.db_clusters[0].domain_memberships[0].iam_role_name #=> String
|
7611
|
+
# resp.db_clusters[0].tag_list #=> Array
|
7612
|
+
# resp.db_clusters[0].tag_list[0].key #=> String
|
7613
|
+
# resp.db_clusters[0].tag_list[0].value #=> String
|
7577
7614
|
# resp.db_clusters[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
7578
7615
|
# resp.db_clusters[0].global_write_forwarding_requested #=> Boolean
|
7579
7616
|
#
|
@@ -7707,6 +7744,9 @@ module Aws::RDS
|
|
7707
7744
|
# resp.db_engine_versions[0].supported_character_sets #=> Array
|
7708
7745
|
# resp.db_engine_versions[0].supported_character_sets[0].character_set_name #=> String
|
7709
7746
|
# resp.db_engine_versions[0].supported_character_sets[0].character_set_description #=> String
|
7747
|
+
# resp.db_engine_versions[0].supported_nchar_character_sets #=> Array
|
7748
|
+
# resp.db_engine_versions[0].supported_nchar_character_sets[0].character_set_name #=> String
|
7749
|
+
# resp.db_engine_versions[0].supported_nchar_character_sets[0].character_set_description #=> String
|
7710
7750
|
# resp.db_engine_versions[0].valid_upgrade_target #=> Array
|
7711
7751
|
# resp.db_engine_versions[0].valid_upgrade_target[0].engine #=> String
|
7712
7752
|
# resp.db_engine_versions[0].valid_upgrade_target[0].engine_version #=> String
|
@@ -8021,6 +8061,7 @@ module Aws::RDS
|
|
8021
8061
|
# resp.db_instances[0].option_group_memberships[0].option_group_name #=> String
|
8022
8062
|
# resp.db_instances[0].option_group_memberships[0].status #=> String
|
8023
8063
|
# resp.db_instances[0].character_set_name #=> String
|
8064
|
+
# resp.db_instances[0].nchar_character_set_name #=> String
|
8024
8065
|
# resp.db_instances[0].secondary_availability_zone #=> String
|
8025
8066
|
# resp.db_instances[0].publicly_accessible #=> Boolean
|
8026
8067
|
# resp.db_instances[0].status_infos #=> Array
|
@@ -8066,6 +8107,9 @@ module Aws::RDS
|
|
8066
8107
|
# resp.db_instances[0].listener_endpoint.port #=> Integer
|
8067
8108
|
# resp.db_instances[0].listener_endpoint.hosted_zone_id #=> String
|
8068
8109
|
# resp.db_instances[0].max_allocated_storage #=> Integer
|
8110
|
+
# resp.db_instances[0].tag_list #=> Array
|
8111
|
+
# resp.db_instances[0].tag_list[0].key #=> String
|
8112
|
+
# resp.db_instances[0].tag_list[0].value #=> String
|
8069
8113
|
#
|
8070
8114
|
#
|
8071
8115
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -8932,6 +8976,9 @@ module Aws::RDS
|
|
8932
8976
|
# resp.db_snapshots[0].processor_features[0].name #=> String
|
8933
8977
|
# resp.db_snapshots[0].processor_features[0].value #=> String
|
8934
8978
|
# resp.db_snapshots[0].dbi_resource_id #=> String
|
8979
|
+
# resp.db_snapshots[0].tag_list #=> Array
|
8980
|
+
# resp.db_snapshots[0].tag_list[0].key #=> String
|
8981
|
+
# resp.db_snapshots[0].tag_list[0].value #=> String
|
8935
8982
|
#
|
8936
8983
|
#
|
8937
8984
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -10944,6 +10991,9 @@ module Aws::RDS
|
|
10944
10991
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
10945
10992
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
10946
10993
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
10994
|
+
# resp.db_cluster.tag_list #=> Array
|
10995
|
+
# resp.db_cluster.tag_list[0].key #=> String
|
10996
|
+
# resp.db_cluster.tag_list[0].value #=> String
|
10947
10997
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
10948
10998
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
10949
10999
|
#
|
@@ -10990,12 +11040,12 @@ module Aws::RDS
|
|
10990
11040
|
#
|
10991
11041
|
# **Microsoft SQL Server**
|
10992
11042
|
#
|
10993
|
-
# See [
|
10994
|
-
# User Guide.*
|
11043
|
+
# See [ Microsoft SQL Server Versions on Amazon RDS][1] in the *Amazon
|
11044
|
+
# RDS User Guide.*
|
10995
11045
|
#
|
10996
11046
|
#
|
10997
11047
|
#
|
10998
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.
|
11048
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.VersionSupport
|
10999
11049
|
#
|
11000
11050
|
# @option params [required, String] :engine_installation_media_path
|
11001
11051
|
# The path to the installation medium for the specified DB engine.
|
@@ -11722,6 +11772,9 @@ module Aws::RDS
|
|
11722
11772
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
11723
11773
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
11724
11774
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
11775
|
+
# resp.db_cluster.tag_list #=> Array
|
11776
|
+
# resp.db_cluster.tag_list[0].key #=> String
|
11777
|
+
# resp.db_cluster.tag_list[0].value #=> String
|
11725
11778
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
11726
11779
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
11727
11780
|
#
|
@@ -12280,7 +12333,7 @@ module Aws::RDS
|
|
12280
12333
|
# The version number of the database engine to upgrade to. Changing this
|
12281
12334
|
# parameter results in an outage and the change is applied during the
|
12282
12335
|
# next maintenance window unless the `ApplyImmediately` parameter is
|
12283
|
-
#
|
12336
|
+
# enabled for this request.
|
12284
12337
|
#
|
12285
12338
|
# For major version upgrades, if a nondefault DB parameter group is
|
12286
12339
|
# currently in use, a new DB parameter group in the DB parameter group
|
@@ -12554,8 +12607,10 @@ module Aws::RDS
|
|
12554
12607
|
# @option params [Boolean] :enable_iam_database_authentication
|
12555
12608
|
# A value that indicates whether to enable mapping of AWS Identity and
|
12556
12609
|
# Access Management (IAM) accounts to database accounts. By default,
|
12557
|
-
# mapping is disabled.
|
12558
|
-
#
|
12610
|
+
# mapping is disabled.
|
12611
|
+
#
|
12612
|
+
# This setting doesn't apply to Amazon Aurora. Mapping AWS IAM accounts
|
12613
|
+
# to database accounts is managed by the DB cluster.
|
12559
12614
|
#
|
12560
12615
|
# For more information about IAM database authentication, see [ IAM
|
12561
12616
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -12822,6 +12877,7 @@ module Aws::RDS
|
|
12822
12877
|
# resp.db_instance.option_group_memberships[0].option_group_name #=> String
|
12823
12878
|
# resp.db_instance.option_group_memberships[0].status #=> String
|
12824
12879
|
# resp.db_instance.character_set_name #=> String
|
12880
|
+
# resp.db_instance.nchar_character_set_name #=> String
|
12825
12881
|
# resp.db_instance.secondary_availability_zone #=> String
|
12826
12882
|
# resp.db_instance.publicly_accessible #=> Boolean
|
12827
12883
|
# resp.db_instance.status_infos #=> Array
|
@@ -12867,6 +12923,9 @@ module Aws::RDS
|
|
12867
12923
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
12868
12924
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
12869
12925
|
# resp.db_instance.max_allocated_storage #=> Integer
|
12926
|
+
# resp.db_instance.tag_list #=> Array
|
12927
|
+
# resp.db_instance.tag_list[0].key #=> String
|
12928
|
+
# resp.db_instance.tag_list[0].value #=> String
|
12870
12929
|
#
|
12871
12930
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstance AWS API Documentation
|
12872
12931
|
#
|
@@ -13241,6 +13300,9 @@ module Aws::RDS
|
|
13241
13300
|
# resp.db_snapshot.processor_features[0].name #=> String
|
13242
13301
|
# resp.db_snapshot.processor_features[0].value #=> String
|
13243
13302
|
# resp.db_snapshot.dbi_resource_id #=> String
|
13303
|
+
# resp.db_snapshot.tag_list #=> Array
|
13304
|
+
# resp.db_snapshot.tag_list[0].key #=> String
|
13305
|
+
# resp.db_snapshot.tag_list[0].value #=> String
|
13244
13306
|
#
|
13245
13307
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBSnapshot AWS API Documentation
|
13246
13308
|
#
|
@@ -13906,6 +13968,7 @@ module Aws::RDS
|
|
13906
13968
|
# resp.db_instance.option_group_memberships[0].option_group_name #=> String
|
13907
13969
|
# resp.db_instance.option_group_memberships[0].status #=> String
|
13908
13970
|
# resp.db_instance.character_set_name #=> String
|
13971
|
+
# resp.db_instance.nchar_character_set_name #=> String
|
13909
13972
|
# resp.db_instance.secondary_availability_zone #=> String
|
13910
13973
|
# resp.db_instance.publicly_accessible #=> Boolean
|
13911
13974
|
# resp.db_instance.status_infos #=> Array
|
@@ -13951,6 +14014,9 @@ module Aws::RDS
|
|
13951
14014
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
13952
14015
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
13953
14016
|
# resp.db_instance.max_allocated_storage #=> Integer
|
14017
|
+
# resp.db_instance.tag_list #=> Array
|
14018
|
+
# resp.db_instance.tag_list[0].key #=> String
|
14019
|
+
# resp.db_instance.tag_list[0].value #=> String
|
13954
14020
|
#
|
13955
14021
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplica AWS API Documentation
|
13956
14022
|
#
|
@@ -14066,6 +14132,9 @@ module Aws::RDS
|
|
14066
14132
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
14067
14133
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
14068
14134
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
14135
|
+
# resp.db_cluster.tag_list #=> Array
|
14136
|
+
# resp.db_cluster.tag_list[0].key #=> String
|
14137
|
+
# resp.db_cluster.tag_list[0].value #=> String
|
14069
14138
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
14070
14139
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
14071
14140
|
#
|
@@ -14299,6 +14368,7 @@ module Aws::RDS
|
|
14299
14368
|
# resp.db_instance.option_group_memberships[0].option_group_name #=> String
|
14300
14369
|
# resp.db_instance.option_group_memberships[0].status #=> String
|
14301
14370
|
# resp.db_instance.character_set_name #=> String
|
14371
|
+
# resp.db_instance.nchar_character_set_name #=> String
|
14302
14372
|
# resp.db_instance.secondary_availability_zone #=> String
|
14303
14373
|
# resp.db_instance.publicly_accessible #=> Boolean
|
14304
14374
|
# resp.db_instance.status_infos #=> Array
|
@@ -14344,6 +14414,9 @@ module Aws::RDS
|
|
14344
14414
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
14345
14415
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
14346
14416
|
# resp.db_instance.max_allocated_storage #=> Integer
|
14417
|
+
# resp.db_instance.tag_list #=> Array
|
14418
|
+
# resp.db_instance.tag_list[0].key #=> String
|
14419
|
+
# resp.db_instance.tag_list[0].value #=> String
|
14347
14420
|
#
|
14348
14421
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBInstance AWS API Documentation
|
14349
14422
|
#
|
@@ -15290,6 +15363,9 @@ module Aws::RDS
|
|
15290
15363
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
15291
15364
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
15292
15365
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
15366
|
+
# resp.db_cluster.tag_list #=> Array
|
15367
|
+
# resp.db_cluster.tag_list[0].key #=> String
|
15368
|
+
# resp.db_cluster.tag_list[0].value #=> String
|
15293
15369
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
15294
15370
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
15295
15371
|
#
|
@@ -15493,6 +15569,12 @@ module Aws::RDS
|
|
15493
15569
|
# The DB engine mode of the DB cluster, either `provisioned`,
|
15494
15570
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
15495
15571
|
#
|
15572
|
+
# For more information, see [ CreateDBCluster][1].
|
15573
|
+
#
|
15574
|
+
#
|
15575
|
+
#
|
15576
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_CreateDBCluster.html
|
15577
|
+
#
|
15496
15578
|
# @option params [Types::ScalingConfiguration] :scaling_configuration
|
15497
15579
|
# For DB clusters in `serverless` DB engine mode, the scaling properties
|
15498
15580
|
# of the DB cluster.
|
@@ -15676,6 +15758,9 @@ module Aws::RDS
|
|
15676
15758
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
15677
15759
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
15678
15760
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
15761
|
+
# resp.db_cluster.tag_list #=> Array
|
15762
|
+
# resp.db_cluster.tag_list[0].key #=> String
|
15763
|
+
# resp.db_cluster.tag_list[0].value #=> String
|
15679
15764
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
15680
15765
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
15681
15766
|
#
|
@@ -16046,6 +16131,9 @@ module Aws::RDS
|
|
16046
16131
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
16047
16132
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
16048
16133
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
16134
|
+
# resp.db_cluster.tag_list #=> Array
|
16135
|
+
# resp.db_cluster.tag_list[0].key #=> String
|
16136
|
+
# resp.db_cluster.tag_list[0].value #=> String
|
16049
16137
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
16050
16138
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
16051
16139
|
#
|
@@ -16306,8 +16394,7 @@ module Aws::RDS
|
|
16306
16394
|
# @option params [Boolean] :enable_iam_database_authentication
|
16307
16395
|
# A value that indicates whether to enable mapping of AWS Identity and
|
16308
16396
|
# Access Management (IAM) accounts to database accounts. By default,
|
16309
|
-
# mapping is disabled.
|
16310
|
-
# see CreateDBInstance.
|
16397
|
+
# mapping is disabled.
|
16311
16398
|
#
|
16312
16399
|
# For more information about IAM database authentication, see [ IAM
|
16313
16400
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -16321,11 +16408,11 @@ module Aws::RDS
|
|
16321
16408
|
# The list of logs that the restored DB instance is to export to
|
16322
16409
|
# CloudWatch Logs. The values in the list depend on the DB engine being
|
16323
16410
|
# used. For more information, see [Publishing Database Logs to Amazon
|
16324
|
-
# CloudWatch Logs][1] in the *Amazon
|
16411
|
+
# CloudWatch Logs][1] in the *Amazon RDS User Guide*.
|
16325
16412
|
#
|
16326
16413
|
#
|
16327
16414
|
#
|
16328
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/
|
16415
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
16329
16416
|
#
|
16330
16417
|
# @option params [Array<Types::ProcessorFeature>] :processor_features
|
16331
16418
|
# The number of CPU cores and the number of threads per core for the DB
|
@@ -16575,6 +16662,7 @@ module Aws::RDS
|
|
16575
16662
|
# resp.db_instance.option_group_memberships[0].option_group_name #=> String
|
16576
16663
|
# resp.db_instance.option_group_memberships[0].status #=> String
|
16577
16664
|
# resp.db_instance.character_set_name #=> String
|
16665
|
+
# resp.db_instance.nchar_character_set_name #=> String
|
16578
16666
|
# resp.db_instance.secondary_availability_zone #=> String
|
16579
16667
|
# resp.db_instance.publicly_accessible #=> Boolean
|
16580
16668
|
# resp.db_instance.status_infos #=> Array
|
@@ -16620,6 +16708,9 @@ module Aws::RDS
|
|
16620
16708
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
16621
16709
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
16622
16710
|
# resp.db_instance.max_allocated_storage #=> Integer
|
16711
|
+
# resp.db_instance.tag_list #=> Array
|
16712
|
+
# resp.db_instance.tag_list[0].key #=> String
|
16713
|
+
# resp.db_instance.tag_list[0].value #=> String
|
16623
16714
|
#
|
16624
16715
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshot AWS API Documentation
|
16625
16716
|
#
|
@@ -16913,8 +17004,7 @@ module Aws::RDS
|
|
16913
17004
|
# @option params [Boolean] :enable_iam_database_authentication
|
16914
17005
|
# A value that indicates whether to enable mapping of AWS Identity and
|
16915
17006
|
# Access Management (IAM) accounts to database accounts. By default,
|
16916
|
-
# mapping is disabled.
|
16917
|
-
# see CreateDBInstance.
|
17007
|
+
# mapping is disabled.
|
16918
17008
|
#
|
16919
17009
|
# For more information about IAM database authentication, see [ IAM
|
16920
17010
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -17000,6 +17090,10 @@ module Aws::RDS
|
|
17000
17090
|
#
|
17001
17091
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
|
17002
17092
|
#
|
17093
|
+
# @option params [Integer] :max_allocated_storage
|
17094
|
+
# The upper limit to which Amazon RDS can automatically scale the
|
17095
|
+
# storage of the DB instance.
|
17096
|
+
#
|
17003
17097
|
# @return [Types::RestoreDBInstanceFromS3Result] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
17004
17098
|
#
|
17005
17099
|
# * {Types::RestoreDBInstanceFromS3Result#db_instance #db_instance} => Types::DBInstance
|
@@ -17060,6 +17154,7 @@ module Aws::RDS
|
|
17060
17154
|
# ],
|
17061
17155
|
# use_default_processor_features: false,
|
17062
17156
|
# deletion_protection: false,
|
17157
|
+
# max_allocated_storage: 1,
|
17063
17158
|
# })
|
17064
17159
|
#
|
17065
17160
|
# @example Response structure
|
@@ -17134,6 +17229,7 @@ module Aws::RDS
|
|
17134
17229
|
# resp.db_instance.option_group_memberships[0].option_group_name #=> String
|
17135
17230
|
# resp.db_instance.option_group_memberships[0].status #=> String
|
17136
17231
|
# resp.db_instance.character_set_name #=> String
|
17232
|
+
# resp.db_instance.nchar_character_set_name #=> String
|
17137
17233
|
# resp.db_instance.secondary_availability_zone #=> String
|
17138
17234
|
# resp.db_instance.publicly_accessible #=> Boolean
|
17139
17235
|
# resp.db_instance.status_infos #=> Array
|
@@ -17179,6 +17275,9 @@ module Aws::RDS
|
|
17179
17275
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
17180
17276
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
17181
17277
|
# resp.db_instance.max_allocated_storage #=> Integer
|
17278
|
+
# resp.db_instance.tag_list #=> Array
|
17279
|
+
# resp.db_instance.tag_list[0].key #=> String
|
17280
|
+
# resp.db_instance.tag_list[0].value #=> String
|
17182
17281
|
#
|
17183
17282
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3 AWS API Documentation
|
17184
17283
|
#
|
@@ -17437,8 +17536,7 @@ module Aws::RDS
|
|
17437
17536
|
# @option params [Boolean] :enable_iam_database_authentication
|
17438
17537
|
# A value that indicates whether to enable mapping of AWS Identity and
|
17439
17538
|
# Access Management (IAM) accounts to database accounts. By default,
|
17440
|
-
# mapping is disabled.
|
17441
|
-
# see CreateDBInstance.
|
17539
|
+
# mapping is disabled.
|
17442
17540
|
#
|
17443
17541
|
# For more information about IAM database authentication, see [ IAM
|
17444
17542
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -17495,6 +17593,10 @@ module Aws::RDS
|
|
17495
17593
|
# @option params [String] :source_dbi_resource_id
|
17496
17594
|
# The resource ID of the source DB instance from which to restore.
|
17497
17595
|
#
|
17596
|
+
# @option params [Integer] :max_allocated_storage
|
17597
|
+
# The upper limit to which Amazon RDS can automatically scale the
|
17598
|
+
# storage of the DB instance.
|
17599
|
+
#
|
17498
17600
|
# @return [Types::RestoreDBInstanceToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
17499
17601
|
#
|
17500
17602
|
# * {Types::RestoreDBInstanceToPointInTimeResult#db_instance #db_instance} => Types::DBInstance
|
@@ -17639,6 +17741,7 @@ module Aws::RDS
|
|
17639
17741
|
# db_parameter_group_name: "String",
|
17640
17742
|
# deletion_protection: false,
|
17641
17743
|
# source_dbi_resource_id: "String",
|
17744
|
+
# max_allocated_storage: 1,
|
17642
17745
|
# })
|
17643
17746
|
#
|
17644
17747
|
# @example Response structure
|
@@ -17713,6 +17816,7 @@ module Aws::RDS
|
|
17713
17816
|
# resp.db_instance.option_group_memberships[0].option_group_name #=> String
|
17714
17817
|
# resp.db_instance.option_group_memberships[0].status #=> String
|
17715
17818
|
# resp.db_instance.character_set_name #=> String
|
17819
|
+
# resp.db_instance.nchar_character_set_name #=> String
|
17716
17820
|
# resp.db_instance.secondary_availability_zone #=> String
|
17717
17821
|
# resp.db_instance.publicly_accessible #=> Boolean
|
17718
17822
|
# resp.db_instance.status_infos #=> Array
|
@@ -17758,6 +17862,9 @@ module Aws::RDS
|
|
17758
17862
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
17759
17863
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
17760
17864
|
# resp.db_instance.max_allocated_storage #=> Integer
|
17865
|
+
# resp.db_instance.tag_list #=> Array
|
17866
|
+
# resp.db_instance.tag_list[0].key #=> String
|
17867
|
+
# resp.db_instance.tag_list[0].value #=> String
|
17761
17868
|
#
|
17762
17869
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTime AWS API Documentation
|
17763
17870
|
#
|
@@ -18025,6 +18132,9 @@ module Aws::RDS
|
|
18025
18132
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
18026
18133
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
18027
18134
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
18135
|
+
# resp.db_cluster.tag_list #=> Array
|
18136
|
+
# resp.db_cluster.tag_list[0].key #=> String
|
18137
|
+
# resp.db_cluster.tag_list[0].value #=> String
|
18028
18138
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
18029
18139
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
18030
18140
|
#
|
@@ -18138,6 +18248,7 @@ module Aws::RDS
|
|
18138
18248
|
# resp.db_instance.option_group_memberships[0].option_group_name #=> String
|
18139
18249
|
# resp.db_instance.option_group_memberships[0].status #=> String
|
18140
18250
|
# resp.db_instance.character_set_name #=> String
|
18251
|
+
# resp.db_instance.nchar_character_set_name #=> String
|
18141
18252
|
# resp.db_instance.secondary_availability_zone #=> String
|
18142
18253
|
# resp.db_instance.publicly_accessible #=> Boolean
|
18143
18254
|
# resp.db_instance.status_infos #=> Array
|
@@ -18183,6 +18294,9 @@ module Aws::RDS
|
|
18183
18294
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
18184
18295
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
18185
18296
|
# resp.db_instance.max_allocated_storage #=> Integer
|
18297
|
+
# resp.db_instance.tag_list #=> Array
|
18298
|
+
# resp.db_instance.tag_list[0].key #=> String
|
18299
|
+
# resp.db_instance.tag_list[0].value #=> String
|
18186
18300
|
#
|
18187
18301
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstance AWS API Documentation
|
18188
18302
|
#
|
@@ -18473,6 +18587,9 @@ module Aws::RDS
|
|
18473
18587
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
18474
18588
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
18475
18589
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
18590
|
+
# resp.db_cluster.tag_list #=> Array
|
18591
|
+
# resp.db_cluster.tag_list[0].key #=> String
|
18592
|
+
# resp.db_cluster.tag_list[0].value #=> String
|
18476
18593
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
18477
18594
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
18478
18595
|
#
|
@@ -18593,6 +18710,7 @@ module Aws::RDS
|
|
18593
18710
|
# resp.db_instance.option_group_memberships[0].option_group_name #=> String
|
18594
18711
|
# resp.db_instance.option_group_memberships[0].status #=> String
|
18595
18712
|
# resp.db_instance.character_set_name #=> String
|
18713
|
+
# resp.db_instance.nchar_character_set_name #=> String
|
18596
18714
|
# resp.db_instance.secondary_availability_zone #=> String
|
18597
18715
|
# resp.db_instance.publicly_accessible #=> Boolean
|
18598
18716
|
# resp.db_instance.status_infos #=> Array
|
@@ -18638,6 +18756,9 @@ module Aws::RDS
|
|
18638
18756
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
18639
18757
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
18640
18758
|
# resp.db_instance.max_allocated_storage #=> Integer
|
18759
|
+
# resp.db_instance.tag_list #=> Array
|
18760
|
+
# resp.db_instance.tag_list[0].key #=> String
|
18761
|
+
# resp.db_instance.tag_list[0].value #=> String
|
18641
18762
|
#
|
18642
18763
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstance AWS API Documentation
|
18643
18764
|
#
|
@@ -18661,7 +18782,7 @@ module Aws::RDS
|
|
18661
18782
|
params: params,
|
18662
18783
|
config: config)
|
18663
18784
|
context[:gem_name] = 'aws-sdk-rds'
|
18664
|
-
context[:gem_version] = '1.
|
18785
|
+
context[:gem_version] = '1.106.0'
|
18665
18786
|
Seahorse::Client::Request.new(handlers, context)
|
18666
18787
|
end
|
18667
18788
|
|