aws-sdk-rds 1.229.0 → 1.231.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/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +385 -15
- data/lib/aws-sdk-rds/client_api.rb +12 -0
- data/lib/aws-sdk-rds/db_cluster.rb +107 -6
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +37 -0
- data/lib/aws-sdk-rds/db_instance.rb +73 -0
- data/lib/aws-sdk-rds/db_snapshot.rb +33 -0
- data/lib/aws-sdk-rds/event_subscription.rb +6 -6
- data/lib/aws-sdk-rds/resource.rb +97 -9
- data/lib/aws-sdk-rds/types.rb +412 -24
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +16 -7
- data/sig/db_cluster.rbs +6 -1
- data/sig/db_cluster_snapshot.rbs +2 -1
- data/sig/db_instance.rbs +7 -2
- data/sig/db_snapshot.rbs +2 -1
- data/sig/resource.rbs +3 -1
- data/sig/types.rbs +12 -0
- metadata +2 -2
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -303,8 +303,9 @@ module Aws::RDS
|
|
303
303
|
#
|
304
304
|
# @option options [String] :sdk_ua_app_id
|
305
305
|
# A unique and opaque application ID that is appended to the
|
306
|
-
# User-Agent header as app
|
307
|
-
# maximum length of 50.
|
306
|
+
# User-Agent header as app/sdk_ua_app_id. It should have a
|
307
|
+
# maximum length of 50. This variable is sourced from environment
|
308
|
+
# variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.
|
308
309
|
#
|
309
310
|
# @option options [String] :secret_access_key
|
310
311
|
#
|
@@ -2538,18 +2539,23 @@ module Aws::RDS
|
|
2538
2539
|
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
2539
2540
|
#
|
2540
2541
|
# @option params [Array<String>] :availability_zones
|
2541
|
-
# A list of Availability Zones (AZs) where
|
2542
|
-
#
|
2542
|
+
# A list of Availability Zones (AZs) where you specifically want to
|
2543
|
+
# create DB instances in the DB cluster.
|
2543
2544
|
#
|
2544
|
-
# For information on
|
2545
|
-
# see [Choosing the Regions and Availability Zones][1] in the *Amazon
|
2545
|
+
# For information on AZs, see [Availability Zones][1] in the *Amazon
|
2546
2546
|
# Aurora User Guide*.
|
2547
2547
|
#
|
2548
2548
|
# Valid for Cluster Type: Aurora DB clusters only
|
2549
2549
|
#
|
2550
|
+
# Constraints:
|
2551
|
+
#
|
2552
|
+
# * Can't specify more than three AZs.
|
2553
|
+
#
|
2554
|
+
# ^
|
2550
2555
|
#
|
2551
2556
|
#
|
2552
|
-
#
|
2557
|
+
#
|
2558
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.RegionsAndAvailabilityZones.html#Concepts.RegionsAndAvailabilityZones.AvailabilityZones
|
2553
2559
|
#
|
2554
2560
|
# @option params [Integer] :backup_retention_period
|
2555
2561
|
# The number of days for which automated backups are retained.
|
@@ -2633,7 +2639,22 @@ module Aws::RDS
|
|
2633
2639
|
#
|
2634
2640
|
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
2635
2641
|
#
|
2636
|
-
# Valid Values:
|
2642
|
+
# Valid Values:
|
2643
|
+
#
|
2644
|
+
# * `aurora-mysql`
|
2645
|
+
#
|
2646
|
+
# * `aurora-postgresql`
|
2647
|
+
#
|
2648
|
+
# * `mysql`
|
2649
|
+
#
|
2650
|
+
# * `postgres`
|
2651
|
+
#
|
2652
|
+
# * `neptune` - For information about using Amazon Neptune, see the [
|
2653
|
+
# *Amazon Neptune User Guide* ][1].
|
2654
|
+
#
|
2655
|
+
#
|
2656
|
+
#
|
2657
|
+
# [1]: https://docs.aws.amazon.com/neptune/latest/userguide/intro.html
|
2637
2658
|
#
|
2638
2659
|
# @option params [String] :engine_version
|
2639
2660
|
# The version number of the database engine to use.
|
@@ -3368,6 +3389,42 @@ module Aws::RDS
|
|
3368
3389
|
#
|
3369
3390
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
3370
3391
|
#
|
3392
|
+
# @option params [String] :engine_lifecycle_support
|
3393
|
+
# The life cycle type for this DB cluster.
|
3394
|
+
#
|
3395
|
+
# <note markdown="1"> By default, this value is set to `open-source-rds-extended-support`,
|
3396
|
+
# which enrolls your DB cluster into Amazon RDS Extended Support. At the
|
3397
|
+
# end of standard support, you can avoid charges for Extended Support by
|
3398
|
+
# setting the value to `open-source-rds-extended-support-disabled`. In
|
3399
|
+
# this case, creating the DB cluster will fail if the DB major version
|
3400
|
+
# is past its end of standard support date.
|
3401
|
+
#
|
3402
|
+
# </note>
|
3403
|
+
#
|
3404
|
+
# You can use this setting to enroll your DB cluster into Amazon RDS
|
3405
|
+
# Extended Support. With RDS Extended Support, you can run the selected
|
3406
|
+
# major engine version on your DB cluster past the end of standard
|
3407
|
+
# support for that engine version. For more information, see the
|
3408
|
+
# following sections:
|
3409
|
+
#
|
3410
|
+
# * Amazon Aurora (PostgreSQL only) - [Using Amazon RDS Extended
|
3411
|
+
# Support][1] in the *Amazon Aurora User Guide*
|
3412
|
+
#
|
3413
|
+
# * Amazon RDS - [Using Amazon RDS Extended Support][2] in the *Amazon
|
3414
|
+
# RDS User Guide*
|
3415
|
+
#
|
3416
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
3417
|
+
#
|
3418
|
+
# Valid Values: `open-source-rds-extended-support |
|
3419
|
+
# open-source-rds-extended-support-disabled`
|
3420
|
+
#
|
3421
|
+
# Default: `open-source-rds-extended-support`
|
3422
|
+
#
|
3423
|
+
#
|
3424
|
+
#
|
3425
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
3426
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
3427
|
+
#
|
3371
3428
|
# @option params [String] :source_region
|
3372
3429
|
# The source region of the snapshot. This is only needed when the
|
3373
3430
|
# shapshot is encrypted and in a different region.
|
@@ -3579,6 +3636,7 @@ module Aws::RDS
|
|
3579
3636
|
# master_user_secret_kms_key_id: "String",
|
3580
3637
|
# enable_local_write_forwarding: false,
|
3581
3638
|
# ca_certificate_identifier: "String",
|
3639
|
+
# engine_lifecycle_support: "String",
|
3582
3640
|
# source_region: "String",
|
3583
3641
|
# })
|
3584
3642
|
#
|
@@ -3720,6 +3778,7 @@ module Aws::RDS
|
|
3720
3778
|
# resp.db_cluster.storage_throughput #=> Integer
|
3721
3779
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
3722
3780
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
3781
|
+
# resp.db_cluster.engine_lifecycle_support #=> String
|
3723
3782
|
#
|
3724
3783
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBCluster AWS API Documentation
|
3725
3784
|
#
|
@@ -5421,6 +5480,38 @@ module Aws::RDS
|
|
5421
5480
|
# DB instance, you can't later modify this DB instance to use the
|
5422
5481
|
# single-tenant configuration.
|
5423
5482
|
#
|
5483
|
+
# @option params [String] :engine_lifecycle_support
|
5484
|
+
# The life cycle type for this DB instance.
|
5485
|
+
#
|
5486
|
+
# <note markdown="1"> By default, this value is set to `open-source-rds-extended-support`,
|
5487
|
+
# which enrolls your DB instance into Amazon RDS Extended Support. At
|
5488
|
+
# the end of standard support, you can avoid charges for Extended
|
5489
|
+
# Support by setting the value to
|
5490
|
+
# `open-source-rds-extended-support-disabled`. In this case, creating
|
5491
|
+
# the DB instance will fail if the DB major version is past its end of
|
5492
|
+
# standard support date.
|
5493
|
+
#
|
5494
|
+
# </note>
|
5495
|
+
#
|
5496
|
+
# This setting applies only to RDS for MySQL and RDS for PostgreSQL. For
|
5497
|
+
# Amazon Aurora DB instances, the life cycle type is managed by the DB
|
5498
|
+
# cluster.
|
5499
|
+
#
|
5500
|
+
# You can use this setting to enroll your DB instance into Amazon RDS
|
5501
|
+
# Extended Support. With RDS Extended Support, you can run the selected
|
5502
|
+
# major engine version on your DB instance past the end of standard
|
5503
|
+
# support for that engine version. For more information, see [Using
|
5504
|
+
# Amazon RDS Extended Support][1] in the *Amazon RDS User Guide*.
|
5505
|
+
#
|
5506
|
+
# Valid Values: `open-source-rds-extended-support |
|
5507
|
+
# open-source-rds-extended-support-disabled`
|
5508
|
+
#
|
5509
|
+
# Default: `open-source-rds-extended-support`
|
5510
|
+
#
|
5511
|
+
#
|
5512
|
+
#
|
5513
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
5514
|
+
#
|
5424
5515
|
# @return [Types::CreateDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5425
5516
|
#
|
5426
5517
|
# * {Types::CreateDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
@@ -5610,6 +5701,7 @@ module Aws::RDS
|
|
5610
5701
|
# db_system_id: "String",
|
5611
5702
|
# dedicated_log_volume: false,
|
5612
5703
|
# multi_tenant: false,
|
5704
|
+
# engine_lifecycle_support: "String",
|
5613
5705
|
# })
|
5614
5706
|
#
|
5615
5707
|
# @example Response structure
|
@@ -5774,6 +5866,7 @@ module Aws::RDS
|
|
5774
5866
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
5775
5867
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
5776
5868
|
# resp.db_instance.multi_tenant #=> Boolean
|
5869
|
+
# resp.db_instance.engine_lifecycle_support #=> String
|
5777
5870
|
#
|
5778
5871
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstance AWS API Documentation
|
5779
5872
|
#
|
@@ -6713,6 +6806,7 @@ module Aws::RDS
|
|
6713
6806
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
6714
6807
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
6715
6808
|
# resp.db_instance.multi_tenant #=> Boolean
|
6809
|
+
# resp.db_instance.engine_lifecycle_support #=> String
|
6716
6810
|
#
|
6717
6811
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceReadReplica AWS API Documentation
|
6718
6812
|
#
|
@@ -7615,9 +7709,9 @@ module Aws::RDS
|
|
7615
7709
|
# parameter to `db-instance`. For RDS Proxy events, specify `db-proxy`.
|
7616
7710
|
# If this value isn't specified, all events are returned.
|
7617
7711
|
#
|
7618
|
-
# Valid Values
|
7619
|
-
#
|
7620
|
-
#
|
7712
|
+
# Valid Values:` db-instance | db-cluster | db-parameter-group |
|
7713
|
+
# db-security-group | db-snapshot | db-cluster-snapshot | db-proxy |
|
7714
|
+
# zero-etl | custom-engine-version | blue-green-deployment `
|
7621
7715
|
#
|
7622
7716
|
# @option params [Array<String>] :event_categories
|
7623
7717
|
# A list of event categories for a particular source type (`SourceType`)
|
@@ -7815,6 +7909,36 @@ module Aws::RDS
|
|
7815
7909
|
#
|
7816
7910
|
# ^
|
7817
7911
|
#
|
7912
|
+
# @option params [String] :engine_lifecycle_support
|
7913
|
+
# The life cycle type for this global database cluster.
|
7914
|
+
#
|
7915
|
+
# <note markdown="1"> By default, this value is set to `open-source-rds-extended-support`,
|
7916
|
+
# which enrolls your global cluster into Amazon RDS Extended Support. At
|
7917
|
+
# the end of standard support, you can avoid charges for Extended
|
7918
|
+
# Support by setting the value to
|
7919
|
+
# `open-source-rds-extended-support-disabled`. In this case, creating
|
7920
|
+
# the global cluster will fail if the DB major version is past its end
|
7921
|
+
# of standard support date.
|
7922
|
+
#
|
7923
|
+
# </note>
|
7924
|
+
#
|
7925
|
+
# This setting only applies to Aurora PostgreSQL-based global databases.
|
7926
|
+
#
|
7927
|
+
# You can use this setting to enroll your global cluster into Amazon RDS
|
7928
|
+
# Extended Support. With RDS Extended Support, you can run the selected
|
7929
|
+
# major engine version on your global cluster past the end of standard
|
7930
|
+
# support for that engine version. For more information, see [Using
|
7931
|
+
# Amazon RDS Extended Support][1] in the *Amazon Aurora User Guide*.
|
7932
|
+
#
|
7933
|
+
# Valid Values: `open-source-rds-extended-support |
|
7934
|
+
# open-source-rds-extended-support-disabled`
|
7935
|
+
#
|
7936
|
+
# Default: `open-source-rds-extended-support`
|
7937
|
+
#
|
7938
|
+
#
|
7939
|
+
#
|
7940
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
7941
|
+
#
|
7818
7942
|
# @option params [Boolean] :deletion_protection
|
7819
7943
|
# Specifies whether to enable deletion protection for the new global
|
7820
7944
|
# database cluster. The global database can't be deleted when deletion
|
@@ -7882,6 +8006,7 @@ module Aws::RDS
|
|
7882
8006
|
# source_db_cluster_identifier: "String",
|
7883
8007
|
# engine: "String",
|
7884
8008
|
# engine_version: "String",
|
8009
|
+
# engine_lifecycle_support: "String",
|
7885
8010
|
# deletion_protection: false,
|
7886
8011
|
# database_name: "String",
|
7887
8012
|
# storage_encrypted: false,
|
@@ -7895,6 +8020,7 @@ module Aws::RDS
|
|
7895
8020
|
# resp.global_cluster.status #=> String
|
7896
8021
|
# resp.global_cluster.engine #=> String
|
7897
8022
|
# resp.global_cluster.engine_version #=> String
|
8023
|
+
# resp.global_cluster.engine_lifecycle_support #=> String
|
7898
8024
|
# resp.global_cluster.database_name #=> String
|
7899
8025
|
# resp.global_cluster.storage_encrypted #=> Boolean
|
7900
8026
|
# resp.global_cluster.deletion_protection #=> Boolean
|
@@ -8927,6 +9053,7 @@ module Aws::RDS
|
|
8927
9053
|
# resp.db_cluster.storage_throughput #=> Integer
|
8928
9054
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
8929
9055
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
9056
|
+
# resp.db_cluster.engine_lifecycle_support #=> String
|
8930
9057
|
#
|
8931
9058
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBCluster AWS API Documentation
|
8932
9059
|
#
|
@@ -9529,6 +9656,7 @@ module Aws::RDS
|
|
9529
9656
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
9530
9657
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
9531
9658
|
# resp.db_instance.multi_tenant #=> Boolean
|
9659
|
+
# resp.db_instance.engine_lifecycle_support #=> String
|
9532
9660
|
#
|
9533
9661
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstance AWS API Documentation
|
9534
9662
|
#
|
@@ -10169,6 +10297,7 @@ module Aws::RDS
|
|
10169
10297
|
# resp.global_cluster.status #=> String
|
10170
10298
|
# resp.global_cluster.engine #=> String
|
10171
10299
|
# resp.global_cluster.engine_version #=> String
|
10300
|
+
# resp.global_cluster.engine_lifecycle_support #=> String
|
10172
10301
|
# resp.global_cluster.database_name #=> String
|
10173
10302
|
# resp.global_cluster.storage_encrypted #=> Boolean
|
10174
10303
|
# resp.global_cluster.deletion_protection #=> Boolean
|
@@ -12356,6 +12485,7 @@ module Aws::RDS
|
|
12356
12485
|
# resp.db_clusters[0].storage_throughput #=> Integer
|
12357
12486
|
# resp.db_clusters[0].certificate_details.ca_identifier #=> String
|
12358
12487
|
# resp.db_clusters[0].certificate_details.valid_till #=> Time
|
12488
|
+
# resp.db_clusters[0].engine_lifecycle_support #=> String
|
12359
12489
|
#
|
12360
12490
|
#
|
12361
12491
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -13099,6 +13229,7 @@ module Aws::RDS
|
|
13099
13229
|
# resp.db_instances[0].dedicated_log_volume #=> Boolean
|
13100
13230
|
# resp.db_instances[0].is_storage_config_upgrade_available #=> Boolean
|
13101
13231
|
# resp.db_instances[0].multi_tenant #=> Boolean
|
13232
|
+
# resp.db_instances[0].engine_lifecycle_support #=> String
|
13102
13233
|
#
|
13103
13234
|
#
|
13104
13235
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -15746,6 +15877,7 @@ module Aws::RDS
|
|
15746
15877
|
# resp.global_clusters[0].status #=> String
|
15747
15878
|
# resp.global_clusters[0].engine #=> String
|
15748
15879
|
# resp.global_clusters[0].engine_version #=> String
|
15880
|
+
# resp.global_clusters[0].engine_lifecycle_support #=> String
|
15749
15881
|
# resp.global_clusters[0].database_name #=> String
|
15750
15882
|
# resp.global_clusters[0].storage_encrypted #=> Boolean
|
15751
15883
|
# resp.global_clusters[0].deletion_protection #=> Boolean
|
@@ -17655,6 +17787,7 @@ module Aws::RDS
|
|
17655
17787
|
# resp.db_cluster.storage_throughput #=> Integer
|
17656
17788
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
17657
17789
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
17790
|
+
# resp.db_cluster.engine_lifecycle_support #=> String
|
17658
17791
|
#
|
17659
17792
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverDBCluster AWS API Documentation
|
17660
17793
|
#
|
@@ -17780,6 +17913,7 @@ module Aws::RDS
|
|
17780
17913
|
# resp.global_cluster.status #=> String
|
17781
17914
|
# resp.global_cluster.engine #=> String
|
17782
17915
|
# resp.global_cluster.engine_version #=> String
|
17916
|
+
# resp.global_cluster.engine_lifecycle_support #=> String
|
17783
17917
|
# resp.global_cluster.database_name #=> String
|
17784
17918
|
# resp.global_cluster.storage_encrypted #=> Boolean
|
17785
17919
|
# resp.global_cluster.deletion_protection #=> Boolean
|
@@ -19337,6 +19471,7 @@ module Aws::RDS
|
|
19337
19471
|
# resp.db_cluster.storage_throughput #=> Integer
|
19338
19472
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
19339
19473
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
19474
|
+
# resp.db_cluster.engine_lifecycle_support #=> String
|
19340
19475
|
#
|
19341
19476
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBCluster AWS API Documentation
|
19342
19477
|
#
|
@@ -21070,6 +21205,7 @@ module Aws::RDS
|
|
21070
21205
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
21071
21206
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
21072
21207
|
# resp.db_instance.multi_tenant #=> Boolean
|
21208
|
+
# resp.db_instance.engine_lifecycle_support #=> String
|
21073
21209
|
#
|
21074
21210
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstance AWS API Documentation
|
21075
21211
|
#
|
@@ -22041,9 +22177,9 @@ module Aws::RDS
|
|
22041
22177
|
# set this parameter to db-instance. For RDS Proxy events, specify
|
22042
22178
|
# `db-proxy`. If this value isn't specified, all events are returned.
|
22043
22179
|
#
|
22044
|
-
# Valid Values
|
22045
|
-
#
|
22046
|
-
#
|
22180
|
+
# Valid Values:` db-instance | db-cluster | db-parameter-group |
|
22181
|
+
# db-security-group | db-snapshot | db-cluster-snapshot | db-proxy |
|
22182
|
+
# zero-etl | custom-engine-version | blue-green-deployment `
|
22047
22183
|
#
|
22048
22184
|
# @option params [Array<String>] :event_categories
|
22049
22185
|
# A list of event categories for a source type (`SourceType`) that you
|
@@ -22245,6 +22381,7 @@ module Aws::RDS
|
|
22245
22381
|
# resp.global_cluster.status #=> String
|
22246
22382
|
# resp.global_cluster.engine #=> String
|
22247
22383
|
# resp.global_cluster.engine_version #=> String
|
22384
|
+
# resp.global_cluster.engine_lifecycle_support #=> String
|
22248
22385
|
# resp.global_cluster.database_name #=> String
|
22249
22386
|
# resp.global_cluster.storage_encrypted #=> Boolean
|
22250
22387
|
# resp.global_cluster.deletion_protection #=> Boolean
|
@@ -22854,6 +22991,7 @@ module Aws::RDS
|
|
22854
22991
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
22855
22992
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
22856
22993
|
# resp.db_instance.multi_tenant #=> Boolean
|
22994
|
+
# resp.db_instance.engine_lifecycle_support #=> String
|
22857
22995
|
#
|
22858
22996
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplica AWS API Documentation
|
22859
22997
|
#
|
@@ -23026,6 +23164,7 @@ module Aws::RDS
|
|
23026
23164
|
# resp.db_cluster.storage_throughput #=> Integer
|
23027
23165
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
23028
23166
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
23167
|
+
# resp.db_cluster.engine_lifecycle_support #=> String
|
23029
23168
|
#
|
23030
23169
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplicaDBCluster AWS API Documentation
|
23031
23170
|
#
|
@@ -23321,6 +23460,7 @@ module Aws::RDS
|
|
23321
23460
|
# resp.db_cluster.storage_throughput #=> Integer
|
23322
23461
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
23323
23462
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
23463
|
+
# resp.db_cluster.engine_lifecycle_support #=> String
|
23324
23464
|
#
|
23325
23465
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBCluster AWS API Documentation
|
23326
23466
|
#
|
@@ -23566,6 +23706,7 @@ module Aws::RDS
|
|
23566
23706
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
23567
23707
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
23568
23708
|
# resp.db_instance.multi_tenant #=> Boolean
|
23709
|
+
# resp.db_instance.engine_lifecycle_support #=> String
|
23569
23710
|
#
|
23570
23711
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBInstance AWS API Documentation
|
23571
23712
|
#
|
@@ -23752,6 +23893,7 @@ module Aws::RDS
|
|
23752
23893
|
# resp.global_cluster.status #=> String
|
23753
23894
|
# resp.global_cluster.engine #=> String
|
23754
23895
|
# resp.global_cluster.engine_version #=> String
|
23896
|
+
# resp.global_cluster.engine_lifecycle_support #=> String
|
23755
23897
|
# resp.global_cluster.database_name #=> String
|
23756
23898
|
# resp.global_cluster.storage_encrypted #=> Boolean
|
23757
23899
|
# resp.global_cluster.deletion_protection #=> Boolean
|
@@ -24589,6 +24731,43 @@ module Aws::RDS
|
|
24589
24731
|
#
|
24590
24732
|
# Valid for: Aurora DB clusters only
|
24591
24733
|
#
|
24734
|
+
# @option params [String] :engine_lifecycle_support
|
24735
|
+
# The life cycle type for this DB cluster.
|
24736
|
+
#
|
24737
|
+
# <note markdown="1"> By default, this value is set to `open-source-rds-extended-support`,
|
24738
|
+
# which enrolls your DB cluster into Amazon RDS Extended Support. At the
|
24739
|
+
# end of standard support, you can avoid charges for Extended Support by
|
24740
|
+
# setting the value to `open-source-rds-extended-support-disabled`. In
|
24741
|
+
# this case, RDS automatically upgrades your restored DB cluster to a
|
24742
|
+
# higher engine version, if the major engine version is past its end of
|
24743
|
+
# standard support date.
|
24744
|
+
#
|
24745
|
+
# </note>
|
24746
|
+
#
|
24747
|
+
# You can use this setting to enroll your DB cluster into Amazon RDS
|
24748
|
+
# Extended Support. With RDS Extended Support, you can run the selected
|
24749
|
+
# major engine version on your DB cluster past the end of standard
|
24750
|
+
# support for that engine version. For more information, see the
|
24751
|
+
# following sections:
|
24752
|
+
#
|
24753
|
+
# * Amazon Aurora (PostgreSQL only) - [Using Amazon RDS Extended
|
24754
|
+
# Support][1] in the *Amazon Aurora User Guide*
|
24755
|
+
#
|
24756
|
+
# * Amazon RDS - [Using Amazon RDS Extended Support][2] in the *Amazon
|
24757
|
+
# RDS User Guide*
|
24758
|
+
#
|
24759
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
24760
|
+
#
|
24761
|
+
# Valid Values: `open-source-rds-extended-support |
|
24762
|
+
# open-source-rds-extended-support-disabled`
|
24763
|
+
#
|
24764
|
+
# Default: `open-source-rds-extended-support`
|
24765
|
+
#
|
24766
|
+
#
|
24767
|
+
#
|
24768
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
24769
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
24770
|
+
#
|
24592
24771
|
# @return [Types::RestoreDBClusterFromS3Result] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
24593
24772
|
#
|
24594
24773
|
# * {Types::RestoreDBClusterFromS3Result#db_cluster #db_cluster} => Types::DBCluster
|
@@ -24709,6 +24888,7 @@ module Aws::RDS
|
|
24709
24888
|
# manage_master_user_password: false,
|
24710
24889
|
# master_user_secret_kms_key_id: "String",
|
24711
24890
|
# storage_type: "String",
|
24891
|
+
# engine_lifecycle_support: "String",
|
24712
24892
|
# })
|
24713
24893
|
#
|
24714
24894
|
# @example Response structure
|
@@ -24849,6 +25029,7 @@ module Aws::RDS
|
|
24849
25029
|
# resp.db_cluster.storage_throughput #=> Integer
|
24850
25030
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
24851
25031
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
25032
|
+
# resp.db_cluster.engine_lifecycle_support #=> String
|
24852
25033
|
#
|
24853
25034
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3 AWS API Documentation
|
24854
25035
|
#
|
@@ -25307,6 +25488,43 @@ module Aws::RDS
|
|
25307
25488
|
# @option params [Types::RdsCustomClusterConfiguration] :rds_custom_cluster_configuration
|
25308
25489
|
# Reserved for future use.
|
25309
25490
|
#
|
25491
|
+
# @option params [String] :engine_lifecycle_support
|
25492
|
+
# The life cycle type for this DB cluster.
|
25493
|
+
#
|
25494
|
+
# <note markdown="1"> By default, this value is set to `open-source-rds-extended-support`,
|
25495
|
+
# which enrolls your DB cluster into Amazon RDS Extended Support. At the
|
25496
|
+
# end of standard support, you can avoid charges for Extended Support by
|
25497
|
+
# setting the value to `open-source-rds-extended-support-disabled`. In
|
25498
|
+
# this case, RDS automatically upgrades your restored DB cluster to a
|
25499
|
+
# higher engine version, if the major engine version is past its end of
|
25500
|
+
# standard support date.
|
25501
|
+
#
|
25502
|
+
# </note>
|
25503
|
+
#
|
25504
|
+
# You can use this setting to enroll your DB cluster into Amazon RDS
|
25505
|
+
# Extended Support. With RDS Extended Support, you can run the selected
|
25506
|
+
# major engine version on your DB cluster past the end of standard
|
25507
|
+
# support for that engine version. For more information, see the
|
25508
|
+
# following sections:
|
25509
|
+
#
|
25510
|
+
# * Amazon Aurora (PostgreSQL only) - [Using Amazon RDS Extended
|
25511
|
+
# Support][1] in the *Amazon Aurora User Guide*
|
25512
|
+
#
|
25513
|
+
# * Amazon RDS - [Using Amazon RDS Extended Support][2] in the *Amazon
|
25514
|
+
# RDS User Guide*
|
25515
|
+
#
|
25516
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
25517
|
+
#
|
25518
|
+
# Valid Values: `open-source-rds-extended-support |
|
25519
|
+
# open-source-rds-extended-support-disabled`
|
25520
|
+
#
|
25521
|
+
# Default: `open-source-rds-extended-support`
|
25522
|
+
#
|
25523
|
+
#
|
25524
|
+
#
|
25525
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
25526
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
25527
|
+
#
|
25310
25528
|
# @return [Types::RestoreDBClusterFromSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
25311
25529
|
#
|
25312
25530
|
# * {Types::RestoreDBClusterFromSnapshotResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -25428,6 +25646,7 @@ module Aws::RDS
|
|
25428
25646
|
# transit_gateway_multicast_domain_id: "String",
|
25429
25647
|
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
25430
25648
|
# },
|
25649
|
+
# engine_lifecycle_support: "String",
|
25431
25650
|
# })
|
25432
25651
|
#
|
25433
25652
|
# @example Response structure
|
@@ -25568,6 +25787,7 @@ module Aws::RDS
|
|
25568
25787
|
# resp.db_cluster.storage_throughput #=> Integer
|
25569
25788
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
25570
25789
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
25790
|
+
# resp.db_cluster.engine_lifecycle_support #=> String
|
25571
25791
|
#
|
25572
25792
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshot AWS API Documentation
|
25573
25793
|
#
|
@@ -26002,6 +26222,43 @@ module Aws::RDS
|
|
26002
26222
|
# @option params [Types::RdsCustomClusterConfiguration] :rds_custom_cluster_configuration
|
26003
26223
|
# Reserved for future use.
|
26004
26224
|
#
|
26225
|
+
# @option params [String] :engine_lifecycle_support
|
26226
|
+
# The life cycle type for this DB cluster.
|
26227
|
+
#
|
26228
|
+
# <note markdown="1"> By default, this value is set to `open-source-rds-extended-support`,
|
26229
|
+
# which enrolls your DB cluster into Amazon RDS Extended Support. At the
|
26230
|
+
# end of standard support, you can avoid charges for Extended Support by
|
26231
|
+
# setting the value to `open-source-rds-extended-support-disabled`. In
|
26232
|
+
# this case, RDS automatically upgrades your restored DB cluster to a
|
26233
|
+
# higher engine version, if the major engine version is past its end of
|
26234
|
+
# standard support date.
|
26235
|
+
#
|
26236
|
+
# </note>
|
26237
|
+
#
|
26238
|
+
# You can use this setting to enroll your DB cluster into Amazon RDS
|
26239
|
+
# Extended Support. With RDS Extended Support, you can run the selected
|
26240
|
+
# major engine version on your DB cluster past the end of standard
|
26241
|
+
# support for that engine version. For more information, see the
|
26242
|
+
# following sections:
|
26243
|
+
#
|
26244
|
+
# * Amazon Aurora (PostgreSQL only) - [Using Amazon RDS Extended
|
26245
|
+
# Support][1] in the *Amazon Aurora User Guide*
|
26246
|
+
#
|
26247
|
+
# * Amazon RDS - [Using Amazon RDS Extended Support][2] in the *Amazon
|
26248
|
+
# RDS User Guide*
|
26249
|
+
#
|
26250
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
26251
|
+
#
|
26252
|
+
# Valid Values: `open-source-rds-extended-support |
|
26253
|
+
# open-source-rds-extended-support-disabled`
|
26254
|
+
#
|
26255
|
+
# Default: `open-source-rds-extended-support`
|
26256
|
+
#
|
26257
|
+
#
|
26258
|
+
#
|
26259
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
26260
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
26261
|
+
#
|
26005
26262
|
# @return [Types::RestoreDBClusterToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
26006
26263
|
#
|
26007
26264
|
# * {Types::RestoreDBClusterToPointInTimeResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -26122,6 +26379,7 @@ module Aws::RDS
|
|
26122
26379
|
# transit_gateway_multicast_domain_id: "String",
|
26123
26380
|
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
26124
26381
|
# },
|
26382
|
+
# engine_lifecycle_support: "String",
|
26125
26383
|
# })
|
26126
26384
|
#
|
26127
26385
|
# @example Response structure
|
@@ -26262,6 +26520,7 @@ module Aws::RDS
|
|
26262
26520
|
# resp.db_cluster.storage_throughput #=> Integer
|
26263
26521
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
26264
26522
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
26523
|
+
# resp.db_cluster.engine_lifecycle_support #=> String
|
26265
26524
|
#
|
26266
26525
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTime AWS API Documentation
|
26267
26526
|
#
|
@@ -26815,6 +27074,39 @@ module Aws::RDS
|
|
26815
27074
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
26816
27075
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
26817
27076
|
#
|
27077
|
+
# @option params [String] :engine_lifecycle_support
|
27078
|
+
# The life cycle type for this DB instance.
|
27079
|
+
#
|
27080
|
+
# <note markdown="1"> By default, this value is set to `open-source-rds-extended-support`,
|
27081
|
+
# which enrolls your DB instance into Amazon RDS Extended Support. At
|
27082
|
+
# the end of standard support, you can avoid charges for Extended
|
27083
|
+
# Support by setting the value to
|
27084
|
+
# `open-source-rds-extended-support-disabled`. In this case, RDS
|
27085
|
+
# automatically upgrades your restored DB instance to a higher engine
|
27086
|
+
# version, if the major engine version is past its end of standard
|
27087
|
+
# support date.
|
27088
|
+
#
|
27089
|
+
# </note>
|
27090
|
+
#
|
27091
|
+
# You can use this setting to enroll your DB instance into Amazon RDS
|
27092
|
+
# Extended Support. With RDS Extended Support, you can run the selected
|
27093
|
+
# major engine version on your DB instance past the end of standard
|
27094
|
+
# support for that engine version. For more information, see [Using
|
27095
|
+
# Amazon RDS Extended Support][1] in the *Amazon RDS User Guide*.
|
27096
|
+
#
|
27097
|
+
# This setting applies only to RDS for MySQL and RDS for PostgreSQL. For
|
27098
|
+
# Amazon Aurora DB instances, the life cycle type is managed by the DB
|
27099
|
+
# cluster.
|
27100
|
+
#
|
27101
|
+
# Valid Values: `open-source-rds-extended-support |
|
27102
|
+
# open-source-rds-extended-support-disabled`
|
27103
|
+
#
|
27104
|
+
# Default: `open-source-rds-extended-support`
|
27105
|
+
#
|
27106
|
+
#
|
27107
|
+
#
|
27108
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
27109
|
+
#
|
26818
27110
|
# @return [Types::RestoreDBInstanceFromDBSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
26819
27111
|
#
|
26820
27112
|
# * {Types::RestoreDBInstanceFromDBSnapshotResult#db_instance #db_instance} => Types::DBInstance
|
@@ -26911,6 +27203,7 @@ module Aws::RDS
|
|
26911
27203
|
# allocated_storage: 1,
|
26912
27204
|
# dedicated_log_volume: false,
|
26913
27205
|
# ca_certificate_identifier: "String",
|
27206
|
+
# engine_lifecycle_support: "String",
|
26914
27207
|
# })
|
26915
27208
|
#
|
26916
27209
|
# @example Response structure
|
@@ -27075,6 +27368,7 @@ module Aws::RDS
|
|
27075
27368
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
27076
27369
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
27077
27370
|
# resp.db_instance.multi_tenant #=> Boolean
|
27371
|
+
# resp.db_instance.engine_lifecycle_support #=> String
|
27078
27372
|
#
|
27079
27373
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshot AWS API Documentation
|
27080
27374
|
#
|
@@ -27601,6 +27895,39 @@ module Aws::RDS
|
|
27601
27895
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
27602
27896
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
27603
27897
|
#
|
27898
|
+
# @option params [String] :engine_lifecycle_support
|
27899
|
+
# The life cycle type for this DB instance.
|
27900
|
+
#
|
27901
|
+
# <note markdown="1"> By default, this value is set to `open-source-rds-extended-support`,
|
27902
|
+
# which enrolls your DB instance into Amazon RDS Extended Support. At
|
27903
|
+
# the end of standard support, you can avoid charges for Extended
|
27904
|
+
# Support by setting the value to
|
27905
|
+
# `open-source-rds-extended-support-disabled`. In this case, RDS
|
27906
|
+
# automatically upgrades your restored DB instance to a higher engine
|
27907
|
+
# version, if the major engine version is past its end of standard
|
27908
|
+
# support date.
|
27909
|
+
#
|
27910
|
+
# </note>
|
27911
|
+
#
|
27912
|
+
# You can use this setting to enroll your DB instance into Amazon RDS
|
27913
|
+
# Extended Support. With RDS Extended Support, you can run the selected
|
27914
|
+
# major engine version on your DB instance past the end of standard
|
27915
|
+
# support for that engine version. For more information, see [Using
|
27916
|
+
# Amazon RDS Extended Support][1] in the *Amazon RDS User Guide*.
|
27917
|
+
#
|
27918
|
+
# This setting applies only to RDS for MySQL and RDS for PostgreSQL. For
|
27919
|
+
# Amazon Aurora DB instances, the life cycle type is managed by the DB
|
27920
|
+
# cluster.
|
27921
|
+
#
|
27922
|
+
# Valid Values: `open-source-rds-extended-support |
|
27923
|
+
# open-source-rds-extended-support-disabled`
|
27924
|
+
#
|
27925
|
+
# Default: `open-source-rds-extended-support`
|
27926
|
+
#
|
27927
|
+
#
|
27928
|
+
#
|
27929
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
27930
|
+
#
|
27604
27931
|
# @return [Types::RestoreDBInstanceFromS3Result] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
27605
27932
|
#
|
27606
27933
|
# * {Types::RestoreDBInstanceFromS3Result#db_instance #db_instance} => Types::DBInstance
|
@@ -27668,6 +27995,7 @@ module Aws::RDS
|
|
27668
27995
|
# master_user_secret_kms_key_id: "String",
|
27669
27996
|
# dedicated_log_volume: false,
|
27670
27997
|
# ca_certificate_identifier: "String",
|
27998
|
+
# engine_lifecycle_support: "String",
|
27671
27999
|
# })
|
27672
28000
|
#
|
27673
28001
|
# @example Response structure
|
@@ -27832,6 +28160,7 @@ module Aws::RDS
|
|
27832
28160
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
27833
28161
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
27834
28162
|
# resp.db_instance.multi_tenant #=> Boolean
|
28163
|
+
# resp.db_instance.engine_lifecycle_support #=> String
|
27835
28164
|
#
|
27836
28165
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3 AWS API Documentation
|
27837
28166
|
#
|
@@ -28401,6 +28730,39 @@ module Aws::RDS
|
|
28401
28730
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
28402
28731
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
28403
28732
|
#
|
28733
|
+
# @option params [String] :engine_lifecycle_support
|
28734
|
+
# The life cycle type for this DB instance.
|
28735
|
+
#
|
28736
|
+
# <note markdown="1"> By default, this value is set to `open-source-rds-extended-support`,
|
28737
|
+
# which enrolls your DB instance into Amazon RDS Extended Support. At
|
28738
|
+
# the end of standard support, you can avoid charges for Extended
|
28739
|
+
# Support by setting the value to
|
28740
|
+
# `open-source-rds-extended-support-disabled`. In this case, RDS
|
28741
|
+
# automatically upgrades your restored DB instance to a higher engine
|
28742
|
+
# version, if the major engine version is past its end of standard
|
28743
|
+
# support date.
|
28744
|
+
#
|
28745
|
+
# </note>
|
28746
|
+
#
|
28747
|
+
# You can use this setting to enroll your DB instance into Amazon RDS
|
28748
|
+
# Extended Support. With RDS Extended Support, you can run the selected
|
28749
|
+
# major engine version on your DB instance past the end of standard
|
28750
|
+
# support for that engine version. For more information, see [Using
|
28751
|
+
# Amazon RDS Extended Support][1] in the *Amazon RDS User Guide*.
|
28752
|
+
#
|
28753
|
+
# This setting applies only to RDS for MySQL and RDS for PostgreSQL. For
|
28754
|
+
# Amazon Aurora DB instances, the life cycle type is managed by the DB
|
28755
|
+
# cluster.
|
28756
|
+
#
|
28757
|
+
# Valid Values: `open-source-rds-extended-support |
|
28758
|
+
# open-source-rds-extended-support-disabled`
|
28759
|
+
#
|
28760
|
+
# Default: `open-source-rds-extended-support`
|
28761
|
+
#
|
28762
|
+
#
|
28763
|
+
#
|
28764
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
28765
|
+
#
|
28404
28766
|
# @return [Types::RestoreDBInstanceToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
28405
28767
|
#
|
28406
28768
|
# * {Types::RestoreDBInstanceToPointInTimeResult#db_instance #db_instance} => Types::DBInstance
|
@@ -28560,6 +28922,7 @@ module Aws::RDS
|
|
28560
28922
|
# allocated_storage: 1,
|
28561
28923
|
# dedicated_log_volume: false,
|
28562
28924
|
# ca_certificate_identifier: "String",
|
28925
|
+
# engine_lifecycle_support: "String",
|
28563
28926
|
# })
|
28564
28927
|
#
|
28565
28928
|
# @example Response structure
|
@@ -28724,6 +29087,7 @@ module Aws::RDS
|
|
28724
29087
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
28725
29088
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
28726
29089
|
# resp.db_instance.multi_tenant #=> Boolean
|
29090
|
+
# resp.db_instance.engine_lifecycle_support #=> String
|
28727
29091
|
#
|
28728
29092
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTime AWS API Documentation
|
28729
29093
|
#
|
@@ -29124,6 +29488,7 @@ module Aws::RDS
|
|
29124
29488
|
# resp.db_cluster.storage_throughput #=> Integer
|
29125
29489
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
29126
29490
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
29491
|
+
# resp.db_cluster.engine_lifecycle_support #=> String
|
29127
29492
|
#
|
29128
29493
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBCluster AWS API Documentation
|
29129
29494
|
#
|
@@ -29341,6 +29706,7 @@ module Aws::RDS
|
|
29341
29706
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
29342
29707
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
29343
29708
|
# resp.db_instance.multi_tenant #=> Boolean
|
29709
|
+
# resp.db_instance.engine_lifecycle_support #=> String
|
29344
29710
|
#
|
29345
29711
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstance AWS API Documentation
|
29346
29712
|
#
|
@@ -29965,6 +30331,7 @@ module Aws::RDS
|
|
29965
30331
|
# resp.db_cluster.storage_throughput #=> Integer
|
29966
30332
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
29967
30333
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
30334
|
+
# resp.db_cluster.engine_lifecycle_support #=> String
|
29968
30335
|
#
|
29969
30336
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBCluster AWS API Documentation
|
29970
30337
|
#
|
@@ -30189,6 +30556,7 @@ module Aws::RDS
|
|
30189
30556
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
30190
30557
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
30191
30558
|
# resp.db_instance.multi_tenant #=> Boolean
|
30559
|
+
# resp.db_instance.engine_lifecycle_support #=> String
|
30192
30560
|
#
|
30193
30561
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstance AWS API Documentation
|
30194
30562
|
#
|
@@ -30578,6 +30946,7 @@ module Aws::RDS
|
|
30578
30946
|
# resp.global_cluster.status #=> String
|
30579
30947
|
# resp.global_cluster.engine #=> String
|
30580
30948
|
# resp.global_cluster.engine_version #=> String
|
30949
|
+
# resp.global_cluster.engine_lifecycle_support #=> String
|
30581
30950
|
# resp.global_cluster.database_name #=> String
|
30582
30951
|
# resp.global_cluster.storage_encrypted #=> Boolean
|
30583
30952
|
# resp.global_cluster.deletion_protection #=> Boolean
|
@@ -30789,6 +31158,7 @@ module Aws::RDS
|
|
30789
31158
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
30790
31159
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
30791
31160
|
# resp.db_instance.multi_tenant #=> Boolean
|
31161
|
+
# resp.db_instance.engine_lifecycle_support #=> String
|
30792
31162
|
#
|
30793
31163
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SwitchoverReadReplica AWS API Documentation
|
30794
31164
|
#
|
@@ -30812,7 +31182,7 @@ module Aws::RDS
|
|
30812
31182
|
params: params,
|
30813
31183
|
config: config)
|
30814
31184
|
context[:gem_name] = 'aws-sdk-rds'
|
30815
|
-
context[:gem_version] = '1.
|
31185
|
+
context[:gem_version] = '1.231.0'
|
30816
31186
|
Seahorse::Client::Request.new(handlers, context)
|
30817
31187
|
end
|
30818
31188
|
|