aws-sdk-rds 1.230.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +382 -13
- 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
@@ -2539,18 +2539,23 @@ module Aws::RDS
|
|
2539
2539
|
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
2540
2540
|
#
|
2541
2541
|
# @option params [Array<String>] :availability_zones
|
2542
|
-
# A list of Availability Zones (AZs) where
|
2543
|
-
#
|
2542
|
+
# A list of Availability Zones (AZs) where you specifically want to
|
2543
|
+
# create DB instances in the DB cluster.
|
2544
2544
|
#
|
2545
|
-
# For information on
|
2546
|
-
# see [Choosing the Regions and Availability Zones][1] in the *Amazon
|
2545
|
+
# For information on AZs, see [Availability Zones][1] in the *Amazon
|
2547
2546
|
# Aurora User Guide*.
|
2548
2547
|
#
|
2549
2548
|
# Valid for Cluster Type: Aurora DB clusters only
|
2550
2549
|
#
|
2550
|
+
# Constraints:
|
2551
|
+
#
|
2552
|
+
# * Can't specify more than three AZs.
|
2553
|
+
#
|
2554
|
+
# ^
|
2551
2555
|
#
|
2552
2556
|
#
|
2553
|
-
#
|
2557
|
+
#
|
2558
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.RegionsAndAvailabilityZones.html#Concepts.RegionsAndAvailabilityZones.AvailabilityZones
|
2554
2559
|
#
|
2555
2560
|
# @option params [Integer] :backup_retention_period
|
2556
2561
|
# The number of days for which automated backups are retained.
|
@@ -2634,7 +2639,22 @@ module Aws::RDS
|
|
2634
2639
|
#
|
2635
2640
|
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
2636
2641
|
#
|
2637
|
-
# 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
|
2638
2658
|
#
|
2639
2659
|
# @option params [String] :engine_version
|
2640
2660
|
# The version number of the database engine to use.
|
@@ -3369,6 +3389,42 @@ module Aws::RDS
|
|
3369
3389
|
#
|
3370
3390
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
3371
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
|
+
#
|
3372
3428
|
# @option params [String] :source_region
|
3373
3429
|
# The source region of the snapshot. This is only needed when the
|
3374
3430
|
# shapshot is encrypted and in a different region.
|
@@ -3580,6 +3636,7 @@ module Aws::RDS
|
|
3580
3636
|
# master_user_secret_kms_key_id: "String",
|
3581
3637
|
# enable_local_write_forwarding: false,
|
3582
3638
|
# ca_certificate_identifier: "String",
|
3639
|
+
# engine_lifecycle_support: "String",
|
3583
3640
|
# source_region: "String",
|
3584
3641
|
# })
|
3585
3642
|
#
|
@@ -3721,6 +3778,7 @@ module Aws::RDS
|
|
3721
3778
|
# resp.db_cluster.storage_throughput #=> Integer
|
3722
3779
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
3723
3780
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
3781
|
+
# resp.db_cluster.engine_lifecycle_support #=> String
|
3724
3782
|
#
|
3725
3783
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBCluster AWS API Documentation
|
3726
3784
|
#
|
@@ -5422,6 +5480,38 @@ module Aws::RDS
|
|
5422
5480
|
# DB instance, you can't later modify this DB instance to use the
|
5423
5481
|
# single-tenant configuration.
|
5424
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
|
+
#
|
5425
5515
|
# @return [Types::CreateDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5426
5516
|
#
|
5427
5517
|
# * {Types::CreateDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
@@ -5611,6 +5701,7 @@ module Aws::RDS
|
|
5611
5701
|
# db_system_id: "String",
|
5612
5702
|
# dedicated_log_volume: false,
|
5613
5703
|
# multi_tenant: false,
|
5704
|
+
# engine_lifecycle_support: "String",
|
5614
5705
|
# })
|
5615
5706
|
#
|
5616
5707
|
# @example Response structure
|
@@ -5775,6 +5866,7 @@ module Aws::RDS
|
|
5775
5866
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
5776
5867
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
5777
5868
|
# resp.db_instance.multi_tenant #=> Boolean
|
5869
|
+
# resp.db_instance.engine_lifecycle_support #=> String
|
5778
5870
|
#
|
5779
5871
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstance AWS API Documentation
|
5780
5872
|
#
|
@@ -6714,6 +6806,7 @@ module Aws::RDS
|
|
6714
6806
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
6715
6807
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
6716
6808
|
# resp.db_instance.multi_tenant #=> Boolean
|
6809
|
+
# resp.db_instance.engine_lifecycle_support #=> String
|
6717
6810
|
#
|
6718
6811
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceReadReplica AWS API Documentation
|
6719
6812
|
#
|
@@ -7616,9 +7709,9 @@ module Aws::RDS
|
|
7616
7709
|
# parameter to `db-instance`. For RDS Proxy events, specify `db-proxy`.
|
7617
7710
|
# If this value isn't specified, all events are returned.
|
7618
7711
|
#
|
7619
|
-
# Valid Values
|
7620
|
-
#
|
7621
|
-
#
|
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 `
|
7622
7715
|
#
|
7623
7716
|
# @option params [Array<String>] :event_categories
|
7624
7717
|
# A list of event categories for a particular source type (`SourceType`)
|
@@ -7816,6 +7909,36 @@ module Aws::RDS
|
|
7816
7909
|
#
|
7817
7910
|
# ^
|
7818
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
|
+
#
|
7819
7942
|
# @option params [Boolean] :deletion_protection
|
7820
7943
|
# Specifies whether to enable deletion protection for the new global
|
7821
7944
|
# database cluster. The global database can't be deleted when deletion
|
@@ -7883,6 +8006,7 @@ module Aws::RDS
|
|
7883
8006
|
# source_db_cluster_identifier: "String",
|
7884
8007
|
# engine: "String",
|
7885
8008
|
# engine_version: "String",
|
8009
|
+
# engine_lifecycle_support: "String",
|
7886
8010
|
# deletion_protection: false,
|
7887
8011
|
# database_name: "String",
|
7888
8012
|
# storage_encrypted: false,
|
@@ -7896,6 +8020,7 @@ module Aws::RDS
|
|
7896
8020
|
# resp.global_cluster.status #=> String
|
7897
8021
|
# resp.global_cluster.engine #=> String
|
7898
8022
|
# resp.global_cluster.engine_version #=> String
|
8023
|
+
# resp.global_cluster.engine_lifecycle_support #=> String
|
7899
8024
|
# resp.global_cluster.database_name #=> String
|
7900
8025
|
# resp.global_cluster.storage_encrypted #=> Boolean
|
7901
8026
|
# resp.global_cluster.deletion_protection #=> Boolean
|
@@ -8928,6 +9053,7 @@ module Aws::RDS
|
|
8928
9053
|
# resp.db_cluster.storage_throughput #=> Integer
|
8929
9054
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
8930
9055
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
9056
|
+
# resp.db_cluster.engine_lifecycle_support #=> String
|
8931
9057
|
#
|
8932
9058
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBCluster AWS API Documentation
|
8933
9059
|
#
|
@@ -9530,6 +9656,7 @@ module Aws::RDS
|
|
9530
9656
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
9531
9657
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
9532
9658
|
# resp.db_instance.multi_tenant #=> Boolean
|
9659
|
+
# resp.db_instance.engine_lifecycle_support #=> String
|
9533
9660
|
#
|
9534
9661
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstance AWS API Documentation
|
9535
9662
|
#
|
@@ -10170,6 +10297,7 @@ module Aws::RDS
|
|
10170
10297
|
# resp.global_cluster.status #=> String
|
10171
10298
|
# resp.global_cluster.engine #=> String
|
10172
10299
|
# resp.global_cluster.engine_version #=> String
|
10300
|
+
# resp.global_cluster.engine_lifecycle_support #=> String
|
10173
10301
|
# resp.global_cluster.database_name #=> String
|
10174
10302
|
# resp.global_cluster.storage_encrypted #=> Boolean
|
10175
10303
|
# resp.global_cluster.deletion_protection #=> Boolean
|
@@ -12357,6 +12485,7 @@ module Aws::RDS
|
|
12357
12485
|
# resp.db_clusters[0].storage_throughput #=> Integer
|
12358
12486
|
# resp.db_clusters[0].certificate_details.ca_identifier #=> String
|
12359
12487
|
# resp.db_clusters[0].certificate_details.valid_till #=> Time
|
12488
|
+
# resp.db_clusters[0].engine_lifecycle_support #=> String
|
12360
12489
|
#
|
12361
12490
|
#
|
12362
12491
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -13100,6 +13229,7 @@ module Aws::RDS
|
|
13100
13229
|
# resp.db_instances[0].dedicated_log_volume #=> Boolean
|
13101
13230
|
# resp.db_instances[0].is_storage_config_upgrade_available #=> Boolean
|
13102
13231
|
# resp.db_instances[0].multi_tenant #=> Boolean
|
13232
|
+
# resp.db_instances[0].engine_lifecycle_support #=> String
|
13103
13233
|
#
|
13104
13234
|
#
|
13105
13235
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -15747,6 +15877,7 @@ module Aws::RDS
|
|
15747
15877
|
# resp.global_clusters[0].status #=> String
|
15748
15878
|
# resp.global_clusters[0].engine #=> String
|
15749
15879
|
# resp.global_clusters[0].engine_version #=> String
|
15880
|
+
# resp.global_clusters[0].engine_lifecycle_support #=> String
|
15750
15881
|
# resp.global_clusters[0].database_name #=> String
|
15751
15882
|
# resp.global_clusters[0].storage_encrypted #=> Boolean
|
15752
15883
|
# resp.global_clusters[0].deletion_protection #=> Boolean
|
@@ -17656,6 +17787,7 @@ module Aws::RDS
|
|
17656
17787
|
# resp.db_cluster.storage_throughput #=> Integer
|
17657
17788
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
17658
17789
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
17790
|
+
# resp.db_cluster.engine_lifecycle_support #=> String
|
17659
17791
|
#
|
17660
17792
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverDBCluster AWS API Documentation
|
17661
17793
|
#
|
@@ -17781,6 +17913,7 @@ module Aws::RDS
|
|
17781
17913
|
# resp.global_cluster.status #=> String
|
17782
17914
|
# resp.global_cluster.engine #=> String
|
17783
17915
|
# resp.global_cluster.engine_version #=> String
|
17916
|
+
# resp.global_cluster.engine_lifecycle_support #=> String
|
17784
17917
|
# resp.global_cluster.database_name #=> String
|
17785
17918
|
# resp.global_cluster.storage_encrypted #=> Boolean
|
17786
17919
|
# resp.global_cluster.deletion_protection #=> Boolean
|
@@ -19338,6 +19471,7 @@ module Aws::RDS
|
|
19338
19471
|
# resp.db_cluster.storage_throughput #=> Integer
|
19339
19472
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
19340
19473
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
19474
|
+
# resp.db_cluster.engine_lifecycle_support #=> String
|
19341
19475
|
#
|
19342
19476
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBCluster AWS API Documentation
|
19343
19477
|
#
|
@@ -21071,6 +21205,7 @@ module Aws::RDS
|
|
21071
21205
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
21072
21206
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
21073
21207
|
# resp.db_instance.multi_tenant #=> Boolean
|
21208
|
+
# resp.db_instance.engine_lifecycle_support #=> String
|
21074
21209
|
#
|
21075
21210
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstance AWS API Documentation
|
21076
21211
|
#
|
@@ -22042,9 +22177,9 @@ module Aws::RDS
|
|
22042
22177
|
# set this parameter to db-instance. For RDS Proxy events, specify
|
22043
22178
|
# `db-proxy`. If this value isn't specified, all events are returned.
|
22044
22179
|
#
|
22045
|
-
# Valid Values
|
22046
|
-
#
|
22047
|
-
#
|
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 `
|
22048
22183
|
#
|
22049
22184
|
# @option params [Array<String>] :event_categories
|
22050
22185
|
# A list of event categories for a source type (`SourceType`) that you
|
@@ -22246,6 +22381,7 @@ module Aws::RDS
|
|
22246
22381
|
# resp.global_cluster.status #=> String
|
22247
22382
|
# resp.global_cluster.engine #=> String
|
22248
22383
|
# resp.global_cluster.engine_version #=> String
|
22384
|
+
# resp.global_cluster.engine_lifecycle_support #=> String
|
22249
22385
|
# resp.global_cluster.database_name #=> String
|
22250
22386
|
# resp.global_cluster.storage_encrypted #=> Boolean
|
22251
22387
|
# resp.global_cluster.deletion_protection #=> Boolean
|
@@ -22855,6 +22991,7 @@ module Aws::RDS
|
|
22855
22991
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
22856
22992
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
22857
22993
|
# resp.db_instance.multi_tenant #=> Boolean
|
22994
|
+
# resp.db_instance.engine_lifecycle_support #=> String
|
22858
22995
|
#
|
22859
22996
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplica AWS API Documentation
|
22860
22997
|
#
|
@@ -23027,6 +23164,7 @@ module Aws::RDS
|
|
23027
23164
|
# resp.db_cluster.storage_throughput #=> Integer
|
23028
23165
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
23029
23166
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
23167
|
+
# resp.db_cluster.engine_lifecycle_support #=> String
|
23030
23168
|
#
|
23031
23169
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplicaDBCluster AWS API Documentation
|
23032
23170
|
#
|
@@ -23322,6 +23460,7 @@ module Aws::RDS
|
|
23322
23460
|
# resp.db_cluster.storage_throughput #=> Integer
|
23323
23461
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
23324
23462
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
23463
|
+
# resp.db_cluster.engine_lifecycle_support #=> String
|
23325
23464
|
#
|
23326
23465
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBCluster AWS API Documentation
|
23327
23466
|
#
|
@@ -23567,6 +23706,7 @@ module Aws::RDS
|
|
23567
23706
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
23568
23707
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
23569
23708
|
# resp.db_instance.multi_tenant #=> Boolean
|
23709
|
+
# resp.db_instance.engine_lifecycle_support #=> String
|
23570
23710
|
#
|
23571
23711
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBInstance AWS API Documentation
|
23572
23712
|
#
|
@@ -23753,6 +23893,7 @@ module Aws::RDS
|
|
23753
23893
|
# resp.global_cluster.status #=> String
|
23754
23894
|
# resp.global_cluster.engine #=> String
|
23755
23895
|
# resp.global_cluster.engine_version #=> String
|
23896
|
+
# resp.global_cluster.engine_lifecycle_support #=> String
|
23756
23897
|
# resp.global_cluster.database_name #=> String
|
23757
23898
|
# resp.global_cluster.storage_encrypted #=> Boolean
|
23758
23899
|
# resp.global_cluster.deletion_protection #=> Boolean
|
@@ -24590,6 +24731,43 @@ module Aws::RDS
|
|
24590
24731
|
#
|
24591
24732
|
# Valid for: Aurora DB clusters only
|
24592
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
|
+
#
|
24593
24771
|
# @return [Types::RestoreDBClusterFromS3Result] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
24594
24772
|
#
|
24595
24773
|
# * {Types::RestoreDBClusterFromS3Result#db_cluster #db_cluster} => Types::DBCluster
|
@@ -24710,6 +24888,7 @@ module Aws::RDS
|
|
24710
24888
|
# manage_master_user_password: false,
|
24711
24889
|
# master_user_secret_kms_key_id: "String",
|
24712
24890
|
# storage_type: "String",
|
24891
|
+
# engine_lifecycle_support: "String",
|
24713
24892
|
# })
|
24714
24893
|
#
|
24715
24894
|
# @example Response structure
|
@@ -24850,6 +25029,7 @@ module Aws::RDS
|
|
24850
25029
|
# resp.db_cluster.storage_throughput #=> Integer
|
24851
25030
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
24852
25031
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
25032
|
+
# resp.db_cluster.engine_lifecycle_support #=> String
|
24853
25033
|
#
|
24854
25034
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3 AWS API Documentation
|
24855
25035
|
#
|
@@ -25308,6 +25488,43 @@ module Aws::RDS
|
|
25308
25488
|
# @option params [Types::RdsCustomClusterConfiguration] :rds_custom_cluster_configuration
|
25309
25489
|
# Reserved for future use.
|
25310
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
|
+
#
|
25311
25528
|
# @return [Types::RestoreDBClusterFromSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
25312
25529
|
#
|
25313
25530
|
# * {Types::RestoreDBClusterFromSnapshotResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -25429,6 +25646,7 @@ module Aws::RDS
|
|
25429
25646
|
# transit_gateway_multicast_domain_id: "String",
|
25430
25647
|
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
25431
25648
|
# },
|
25649
|
+
# engine_lifecycle_support: "String",
|
25432
25650
|
# })
|
25433
25651
|
#
|
25434
25652
|
# @example Response structure
|
@@ -25569,6 +25787,7 @@ module Aws::RDS
|
|
25569
25787
|
# resp.db_cluster.storage_throughput #=> Integer
|
25570
25788
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
25571
25789
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
25790
|
+
# resp.db_cluster.engine_lifecycle_support #=> String
|
25572
25791
|
#
|
25573
25792
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshot AWS API Documentation
|
25574
25793
|
#
|
@@ -26003,6 +26222,43 @@ module Aws::RDS
|
|
26003
26222
|
# @option params [Types::RdsCustomClusterConfiguration] :rds_custom_cluster_configuration
|
26004
26223
|
# Reserved for future use.
|
26005
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
|
+
#
|
26006
26262
|
# @return [Types::RestoreDBClusterToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
26007
26263
|
#
|
26008
26264
|
# * {Types::RestoreDBClusterToPointInTimeResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -26123,6 +26379,7 @@ module Aws::RDS
|
|
26123
26379
|
# transit_gateway_multicast_domain_id: "String",
|
26124
26380
|
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
26125
26381
|
# },
|
26382
|
+
# engine_lifecycle_support: "String",
|
26126
26383
|
# })
|
26127
26384
|
#
|
26128
26385
|
# @example Response structure
|
@@ -26263,6 +26520,7 @@ module Aws::RDS
|
|
26263
26520
|
# resp.db_cluster.storage_throughput #=> Integer
|
26264
26521
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
26265
26522
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
26523
|
+
# resp.db_cluster.engine_lifecycle_support #=> String
|
26266
26524
|
#
|
26267
26525
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTime AWS API Documentation
|
26268
26526
|
#
|
@@ -26816,6 +27074,39 @@ module Aws::RDS
|
|
26816
27074
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
26817
27075
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
26818
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
|
+
#
|
26819
27110
|
# @return [Types::RestoreDBInstanceFromDBSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
26820
27111
|
#
|
26821
27112
|
# * {Types::RestoreDBInstanceFromDBSnapshotResult#db_instance #db_instance} => Types::DBInstance
|
@@ -26912,6 +27203,7 @@ module Aws::RDS
|
|
26912
27203
|
# allocated_storage: 1,
|
26913
27204
|
# dedicated_log_volume: false,
|
26914
27205
|
# ca_certificate_identifier: "String",
|
27206
|
+
# engine_lifecycle_support: "String",
|
26915
27207
|
# })
|
26916
27208
|
#
|
26917
27209
|
# @example Response structure
|
@@ -27076,6 +27368,7 @@ module Aws::RDS
|
|
27076
27368
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
27077
27369
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
27078
27370
|
# resp.db_instance.multi_tenant #=> Boolean
|
27371
|
+
# resp.db_instance.engine_lifecycle_support #=> String
|
27079
27372
|
#
|
27080
27373
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshot AWS API Documentation
|
27081
27374
|
#
|
@@ -27602,6 +27895,39 @@ module Aws::RDS
|
|
27602
27895
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
27603
27896
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
27604
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
|
+
#
|
27605
27931
|
# @return [Types::RestoreDBInstanceFromS3Result] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
27606
27932
|
#
|
27607
27933
|
# * {Types::RestoreDBInstanceFromS3Result#db_instance #db_instance} => Types::DBInstance
|
@@ -27669,6 +27995,7 @@ module Aws::RDS
|
|
27669
27995
|
# master_user_secret_kms_key_id: "String",
|
27670
27996
|
# dedicated_log_volume: false,
|
27671
27997
|
# ca_certificate_identifier: "String",
|
27998
|
+
# engine_lifecycle_support: "String",
|
27672
27999
|
# })
|
27673
28000
|
#
|
27674
28001
|
# @example Response structure
|
@@ -27833,6 +28160,7 @@ module Aws::RDS
|
|
27833
28160
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
27834
28161
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
27835
28162
|
# resp.db_instance.multi_tenant #=> Boolean
|
28163
|
+
# resp.db_instance.engine_lifecycle_support #=> String
|
27836
28164
|
#
|
27837
28165
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3 AWS API Documentation
|
27838
28166
|
#
|
@@ -28402,6 +28730,39 @@ module Aws::RDS
|
|
28402
28730
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
28403
28731
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
28404
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
|
+
#
|
28405
28766
|
# @return [Types::RestoreDBInstanceToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
28406
28767
|
#
|
28407
28768
|
# * {Types::RestoreDBInstanceToPointInTimeResult#db_instance #db_instance} => Types::DBInstance
|
@@ -28561,6 +28922,7 @@ module Aws::RDS
|
|
28561
28922
|
# allocated_storage: 1,
|
28562
28923
|
# dedicated_log_volume: false,
|
28563
28924
|
# ca_certificate_identifier: "String",
|
28925
|
+
# engine_lifecycle_support: "String",
|
28564
28926
|
# })
|
28565
28927
|
#
|
28566
28928
|
# @example Response structure
|
@@ -28725,6 +29087,7 @@ module Aws::RDS
|
|
28725
29087
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
28726
29088
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
28727
29089
|
# resp.db_instance.multi_tenant #=> Boolean
|
29090
|
+
# resp.db_instance.engine_lifecycle_support #=> String
|
28728
29091
|
#
|
28729
29092
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTime AWS API Documentation
|
28730
29093
|
#
|
@@ -29125,6 +29488,7 @@ module Aws::RDS
|
|
29125
29488
|
# resp.db_cluster.storage_throughput #=> Integer
|
29126
29489
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
29127
29490
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
29491
|
+
# resp.db_cluster.engine_lifecycle_support #=> String
|
29128
29492
|
#
|
29129
29493
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBCluster AWS API Documentation
|
29130
29494
|
#
|
@@ -29342,6 +29706,7 @@ module Aws::RDS
|
|
29342
29706
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
29343
29707
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
29344
29708
|
# resp.db_instance.multi_tenant #=> Boolean
|
29709
|
+
# resp.db_instance.engine_lifecycle_support #=> String
|
29345
29710
|
#
|
29346
29711
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstance AWS API Documentation
|
29347
29712
|
#
|
@@ -29966,6 +30331,7 @@ module Aws::RDS
|
|
29966
30331
|
# resp.db_cluster.storage_throughput #=> Integer
|
29967
30332
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
29968
30333
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
30334
|
+
# resp.db_cluster.engine_lifecycle_support #=> String
|
29969
30335
|
#
|
29970
30336
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBCluster AWS API Documentation
|
29971
30337
|
#
|
@@ -30190,6 +30556,7 @@ module Aws::RDS
|
|
30190
30556
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
30191
30557
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
30192
30558
|
# resp.db_instance.multi_tenant #=> Boolean
|
30559
|
+
# resp.db_instance.engine_lifecycle_support #=> String
|
30193
30560
|
#
|
30194
30561
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstance AWS API Documentation
|
30195
30562
|
#
|
@@ -30579,6 +30946,7 @@ module Aws::RDS
|
|
30579
30946
|
# resp.global_cluster.status #=> String
|
30580
30947
|
# resp.global_cluster.engine #=> String
|
30581
30948
|
# resp.global_cluster.engine_version #=> String
|
30949
|
+
# resp.global_cluster.engine_lifecycle_support #=> String
|
30582
30950
|
# resp.global_cluster.database_name #=> String
|
30583
30951
|
# resp.global_cluster.storage_encrypted #=> Boolean
|
30584
30952
|
# resp.global_cluster.deletion_protection #=> Boolean
|
@@ -30790,6 +31158,7 @@ module Aws::RDS
|
|
30790
31158
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
30791
31159
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
30792
31160
|
# resp.db_instance.multi_tenant #=> Boolean
|
31161
|
+
# resp.db_instance.engine_lifecycle_support #=> String
|
30793
31162
|
#
|
30794
31163
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SwitchoverReadReplica AWS API Documentation
|
30795
31164
|
#
|
@@ -30813,7 +31182,7 @@ module Aws::RDS
|
|
30813
31182
|
params: params,
|
30814
31183
|
config: config)
|
30815
31184
|
context[:gem_name] = 'aws-sdk-rds'
|
30816
|
-
context[:gem_version] = '1.
|
31185
|
+
context[:gem_version] = '1.231.0'
|
30817
31186
|
Seahorse::Client::Request.new(handlers, context)
|
30818
31187
|
end
|
30819
31188
|
|