aws-sdk-rds 1.108.0 → 1.113.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 +506 -73
- data/lib/aws-sdk-rds/client_api.rb +40 -0
- data/lib/aws-sdk-rds/db_cluster.rb +30 -16
- data/lib/aws-sdk-rds/db_instance.rb +170 -33
- data/lib/aws-sdk-rds/db_snapshot.rb +22 -2
- data/lib/aws-sdk-rds/option_group.rb +24 -0
- data/lib/aws-sdk-rds/resource.rb +154 -23
- data/lib/aws-sdk-rds/types.rb +550 -84
- 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: c3363a6bc7204b510ba06cbe33e4c2548d78304b2c81207e5936b3f4c2c81549
|
4
|
+
data.tar.gz: 21db21a446a8ece9a44156f0d3d3192dc82294e9d7266a3eb00b732b19cfa26c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '08aa13d4ac3854a22e718003ebd5bacc6b7e841f718444694856cf038ce17ae417af892609f8ae7e1bc305ebcd818a6fc89f45114492e2909c2601df5b0bf84a'
|
7
|
+
data.tar.gz: 88666a9d24e97a980e7f67a2718aab00725ec0a9bf0f505e04dc44007769b1555428a60350cc8d72b55ad4e9d04b6ce185a1c63c73f1733c4a01bfbeb48d8c86
|
data/lib/aws-sdk-rds.rb
CHANGED
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -913,14 +913,7 @@ module Aws::RDS
|
|
913
913
|
#
|
914
914
|
# * Must specify a valid DB cluster parameter group.
|
915
915
|
#
|
916
|
-
#
|
917
|
-
# as the copy, specify a valid DB parameter group identifier, for
|
918
|
-
# example `my-db-cluster-param-group`, or a valid ARN.
|
919
|
-
#
|
920
|
-
# * If the source DB parameter group is in a different AWS Region than
|
921
|
-
# the copy, specify a valid DB cluster parameter group ARN, for
|
922
|
-
# example
|
923
|
-
# `arn:aws:rds:us-east-1:123456789012:cluster-pg:custom-cluster-group1`.
|
916
|
+
# ^
|
924
917
|
#
|
925
918
|
#
|
926
919
|
#
|
@@ -1306,8 +1299,7 @@ module Aws::RDS
|
|
1306
1299
|
#
|
1307
1300
|
# * Must specify a valid DB parameter group.
|
1308
1301
|
#
|
1309
|
-
#
|
1310
|
-
# `my-db-param-group`, or a valid ARN.
|
1302
|
+
# ^
|
1311
1303
|
#
|
1312
1304
|
#
|
1313
1305
|
#
|
@@ -1547,8 +1539,8 @@ module Aws::RDS
|
|
1547
1539
|
# to another, and your DB instance uses a nondefault option group. If
|
1548
1540
|
# your source DB instance uses Transparent Data Encryption for Oracle or
|
1549
1541
|
# Microsoft SQL Server, you must specify this option when copying across
|
1550
|
-
# AWS Regions. For more information, see [Option
|
1551
|
-
#
|
1542
|
+
# AWS Regions. For more information, see [Option group
|
1543
|
+
# considerations][1] in the *Amazon RDS User Guide.*
|
1552
1544
|
#
|
1553
1545
|
#
|
1554
1546
|
#
|
@@ -1767,8 +1759,8 @@ module Aws::RDS
|
|
1767
1759
|
# A custom AZ is an on-premises AZ that is integrated with a VMware
|
1768
1760
|
# vSphere cluster.
|
1769
1761
|
#
|
1770
|
-
# For more information about RDS on VMware, see the [
|
1771
|
-
#
|
1762
|
+
# For more information about RDS on VMware, see the [ RDS on VMware User
|
1763
|
+
# Guide.][1]
|
1772
1764
|
#
|
1773
1765
|
#
|
1774
1766
|
#
|
@@ -2156,7 +2148,7 @@ module Aws::RDS
|
|
2156
2148
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
2157
2149
|
#
|
2158
2150
|
# @option params [String] :engine_mode
|
2159
|
-
# The DB engine mode of the DB cluster, either `provisioned
|
2151
|
+
# The DB engine mode of the DB cluster, either `provisioned`,
|
2160
2152
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
2161
2153
|
#
|
2162
2154
|
# The `parallelquery` engine mode isn't required for Aurora MySQL
|
@@ -2244,12 +2236,19 @@ module Aws::RDS
|
|
2244
2236
|
# the Directory Service.
|
2245
2237
|
#
|
2246
2238
|
# @option params [Boolean] :enable_global_write_forwarding
|
2247
|
-
# A value that indicates whether to enable
|
2248
|
-
#
|
2249
|
-
#
|
2250
|
-
#
|
2251
|
-
#
|
2252
|
-
#
|
2239
|
+
# A value that indicates whether to enable this DB cluster to forward
|
2240
|
+
# write operations to the primary cluster of an Aurora global database
|
2241
|
+
# (GlobalCluster). By default, write operations are not allowed on
|
2242
|
+
# Aurora DB clusters that are secondary clusters in an Aurora global
|
2243
|
+
# database.
|
2244
|
+
#
|
2245
|
+
# You can set this value only on Aurora DB clusters that are members of
|
2246
|
+
# an Aurora global database. With this parameter enabled, a secondary
|
2247
|
+
# cluster can forward writes to the current primary cluster and the
|
2248
|
+
# resulting changes are replicated back to this cluster. For the primary
|
2249
|
+
# DB cluster of an Aurora global database, this value is used
|
2250
|
+
# immediately if the primary is demoted by the FailoverGlobalCluster API
|
2251
|
+
# operation, but it does nothing until then.
|
2253
2252
|
#
|
2254
2253
|
# @option params [String] :source_region
|
2255
2254
|
# The source region of the snapshot. This is only needed when the
|
@@ -2793,8 +2792,8 @@ module Aws::RDS
|
|
2793
2792
|
# **PostgreSQL**
|
2794
2793
|
#
|
2795
2794
|
# The name of the database to create when the DB instance is created. If
|
2796
|
-
# this parameter isn't specified,
|
2797
|
-
# instance.
|
2795
|
+
# this parameter isn't specified, a database named `postgres` is
|
2796
|
+
# created in the DB instance.
|
2798
2797
|
#
|
2799
2798
|
# Constraints:
|
2800
2799
|
#
|
@@ -2823,17 +2822,34 @@ module Aws::RDS
|
|
2823
2822
|
#
|
2824
2823
|
# Not applicable. Must be null.
|
2825
2824
|
#
|
2826
|
-
# **Amazon Aurora**
|
2825
|
+
# **Amazon Aurora MySQL**
|
2827
2826
|
#
|
2828
|
-
# The name of the database to create when the primary instance of the
|
2829
|
-
# cluster is created. If this parameter isn't specified
|
2830
|
-
# created in the DB
|
2827
|
+
# The name of the database to create when the primary DB instance of the
|
2828
|
+
# Aurora MySQL DB cluster is created. If this parameter isn't specified
|
2829
|
+
# for an Aurora MySQL DB cluster, no database is created in the DB
|
2830
|
+
# cluster.
|
2831
2831
|
#
|
2832
2832
|
# Constraints:
|
2833
2833
|
#
|
2834
|
-
# *
|
2834
|
+
# * It must contain 1 to 64 alphanumeric characters.
|
2835
2835
|
#
|
2836
|
-
# *
|
2836
|
+
# * It can't be a word reserved by the database engine.
|
2837
|
+
#
|
2838
|
+
# **Amazon Aurora PostgreSQL**
|
2839
|
+
#
|
2840
|
+
# The name of the database to create when the primary DB instance of the
|
2841
|
+
# Aurora PostgreSQL DB cluster is created. If this parameter isn't
|
2842
|
+
# specified for an Aurora PostgreSQL DB cluster, a database named
|
2843
|
+
# `postgres` is created in the DB cluster.
|
2844
|
+
#
|
2845
|
+
# Constraints:
|
2846
|
+
#
|
2847
|
+
# * It must contain 1 to 63 alphanumeric characters.
|
2848
|
+
#
|
2849
|
+
# * It must begin with a letter or an underscore. Subsequent characters
|
2850
|
+
# can be letters, underscores, or digits (0 to 9).
|
2851
|
+
#
|
2852
|
+
# * It can't be a word reserved by the database engine.
|
2837
2853
|
#
|
2838
2854
|
# @option params [required, String] :db_instance_identifier
|
2839
2855
|
# The DB instance identifier. This parameter is stored as a lowercase
|
@@ -3114,8 +3130,8 @@ module Aws::RDS
|
|
3114
3130
|
# specify the identifier of the custom Availability Zone to create the
|
3115
3131
|
# DB instance in.
|
3116
3132
|
#
|
3117
|
-
# For more information about RDS on VMware, see the [
|
3118
|
-
#
|
3133
|
+
# For more information about RDS on VMware, see the [ RDS on VMware User
|
3134
|
+
# Guide.][2]
|
3119
3135
|
#
|
3120
3136
|
# </note>
|
3121
3137
|
#
|
@@ -3299,8 +3315,8 @@ module Aws::RDS
|
|
3299
3315
|
#
|
3300
3316
|
# **PostgreSQL**
|
3301
3317
|
#
|
3302
|
-
# See [
|
3303
|
-
# User Guide.*
|
3318
|
+
# See [Amazon RDS for PostgreSQL versions and extensions][5] in the
|
3319
|
+
# *Amazon RDS User Guide.*
|
3304
3320
|
#
|
3305
3321
|
#
|
3306
3322
|
#
|
@@ -3308,7 +3324,7 @@ module Aws::RDS
|
|
3308
3324
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.VersionSupport
|
3309
3325
|
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MySQL.html#MySQL.Concepts.VersionMgmt
|
3310
3326
|
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Appendix.Oracle.PatchComposition.html
|
3311
|
-
# [5]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_PostgreSQL.html#PostgreSQL.Concepts
|
3327
|
+
# [5]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_PostgreSQL.html#PostgreSQL.Concepts
|
3312
3328
|
#
|
3313
3329
|
# @option params [Boolean] :auto_minor_version_upgrade
|
3314
3330
|
# A value that indicates whether minor engine upgrades are applied
|
@@ -3337,8 +3353,8 @@ module Aws::RDS
|
|
3337
3353
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
3338
3354
|
#
|
3339
3355
|
# @option params [String] :option_group_name
|
3340
|
-
#
|
3341
|
-
# option group.
|
3356
|
+
# A value that indicates that the DB instance should be associated with
|
3357
|
+
# the specified option group.
|
3342
3358
|
#
|
3343
3359
|
# Permanent options, such as the TDE option for Oracle Advanced Security
|
3344
3360
|
# TDE, can't be removed from an option group. Also, that option group
|
@@ -3580,7 +3596,8 @@ module Aws::RDS
|
|
3580
3596
|
#
|
3581
3597
|
# **Oracle**
|
3582
3598
|
#
|
3583
|
-
# Possible values are `alert`, `audit`, `listener`,
|
3599
|
+
# Possible values are `alert`, `audit`, `listener`, `trace`, and
|
3600
|
+
# `oemagent`.
|
3584
3601
|
#
|
3585
3602
|
# **PostgreSQL**
|
3586
3603
|
#
|
@@ -3615,6 +3632,34 @@ module Aws::RDS
|
|
3615
3632
|
# The upper limit to which Amazon RDS can automatically scale the
|
3616
3633
|
# storage of the DB instance.
|
3617
3634
|
#
|
3635
|
+
# For more information about this setting, including limitations that
|
3636
|
+
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
3637
|
+
# storage autoscaling][1] in the *Amazon RDS User Guide*.
|
3638
|
+
#
|
3639
|
+
#
|
3640
|
+
#
|
3641
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
3642
|
+
#
|
3643
|
+
# @option params [Boolean] :enable_customer_owned_ip
|
3644
|
+
# A value that indicates whether to enable a customer-owned IP address
|
3645
|
+
# (CoIP) for an RDS on Outposts DB instance.
|
3646
|
+
#
|
3647
|
+
# A *CoIP* provides local or external connectivity to resources in your
|
3648
|
+
# Outpost subnets through your on-premises network. For some use cases,
|
3649
|
+
# a CoIP can provide lower latency for connections to the DB instance
|
3650
|
+
# from outside of its virtual private cloud (VPC) on your local network.
|
3651
|
+
#
|
3652
|
+
# For more information about RDS on Outposts, see [Working with Amazon
|
3653
|
+
# RDS on AWS Outposts][1] in the *Amazon RDS User Guide*.
|
3654
|
+
#
|
3655
|
+
# For more information about CoIPs, see [Customer-owned IP addresses][2]
|
3656
|
+
# in the *AWS Outposts User Guide*.
|
3657
|
+
#
|
3658
|
+
#
|
3659
|
+
#
|
3660
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
3661
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-networking-components.html#ip-addressing
|
3662
|
+
#
|
3618
3663
|
# @return [Types::CreateDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3619
3664
|
#
|
3620
3665
|
# * {Types::CreateDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
@@ -3699,6 +3744,7 @@ module Aws::RDS
|
|
3699
3744
|
# ],
|
3700
3745
|
# deletion_protection: false,
|
3701
3746
|
# max_allocated_storage: 1,
|
3747
|
+
# enable_customer_owned_ip: false,
|
3702
3748
|
# })
|
3703
3749
|
#
|
3704
3750
|
# @example Response structure
|
@@ -3825,6 +3871,7 @@ module Aws::RDS
|
|
3825
3871
|
# resp.db_instance.tag_list[0].value #=> String
|
3826
3872
|
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
3827
3873
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
3874
|
+
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
3828
3875
|
#
|
3829
3876
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstance AWS API Documentation
|
3830
3877
|
#
|
@@ -4266,6 +4313,14 @@ module Aws::RDS
|
|
4266
4313
|
# The upper limit to which Amazon RDS can automatically scale the
|
4267
4314
|
# storage of the DB instance.
|
4268
4315
|
#
|
4316
|
+
# For more information about this setting, including limitations that
|
4317
|
+
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
4318
|
+
# storage autoscaling][1] in the *Amazon RDS User Guide*.
|
4319
|
+
#
|
4320
|
+
#
|
4321
|
+
#
|
4322
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
4323
|
+
#
|
4269
4324
|
# @option params [String] :source_region
|
4270
4325
|
# The source region of the snapshot. This is only needed when the
|
4271
4326
|
# shapshot is encrypted and in a different region.
|
@@ -4473,6 +4528,7 @@ module Aws::RDS
|
|
4473
4528
|
# resp.db_instance.tag_list[0].value #=> String
|
4474
4529
|
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
4475
4530
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
4531
|
+
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
4476
4532
|
#
|
4477
4533
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceReadReplica AWS API Documentation
|
4478
4534
|
#
|
@@ -5241,6 +5297,9 @@ module Aws::RDS
|
|
5241
5297
|
# resp.global_cluster.global_cluster_members[0].readers[0] #=> String
|
5242
5298
|
# resp.global_cluster.global_cluster_members[0].is_writer #=> Boolean
|
5243
5299
|
# resp.global_cluster.global_cluster_members[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
5300
|
+
# resp.global_cluster.failover_state.status #=> String, one of "pending", "failing-over", "cancelling"
|
5301
|
+
# resp.global_cluster.failover_state.from_db_cluster_arn #=> String
|
5302
|
+
# resp.global_cluster.failover_state.to_db_cluster_arn #=> String
|
5244
5303
|
#
|
5245
5304
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateGlobalCluster AWS API Documentation
|
5246
5305
|
#
|
@@ -5270,6 +5329,30 @@ module Aws::RDS
|
|
5270
5329
|
# Specifies the name of the engine that this option group should be
|
5271
5330
|
# associated with.
|
5272
5331
|
#
|
5332
|
+
# Valid Values:
|
5333
|
+
#
|
5334
|
+
# * `mariadb`
|
5335
|
+
#
|
5336
|
+
# * `mysql`
|
5337
|
+
#
|
5338
|
+
# * `oracle-ee`
|
5339
|
+
#
|
5340
|
+
# * `oracle-se2`
|
5341
|
+
#
|
5342
|
+
# * `oracle-se1`
|
5343
|
+
#
|
5344
|
+
# * `oracle-se`
|
5345
|
+
#
|
5346
|
+
# * `postgres`
|
5347
|
+
#
|
5348
|
+
# * `sqlserver-ee`
|
5349
|
+
#
|
5350
|
+
# * `sqlserver-se`
|
5351
|
+
#
|
5352
|
+
# * `sqlserver-ex`
|
5353
|
+
#
|
5354
|
+
# * `sqlserver-web`
|
5355
|
+
#
|
5273
5356
|
# @option params [required, String] :major_engine_version
|
5274
5357
|
# Specifies the major version of the engine that this option group
|
5275
5358
|
# should be associated with.
|
@@ -5364,8 +5447,8 @@ module Aws::RDS
|
|
5364
5447
|
# A custom AZ is an on-premises AZ that is integrated with a VMware
|
5365
5448
|
# vSphere cluster.
|
5366
5449
|
#
|
5367
|
-
# For more information about RDS on VMware, see the [
|
5368
|
-
#
|
5450
|
+
# For more information about RDS on VMware, see the [ RDS on VMware User
|
5451
|
+
# Guide.][1]
|
5369
5452
|
#
|
5370
5453
|
#
|
5371
5454
|
#
|
@@ -6021,6 +6104,7 @@ module Aws::RDS
|
|
6021
6104
|
# resp.db_instance.tag_list[0].value #=> String
|
6022
6105
|
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
6023
6106
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
6107
|
+
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
6024
6108
|
#
|
6025
6109
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstance AWS API Documentation
|
6026
6110
|
#
|
@@ -6455,6 +6539,9 @@ module Aws::RDS
|
|
6455
6539
|
# resp.global_cluster.global_cluster_members[0].readers[0] #=> String
|
6456
6540
|
# resp.global_cluster.global_cluster_members[0].is_writer #=> Boolean
|
6457
6541
|
# resp.global_cluster.global_cluster_members[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
6542
|
+
# resp.global_cluster.failover_state.status #=> String, one of "pending", "failing-over", "cancelling"
|
6543
|
+
# resp.global_cluster.failover_state.from_db_cluster_arn #=> String
|
6544
|
+
# resp.global_cluster.failover_state.to_db_cluster_arn #=> String
|
6458
6545
|
#
|
6459
6546
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteGlobalCluster AWS API Documentation
|
6460
6547
|
#
|
@@ -6713,8 +6800,8 @@ module Aws::RDS
|
|
6713
6800
|
# A custom AZ is an on-premises AZ that is integrated with a VMware
|
6714
6801
|
# vSphere cluster.
|
6715
6802
|
#
|
6716
|
-
# For more information about RDS on VMware, see the [
|
6717
|
-
#
|
6803
|
+
# For more information about RDS on VMware, see the [ RDS on VMware User
|
6804
|
+
# Guide.][1]
|
6718
6805
|
#
|
6719
6806
|
#
|
6720
6807
|
#
|
@@ -7672,6 +7759,36 @@ module Aws::RDS
|
|
7672
7759
|
# @option params [String] :engine
|
7673
7760
|
# The database engine to return.
|
7674
7761
|
#
|
7762
|
+
# Valid Values:
|
7763
|
+
#
|
7764
|
+
# * `aurora` (for MySQL 5.6-compatible Aurora)
|
7765
|
+
#
|
7766
|
+
# * `aurora-mysql` (for MySQL 5.7-compatible Aurora)
|
7767
|
+
#
|
7768
|
+
# * `aurora-postgresql`
|
7769
|
+
#
|
7770
|
+
# * `mariadb`
|
7771
|
+
#
|
7772
|
+
# * `mysql`
|
7773
|
+
#
|
7774
|
+
# * `oracle-ee`
|
7775
|
+
#
|
7776
|
+
# * `oracle-se2`
|
7777
|
+
#
|
7778
|
+
# * `oracle-se1`
|
7779
|
+
#
|
7780
|
+
# * `oracle-se`
|
7781
|
+
#
|
7782
|
+
# * `postgres`
|
7783
|
+
#
|
7784
|
+
# * `sqlserver-ee`
|
7785
|
+
#
|
7786
|
+
# * `sqlserver-se`
|
7787
|
+
#
|
7788
|
+
# * `sqlserver-ex`
|
7789
|
+
#
|
7790
|
+
# * `sqlserver-web`
|
7791
|
+
#
|
7675
7792
|
# @option params [String] :engine_version
|
7676
7793
|
# The database engine version to return.
|
7677
7794
|
#
|
@@ -7848,20 +7965,19 @@ module Aws::RDS
|
|
7848
7965
|
#
|
7849
7966
|
# * `active` - automated backups for current instances
|
7850
7967
|
#
|
7851
|
-
# * `retained` - automated backups for deleted instances
|
7968
|
+
# * `retained` - automated backups for deleted instances and after
|
7969
|
+
# backup replication is stopped
|
7852
7970
|
#
|
7853
7971
|
# * `creating` - automated backups that are waiting for the first
|
7854
7972
|
# automated snapshot to be available
|
7855
7973
|
#
|
7856
7974
|
# * `db-instance-id` - Accepts DB instance identifiers and Amazon
|
7857
|
-
# Resource Names (ARNs)
|
7858
|
-
#
|
7859
|
-
# by these ARNs.
|
7975
|
+
# Resource Names (ARNs). The results list includes only information
|
7976
|
+
# about the DB instance automated backups identified by these ARNs.
|
7860
7977
|
#
|
7861
|
-
# * `dbi-resource-id` - Accepts DB
|
7862
|
-
#
|
7863
|
-
#
|
7864
|
-
# by these ARNs.
|
7978
|
+
# * `dbi-resource-id` - Accepts DB resource identifiers and Amazon
|
7979
|
+
# Resource Names (ARNs). The results list includes only information
|
7980
|
+
# about the DB instance resources identified by these ARNs.
|
7865
7981
|
#
|
7866
7982
|
# Returns all resources by default. The status for each resource is
|
7867
7983
|
# specified in the response.
|
@@ -8167,6 +8283,7 @@ module Aws::RDS
|
|
8167
8283
|
# resp.db_instances[0].tag_list[0].value #=> String
|
8168
8284
|
# resp.db_instances[0].db_instance_automated_backups_replications #=> Array
|
8169
8285
|
# resp.db_instances[0].db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
8286
|
+
# resp.db_instances[0].customer_owned_ip_enabled #=> Boolean
|
8170
8287
|
#
|
8171
8288
|
#
|
8172
8289
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -9822,6 +9939,9 @@ module Aws::RDS
|
|
9822
9939
|
# resp.global_clusters[0].global_cluster_members[0].readers[0] #=> String
|
9823
9940
|
# resp.global_clusters[0].global_cluster_members[0].is_writer #=> Boolean
|
9824
9941
|
# resp.global_clusters[0].global_cluster_members[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
9942
|
+
# resp.global_clusters[0].failover_state.status #=> String, one of "pending", "failing-over", "cancelling"
|
9943
|
+
# resp.global_clusters[0].failover_state.from_db_cluster_arn #=> String
|
9944
|
+
# resp.global_clusters[0].failover_state.to_db_cluster_arn #=> String
|
9825
9945
|
#
|
9826
9946
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeGlobalClusters AWS API Documentation
|
9827
9947
|
#
|
@@ -9914,6 +10034,30 @@ module Aws::RDS
|
|
9914
10034
|
# A required parameter. Options available for the given engine name are
|
9915
10035
|
# described.
|
9916
10036
|
#
|
10037
|
+
# Valid Values:
|
10038
|
+
#
|
10039
|
+
# * `mariadb`
|
10040
|
+
#
|
10041
|
+
# * `mysql`
|
10042
|
+
#
|
10043
|
+
# * `oracle-ee`
|
10044
|
+
#
|
10045
|
+
# * `oracle-se2`
|
10046
|
+
#
|
10047
|
+
# * `oracle-se1`
|
10048
|
+
#
|
10049
|
+
# * `oracle-se`
|
10050
|
+
#
|
10051
|
+
# * `postgres`
|
10052
|
+
#
|
10053
|
+
# * `sqlserver-ee`
|
10054
|
+
#
|
10055
|
+
# * `sqlserver-se`
|
10056
|
+
#
|
10057
|
+
# * `sqlserver-ex`
|
10058
|
+
#
|
10059
|
+
# * `sqlserver-web`
|
10060
|
+
#
|
9917
10061
|
# @option params [String] :major_engine_version
|
9918
10062
|
# If specified, filters the results to include only options for the
|
9919
10063
|
# specified major engine version.
|
@@ -10045,6 +10189,30 @@ module Aws::RDS
|
|
10045
10189
|
# Filters the list of option groups to only include groups associated
|
10046
10190
|
# with a specific database engine.
|
10047
10191
|
#
|
10192
|
+
# Valid Values:
|
10193
|
+
#
|
10194
|
+
# * `mariadb`
|
10195
|
+
#
|
10196
|
+
# * `mysql`
|
10197
|
+
#
|
10198
|
+
# * `oracle-ee`
|
10199
|
+
#
|
10200
|
+
# * `oracle-se2`
|
10201
|
+
#
|
10202
|
+
# * `oracle-se1`
|
10203
|
+
#
|
10204
|
+
# * `oracle-se`
|
10205
|
+
#
|
10206
|
+
# * `postgres`
|
10207
|
+
#
|
10208
|
+
# * `sqlserver-ee`
|
10209
|
+
#
|
10210
|
+
# * `sqlserver-se`
|
10211
|
+
#
|
10212
|
+
# * `sqlserver-ex`
|
10213
|
+
#
|
10214
|
+
# * `sqlserver-web`
|
10215
|
+
#
|
10048
10216
|
# @option params [String] :major_engine_version
|
10049
10217
|
# Filters the list of option groups to only include groups associated
|
10050
10218
|
# with a specific database engine version. If specified, then EngineName
|
@@ -10137,6 +10305,36 @@ module Aws::RDS
|
|
10137
10305
|
# @option params [required, String] :engine
|
10138
10306
|
# The name of the engine to retrieve DB instance options for.
|
10139
10307
|
#
|
10308
|
+
# Valid Values:
|
10309
|
+
#
|
10310
|
+
# * `aurora` (for MySQL 5.6-compatible Aurora)
|
10311
|
+
#
|
10312
|
+
# * `aurora-mysql` (for MySQL 5.7-compatible Aurora)
|
10313
|
+
#
|
10314
|
+
# * `aurora-postgresql`
|
10315
|
+
#
|
10316
|
+
# * `mariadb`
|
10317
|
+
#
|
10318
|
+
# * `mysql`
|
10319
|
+
#
|
10320
|
+
# * `oracle-ee`
|
10321
|
+
#
|
10322
|
+
# * `oracle-se2`
|
10323
|
+
#
|
10324
|
+
# * `oracle-se1`
|
10325
|
+
#
|
10326
|
+
# * `oracle-se`
|
10327
|
+
#
|
10328
|
+
# * `postgres`
|
10329
|
+
#
|
10330
|
+
# * `sqlserver-ee`
|
10331
|
+
#
|
10332
|
+
# * `sqlserver-se`
|
10333
|
+
#
|
10334
|
+
# * `sqlserver-ex`
|
10335
|
+
#
|
10336
|
+
# * `sqlserver-web`
|
10337
|
+
#
|
10140
10338
|
# @option params [String] :engine_version
|
10141
10339
|
# The engine version filter value. Specify this parameter to show only
|
10142
10340
|
# the available offerings matching the specified engine version.
|
@@ -10631,8 +10829,8 @@ module Aws::RDS
|
|
10631
10829
|
end
|
10632
10830
|
|
10633
10831
|
# Returns a list of the source AWS Regions where the current AWS Region
|
10634
|
-
# can create a read replica
|
10635
|
-
# supports pagination.
|
10832
|
+
# can create a read replica, copy a DB snapshot from, or replicate
|
10833
|
+
# automated backups from. This API action supports pagination.
|
10636
10834
|
#
|
10637
10835
|
# @option params [String] :region_name
|
10638
10836
|
# The source AWS Region name. For example, `us-east-1`.
|
@@ -11072,6 +11270,93 @@ module Aws::RDS
|
|
11072
11270
|
req.send_request(options)
|
11073
11271
|
end
|
11074
11272
|
|
11273
|
+
# Initiates the failover process for an Aurora global database
|
11274
|
+
# (GlobalCluster).
|
11275
|
+
#
|
11276
|
+
# A failover for an Aurora global database promotes one of secondary
|
11277
|
+
# read-only DB clusters to be the primary DB cluster and demotes the
|
11278
|
+
# primary DB cluster to being a secondary (read-only) DB cluster. In
|
11279
|
+
# other words, the role of the current primary DB cluster and the
|
11280
|
+
# selected (target) DB cluster are switched. The selected secondary DB
|
11281
|
+
# cluster assumes full read/write capabilities for the Aurora global
|
11282
|
+
# database.
|
11283
|
+
#
|
11284
|
+
# For more information about failing over an Amazon Aurora global
|
11285
|
+
# database, see [Managed planned failover for Amazon Aurora global
|
11286
|
+
# databases][1] in the *Amazon Aurora User Guide.*
|
11287
|
+
#
|
11288
|
+
# <note markdown="1"> This action applies to GlobalCluster (Aurora global databases) only.
|
11289
|
+
# Use this action only on healthy Aurora global databases with running
|
11290
|
+
# Aurora DB clusters and no Region-wide outages, to test disaster
|
11291
|
+
# recovery scenarios or to reconfigure your Aurora global database
|
11292
|
+
# topology.
|
11293
|
+
#
|
11294
|
+
# </note>
|
11295
|
+
#
|
11296
|
+
#
|
11297
|
+
#
|
11298
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-global-database-disaster-recovery.managed-failover
|
11299
|
+
#
|
11300
|
+
# @option params [required, String] :global_cluster_identifier
|
11301
|
+
# Identifier of the Aurora global database (GlobalCluster) that should
|
11302
|
+
# be failed over. The identifier is the unique key assigned by the user
|
11303
|
+
# when the Aurora global database was created. In other words, it's the
|
11304
|
+
# name of the Aurora global database that you want to fail over.
|
11305
|
+
#
|
11306
|
+
# Constraints:
|
11307
|
+
#
|
11308
|
+
# * Must match the identifier of an existing GlobalCluster (Aurora
|
11309
|
+
# global database).
|
11310
|
+
#
|
11311
|
+
# ^
|
11312
|
+
#
|
11313
|
+
# @option params [required, String] :target_db_cluster_identifier
|
11314
|
+
# Identifier of the secondary Aurora DB cluster that you want to promote
|
11315
|
+
# to primary for the Aurora global database (GlobalCluster.) Use the
|
11316
|
+
# Amazon Resource Name (ARN) for the identifier so that Aurora can
|
11317
|
+
# locate the cluster in its AWS Region.
|
11318
|
+
#
|
11319
|
+
# @return [Types::FailoverGlobalClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
11320
|
+
#
|
11321
|
+
# * {Types::FailoverGlobalClusterResult#global_cluster #global_cluster} => Types::GlobalCluster
|
11322
|
+
#
|
11323
|
+
# @example Request syntax with placeholder values
|
11324
|
+
#
|
11325
|
+
# resp = client.failover_global_cluster({
|
11326
|
+
# global_cluster_identifier: "GlobalClusterIdentifier", # required
|
11327
|
+
# target_db_cluster_identifier: "DBClusterIdentifier", # required
|
11328
|
+
# })
|
11329
|
+
#
|
11330
|
+
# @example Response structure
|
11331
|
+
#
|
11332
|
+
# resp.global_cluster.global_cluster_identifier #=> String
|
11333
|
+
# resp.global_cluster.global_cluster_resource_id #=> String
|
11334
|
+
# resp.global_cluster.global_cluster_arn #=> String
|
11335
|
+
# resp.global_cluster.status #=> String
|
11336
|
+
# resp.global_cluster.engine #=> String
|
11337
|
+
# resp.global_cluster.engine_version #=> String
|
11338
|
+
# resp.global_cluster.database_name #=> String
|
11339
|
+
# resp.global_cluster.storage_encrypted #=> Boolean
|
11340
|
+
# resp.global_cluster.deletion_protection #=> Boolean
|
11341
|
+
# resp.global_cluster.global_cluster_members #=> Array
|
11342
|
+
# resp.global_cluster.global_cluster_members[0].db_cluster_arn #=> String
|
11343
|
+
# resp.global_cluster.global_cluster_members[0].readers #=> Array
|
11344
|
+
# resp.global_cluster.global_cluster_members[0].readers[0] #=> String
|
11345
|
+
# resp.global_cluster.global_cluster_members[0].is_writer #=> Boolean
|
11346
|
+
# resp.global_cluster.global_cluster_members[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
11347
|
+
# resp.global_cluster.failover_state.status #=> String, one of "pending", "failing-over", "cancelling"
|
11348
|
+
# resp.global_cluster.failover_state.from_db_cluster_arn #=> String
|
11349
|
+
# resp.global_cluster.failover_state.to_db_cluster_arn #=> String
|
11350
|
+
#
|
11351
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverGlobalCluster AWS API Documentation
|
11352
|
+
#
|
11353
|
+
# @overload failover_global_cluster(params = {})
|
11354
|
+
# @param [Hash] params ({})
|
11355
|
+
def failover_global_cluster(params = {}, options = {})
|
11356
|
+
req = build_request(:failover_global_cluster, params)
|
11357
|
+
req.send_request(options)
|
11358
|
+
end
|
11359
|
+
|
11075
11360
|
# Imports the installation media for a DB engine that requires an
|
11076
11361
|
# on-premises customer provided license, such as SQL Server.
|
11077
11362
|
#
|
@@ -11692,12 +11977,19 @@ module Aws::RDS
|
|
11692
11977
|
# snapshots of the DB cluster. The default is not to copy them.
|
11693
11978
|
#
|
11694
11979
|
# @option params [Boolean] :enable_global_write_forwarding
|
11695
|
-
# A value that indicates whether to enable
|
11696
|
-
#
|
11697
|
-
#
|
11698
|
-
#
|
11699
|
-
#
|
11700
|
-
#
|
11980
|
+
# A value that indicates whether to enable this DB cluster to forward
|
11981
|
+
# write operations to the primary cluster of an Aurora global database
|
11982
|
+
# (GlobalCluster). By default, write operations are not allowed on
|
11983
|
+
# Aurora DB clusters that are secondary clusters in an Aurora global
|
11984
|
+
# database.
|
11985
|
+
#
|
11986
|
+
# You can set this value only on Aurora DB clusters that are members of
|
11987
|
+
# an Aurora global database. With this parameter enabled, a secondary
|
11988
|
+
# cluster can forward writes to the current primary cluster and the
|
11989
|
+
# resulting changes are replicated back to this cluster. For the primary
|
11990
|
+
# DB cluster of an Aurora global database, this value is used
|
11991
|
+
# immediately if the primary is demoted by the FailoverGlobalCluster API
|
11992
|
+
# operation, but it does nothing until then.
|
11701
11993
|
#
|
11702
11994
|
# @return [Types::ModifyDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
11703
11995
|
#
|
@@ -12205,8 +12497,8 @@ module Aws::RDS
|
|
12205
12497
|
# The new DB subnet group for the DB instance. You can use this
|
12206
12498
|
# parameter to move your DB instance to a different VPC. If your DB
|
12207
12499
|
# instance isn't in a VPC, you can also use this parameter to move your
|
12208
|
-
# DB instance into a VPC. For more information, see [
|
12209
|
-
#
|
12500
|
+
# DB instance into a VPC. For more information, see [Working with a DB
|
12501
|
+
# instance in a VPC][1] in the *Amazon RDS User Guide.*
|
12210
12502
|
#
|
12211
12503
|
# Changing the subnet group causes an outage during the change. The
|
12212
12504
|
# change is applied during the next maintenance window, unless you
|
@@ -12219,7 +12511,7 @@ module Aws::RDS
|
|
12219
12511
|
#
|
12220
12512
|
#
|
12221
12513
|
#
|
12222
|
-
# [1]:
|
12514
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html#USER_VPC.Non-VPC2VPC
|
12223
12515
|
#
|
12224
12516
|
# @option params [Array<String>] :db_security_groups
|
12225
12517
|
# A list of DB security groups to authorize on this DB instance.
|
@@ -12414,8 +12706,10 @@ module Aws::RDS
|
|
12414
12706
|
# family for the new engine version must be specified. The new DB
|
12415
12707
|
# parameter group can be the default for that DB parameter group family.
|
12416
12708
|
#
|
12417
|
-
#
|
12418
|
-
#
|
12709
|
+
# If you specify only a major version, Amazon RDS will update the DB
|
12710
|
+
# instance to the default minor version if the current minor version is
|
12711
|
+
# lower. For information about valid engine versions, see
|
12712
|
+
# `CreateDBInstance`, or call `DescribeDBEngineVersions`.
|
12419
12713
|
#
|
12420
12714
|
# @option params [Boolean] :allow_major_version_upgrade
|
12421
12715
|
# A value that indicates whether major version upgrades are allowed.
|
@@ -12475,14 +12769,14 @@ module Aws::RDS
|
|
12475
12769
|
# Default: Uses existing setting
|
12476
12770
|
#
|
12477
12771
|
# @option params [String] :option_group_name
|
12478
|
-
#
|
12479
|
-
# option group. Changing this parameter doesn't result in an
|
12480
|
-
# except in the following case and the change is applied during
|
12481
|
-
# maintenance window unless the `ApplyImmediately` parameter is
|
12482
|
-
# for this request. If the parameter change results in an option
|
12483
|
-
# that enables OEM, this change can cause a brief (sub-second)
|
12484
|
-
# during which new connections are rejected but existing
|
12485
|
-
# not interrupted.
|
12772
|
+
# A value that indicates the DB instance should be associated with the
|
12773
|
+
# specified option group. Changing this parameter doesn't result in an
|
12774
|
+
# outage except in the following case and the change is applied during
|
12775
|
+
# the next maintenance window unless the `ApplyImmediately` parameter is
|
12776
|
+
# enabled for this request. If the parameter change results in an option
|
12777
|
+
# group that enables OEM, this change can cause a brief (sub-second)
|
12778
|
+
# period during which new connections are rejected but existing
|
12779
|
+
# connections are not interrupted.
|
12486
12780
|
#
|
12487
12781
|
# Permanent options, such as the TDE option for Oracle Advanced Security
|
12488
12782
|
# TDE, can't be removed from an option group, and that option group
|
@@ -12751,6 +13045,14 @@ module Aws::RDS
|
|
12751
13045
|
# The upper limit to which Amazon RDS can automatically scale the
|
12752
13046
|
# storage of the DB instance.
|
12753
13047
|
#
|
13048
|
+
# For more information about this setting, including limitations that
|
13049
|
+
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
13050
|
+
# storage autoscaling][1] in the *Amazon RDS User Guide*.
|
13051
|
+
#
|
13052
|
+
#
|
13053
|
+
#
|
13054
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
13055
|
+
#
|
12754
13056
|
# @option params [Boolean] :certificate_rotation_restart
|
12755
13057
|
# A value that indicates whether the DB instance is restarted when you
|
12756
13058
|
# rotate your SSL/TLS certificate.
|
@@ -12799,6 +13101,26 @@ module Aws::RDS
|
|
12799
13101
|
#
|
12800
13102
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
12801
13103
|
#
|
13104
|
+
# @option params [Boolean] :enable_customer_owned_ip
|
13105
|
+
# A value that indicates whether to enable a customer-owned IP address
|
13106
|
+
# (CoIP) for an RDS on Outposts DB instance.
|
13107
|
+
#
|
13108
|
+
# A *CoIP* provides local or external connectivity to resources in your
|
13109
|
+
# Outpost subnets through your on-premises network. For some use cases,
|
13110
|
+
# a CoIP can provide lower latency for connections to the DB instance
|
13111
|
+
# from outside of its virtual private cloud (VPC) on your local network.
|
13112
|
+
#
|
13113
|
+
# For more information about RDS on Outposts, see [Working with Amazon
|
13114
|
+
# RDS on AWS Outposts][1] in the *Amazon RDS User Guide*.
|
13115
|
+
#
|
13116
|
+
# For more information about CoIPs, see [Customer-owned IP addresses][2]
|
13117
|
+
# in the *AWS Outposts User Guide*.
|
13118
|
+
#
|
13119
|
+
#
|
13120
|
+
#
|
13121
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
13122
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-networking-components.html#ip-addressing
|
13123
|
+
#
|
12802
13124
|
# @return [Types::ModifyDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
12803
13125
|
#
|
12804
13126
|
# * {Types::ModifyDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
@@ -12879,6 +13201,7 @@ module Aws::RDS
|
|
12879
13201
|
# max_allocated_storage: 1,
|
12880
13202
|
# certificate_rotation_restart: false,
|
12881
13203
|
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
13204
|
+
# enable_customer_owned_ip: false,
|
12882
13205
|
# })
|
12883
13206
|
#
|
12884
13207
|
# @example Response structure
|
@@ -13005,6 +13328,7 @@ module Aws::RDS
|
|
13005
13328
|
# resp.db_instance.tag_list[0].value #=> String
|
13006
13329
|
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
13007
13330
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
13331
|
+
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
13008
13332
|
#
|
13009
13333
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstance AWS API Documentation
|
13010
13334
|
#
|
@@ -13329,11 +13653,11 @@ module Aws::RDS
|
|
13329
13653
|
# You can specify this parameter when you upgrade an Oracle DB snapshot.
|
13330
13654
|
# The same option group considerations apply when upgrading a DB
|
13331
13655
|
# snapshot as when upgrading a DB instance. For more information, see
|
13332
|
-
# [Option
|
13656
|
+
# [Option group considerations][1] in the *Amazon RDS User Guide.*
|
13333
13657
|
#
|
13334
13658
|
#
|
13335
13659
|
#
|
13336
|
-
# [1]:
|
13660
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Oracle.html#USER_UpgradeDBInstance.Oracle.OGPG.OG
|
13337
13661
|
#
|
13338
13662
|
# @return [Types::ModifyDBSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13339
13663
|
#
|
@@ -13720,6 +14044,42 @@ module Aws::RDS
|
|
13720
14044
|
# enabled. The global database cluster can't be deleted when deletion
|
13721
14045
|
# protection is enabled.
|
13722
14046
|
#
|
14047
|
+
# @option params [String] :engine_version
|
14048
|
+
# The version number of the database engine to which you want to
|
14049
|
+
# upgrade. Changing this parameter results in an outage. The change is
|
14050
|
+
# applied during the next maintenance window unless `ApplyImmediately`
|
14051
|
+
# is enabled.
|
14052
|
+
#
|
14053
|
+
# To list all of the available engine versions for `aurora` (for MySQL
|
14054
|
+
# 5.6-compatible Aurora), use the following command:
|
14055
|
+
#
|
14056
|
+
# `` aws rds describe-db-engine-versions --engine aurora --query
|
14057
|
+
# '*[]|[?SupportsGlobalDatabases == `true`].[EngineVersion]' ``
|
14058
|
+
#
|
14059
|
+
# To list all of the available engine versions for `aurora-mysql` (for
|
14060
|
+
# MySQL 5.7-compatible Aurora), use the following command:
|
14061
|
+
#
|
14062
|
+
# `` aws rds describe-db-engine-versions --engine aurora-mysql --query
|
14063
|
+
# '*[]|[?SupportsGlobalDatabases == `true`].[EngineVersion]' ``
|
14064
|
+
#
|
14065
|
+
# To list all of the available engine versions for `aurora-postgresql`,
|
14066
|
+
# use the following command:
|
14067
|
+
#
|
14068
|
+
# `` aws rds describe-db-engine-versions --engine aurora-postgresql
|
14069
|
+
# --query '*[]|[?SupportsGlobalDatabases == `true`].[EngineVersion]' ``
|
14070
|
+
#
|
14071
|
+
# @option params [Boolean] :allow_major_version_upgrade
|
14072
|
+
# A value that indicates whether major version upgrades are allowed.
|
14073
|
+
#
|
14074
|
+
# Constraints: You must allow major version upgrades when specifying a
|
14075
|
+
# value for the `EngineVersion` parameter that is a different major
|
14076
|
+
# version than the DB cluster's current version.
|
14077
|
+
#
|
14078
|
+
# If you upgrade the major version of a global database, the cluster and
|
14079
|
+
# DB instance parameter groups are set to the default parameter groups
|
14080
|
+
# for the new version. Apply any custom parameter groups after
|
14081
|
+
# completing the upgrade.
|
14082
|
+
#
|
13723
14083
|
# @return [Types::ModifyGlobalClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13724
14084
|
#
|
13725
14085
|
# * {Types::ModifyGlobalClusterResult#global_cluster #global_cluster} => Types::GlobalCluster
|
@@ -13730,6 +14090,8 @@ module Aws::RDS
|
|
13730
14090
|
# global_cluster_identifier: "String",
|
13731
14091
|
# new_global_cluster_identifier: "String",
|
13732
14092
|
# deletion_protection: false,
|
14093
|
+
# engine_version: "String",
|
14094
|
+
# allow_major_version_upgrade: false,
|
13733
14095
|
# })
|
13734
14096
|
#
|
13735
14097
|
# @example Response structure
|
@@ -13749,6 +14111,9 @@ module Aws::RDS
|
|
13749
14111
|
# resp.global_cluster.global_cluster_members[0].readers[0] #=> String
|
13750
14112
|
# resp.global_cluster.global_cluster_members[0].is_writer #=> Boolean
|
13751
14113
|
# resp.global_cluster.global_cluster_members[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
14114
|
+
# resp.global_cluster.failover_state.status #=> String, one of "pending", "failing-over", "cancelling"
|
14115
|
+
# resp.global_cluster.failover_state.from_db_cluster_arn #=> String
|
14116
|
+
# resp.global_cluster.failover_state.to_db_cluster_arn #=> String
|
13752
14117
|
#
|
13753
14118
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyGlobalCluster AWS API Documentation
|
13754
14119
|
#
|
@@ -14099,6 +14464,7 @@ module Aws::RDS
|
|
14099
14464
|
# resp.db_instance.tag_list[0].value #=> String
|
14100
14465
|
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
14101
14466
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
14467
|
+
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
14102
14468
|
#
|
14103
14469
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplica AWS API Documentation
|
14104
14470
|
#
|
@@ -14510,6 +14876,7 @@ module Aws::RDS
|
|
14510
14876
|
# resp.db_instance.tag_list[0].value #=> String
|
14511
14877
|
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
14512
14878
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
14879
|
+
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
14513
14880
|
#
|
14514
14881
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBInstance AWS API Documentation
|
14515
14882
|
#
|
@@ -14616,6 +14983,9 @@ module Aws::RDS
|
|
14616
14983
|
# resp.global_cluster.global_cluster_members[0].readers[0] #=> String
|
14617
14984
|
# resp.global_cluster.global_cluster_members[0].is_writer #=> Boolean
|
14618
14985
|
# resp.global_cluster.global_cluster_members[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
14986
|
+
# resp.global_cluster.failover_state.status #=> String, one of "pending", "failing-over", "cancelling"
|
14987
|
+
# resp.global_cluster.failover_state.from_db_cluster_arn #=> String
|
14988
|
+
# resp.global_cluster.failover_state.to_db_cluster_arn #=> String
|
14619
14989
|
#
|
14620
14990
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RemoveFromGlobalCluster AWS API Documentation
|
14621
14991
|
#
|
@@ -16559,6 +16929,26 @@ module Aws::RDS
|
|
16559
16929
|
#
|
16560
16930
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
|
16561
16931
|
#
|
16932
|
+
# @option params [Boolean] :enable_customer_owned_ip
|
16933
|
+
# A value that indicates whether to enable a customer-owned IP address
|
16934
|
+
# (CoIP) for an RDS on Outposts DB instance.
|
16935
|
+
#
|
16936
|
+
# A *CoIP* provides local or external connectivity to resources in your
|
16937
|
+
# Outpost subnets through your on-premises network. For some use cases,
|
16938
|
+
# a CoIP can provide lower latency for connections to the DB instance
|
16939
|
+
# from outside of its virtual private cloud (VPC) on your local network.
|
16940
|
+
#
|
16941
|
+
# For more information about RDS on Outposts, see [Working with Amazon
|
16942
|
+
# RDS on AWS Outposts][1] in the *Amazon RDS User Guide*.
|
16943
|
+
#
|
16944
|
+
# For more information about CoIPs, see [Customer-owned IP addresses][2]
|
16945
|
+
# in the *AWS Outposts User Guide*.
|
16946
|
+
#
|
16947
|
+
#
|
16948
|
+
#
|
16949
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
16950
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-networking-components.html#ip-addressing
|
16951
|
+
#
|
16562
16952
|
# @return [Types::RestoreDBInstanceFromDBSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
16563
16953
|
#
|
16564
16954
|
# * {Types::RestoreDBInstanceFromDBSnapshotResult#db_instance #db_instance} => Types::DBInstance
|
@@ -16699,6 +17089,7 @@ module Aws::RDS
|
|
16699
17089
|
# use_default_processor_features: false,
|
16700
17090
|
# db_parameter_group_name: "String",
|
16701
17091
|
# deletion_protection: false,
|
17092
|
+
# enable_customer_owned_ip: false,
|
16702
17093
|
# })
|
16703
17094
|
#
|
16704
17095
|
# @example Response structure
|
@@ -16825,6 +17216,7 @@ module Aws::RDS
|
|
16825
17216
|
# resp.db_instance.tag_list[0].value #=> String
|
16826
17217
|
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
16827
17218
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
17219
|
+
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
16828
17220
|
#
|
16829
17221
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshot AWS API Documentation
|
16830
17222
|
#
|
@@ -17207,6 +17599,14 @@ module Aws::RDS
|
|
17207
17599
|
# The upper limit to which Amazon RDS can automatically scale the
|
17208
17600
|
# storage of the DB instance.
|
17209
17601
|
#
|
17602
|
+
# For more information about this setting, including limitations that
|
17603
|
+
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
17604
|
+
# storage autoscaling][1] in the *Amazon RDS User Guide*.
|
17605
|
+
#
|
17606
|
+
#
|
17607
|
+
#
|
17608
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
17609
|
+
#
|
17210
17610
|
# @return [Types::RestoreDBInstanceFromS3Result] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
17211
17611
|
#
|
17212
17612
|
# * {Types::RestoreDBInstanceFromS3Result#db_instance #db_instance} => Types::DBInstance
|
@@ -17394,6 +17794,7 @@ module Aws::RDS
|
|
17394
17794
|
# resp.db_instance.tag_list[0].value #=> String
|
17395
17795
|
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
17396
17796
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
17797
|
+
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
17397
17798
|
#
|
17398
17799
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3 AWS API Documentation
|
17399
17800
|
#
|
@@ -17713,11 +18114,39 @@ module Aws::RDS
|
|
17713
18114
|
# The upper limit to which Amazon RDS can automatically scale the
|
17714
18115
|
# storage of the DB instance.
|
17715
18116
|
#
|
18117
|
+
# For more information about this setting, including limitations that
|
18118
|
+
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
18119
|
+
# storage autoscaling][1] in the *Amazon RDS User Guide*.
|
18120
|
+
#
|
18121
|
+
#
|
18122
|
+
#
|
18123
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
18124
|
+
#
|
17716
18125
|
# @option params [String] :source_db_instance_automated_backups_arn
|
17717
18126
|
# The Amazon Resource Name (ARN) of the replicated automated backups
|
17718
18127
|
# from which to restore, for example,
|
17719
18128
|
# `arn:aws:rds:useast-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE`.
|
17720
18129
|
#
|
18130
|
+
# @option params [Boolean] :enable_customer_owned_ip
|
18131
|
+
# A value that indicates whether to enable a customer-owned IP address
|
18132
|
+
# (CoIP) for an RDS on Outposts DB instance.
|
18133
|
+
#
|
18134
|
+
# A *CoIP* provides local or external connectivity to resources in your
|
18135
|
+
# Outpost subnets through your on-premises network. For some use cases,
|
18136
|
+
# a CoIP can provide lower latency for connections to the DB instance
|
18137
|
+
# from outside of its virtual private cloud (VPC) on your local network.
|
18138
|
+
#
|
18139
|
+
# For more information about RDS on Outposts, see [Working with Amazon
|
18140
|
+
# RDS on AWS Outposts][1] in the *Amazon RDS User Guide*.
|
18141
|
+
#
|
18142
|
+
# For more information about CoIPs, see [Customer-owned IP addresses][2]
|
18143
|
+
# in the *AWS Outposts User Guide*.
|
18144
|
+
#
|
18145
|
+
#
|
18146
|
+
#
|
18147
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
18148
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-networking-components.html#ip-addressing
|
18149
|
+
#
|
17721
18150
|
# @return [Types::RestoreDBInstanceToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
17722
18151
|
#
|
17723
18152
|
# * {Types::RestoreDBInstanceToPointInTimeResult#db_instance #db_instance} => Types::DBInstance
|
@@ -17864,6 +18293,7 @@ module Aws::RDS
|
|
17864
18293
|
# source_dbi_resource_id: "String",
|
17865
18294
|
# max_allocated_storage: 1,
|
17866
18295
|
# source_db_instance_automated_backups_arn: "String",
|
18296
|
+
# enable_customer_owned_ip: false,
|
17867
18297
|
# })
|
17868
18298
|
#
|
17869
18299
|
# @example Response structure
|
@@ -17990,6 +18420,7 @@ module Aws::RDS
|
|
17990
18420
|
# resp.db_instance.tag_list[0].value #=> String
|
17991
18421
|
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
17992
18422
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
18423
|
+
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
17993
18424
|
#
|
17994
18425
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTime AWS API Documentation
|
17995
18426
|
#
|
@@ -18433,6 +18864,7 @@ module Aws::RDS
|
|
18433
18864
|
# resp.db_instance.tag_list[0].value #=> String
|
18434
18865
|
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
18435
18866
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
18867
|
+
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
18436
18868
|
#
|
18437
18869
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstance AWS API Documentation
|
18438
18870
|
#
|
@@ -18995,6 +19427,7 @@ module Aws::RDS
|
|
18995
19427
|
# resp.db_instance.tag_list[0].value #=> String
|
18996
19428
|
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
18997
19429
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
19430
|
+
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
18998
19431
|
#
|
18999
19432
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstance AWS API Documentation
|
19000
19433
|
#
|
@@ -19082,7 +19515,7 @@ module Aws::RDS
|
|
19082
19515
|
params: params,
|
19083
19516
|
config: config)
|
19084
19517
|
context[:gem_name] = 'aws-sdk-rds'
|
19085
|
-
context[:gem_version] = '1.
|
19518
|
+
context[:gem_version] = '1.113.0'
|
19086
19519
|
Seahorse::Client::Request.new(handlers, context)
|
19087
19520
|
end
|
19088
19521
|
|