aws-sdk-rds 1.258.0 → 1.260.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +76 -17
- data/lib/aws-sdk-rds/client_api.rb +18 -0
- data/lib/aws-sdk-rds/db_cluster.rb +8 -5
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +1 -0
- data/lib/aws-sdk-rds/db_engine.rb +0 -1
- data/lib/aws-sdk-rds/db_engine_version.rb +11 -0
- data/lib/aws-sdk-rds/db_instance.rb +3 -2
- data/lib/aws-sdk-rds/errors.rb +11 -0
- data/lib/aws-sdk-rds/resource.rb +4 -3
- data/lib/aws-sdk-rds/types.rb +140 -25
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +18 -6
- data/sig/db_cluster.rbs +6 -3
- data/sig/db_cluster_snapshot.rbs +2 -1
- data/sig/db_engine_version.rbs +3 -0
- data/sig/errors.rbs +2 -0
- data/sig/resource.rbs +2 -1
- data/sig/types.rbs +16 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 15e24a9114b6d22257d3abc39f4f008852f664cee5a6e602c4bd073a838eb060
|
4
|
+
data.tar.gz: 23a39ec7ea92390bbc278837725b3ff2ead5a42feab1fed7fbf1982d4f183a1a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b2265d9d45d17e2ec3dbe07fcd13ff002a05ae7b6bbbcfb9c2be754d5f485f110922d41cecd3cc078812fb32cb739b535c28a7785a6f4bd82704343400c54168
|
7
|
+
data.tar.gz: '088dbbe8ecf49633801914673831f585f9af89f3a5dfa36ddf67cd3769ad32aa1b6d8cc9e63004684c9439dafd6847d89a5692dc5e4b6681b54cbebb599b0806'
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.260.0 (2024-11-20)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for scale storage on the DB instance using a Blue/Green Deployment.
|
8
|
+
|
9
|
+
1.259.0 (2024-11-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add support for the automatic pause/resume feature of Aurora Serverless v2.
|
13
|
+
|
4
14
|
1.258.0 (2024-11-12)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.260.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -2075,9 +2075,8 @@ module Aws::RDS
|
|
2075
2075
|
# A blue/green deployment creates a staging environment that copies the
|
2076
2076
|
# production environment. In a blue/green deployment, the blue
|
2077
2077
|
# environment is the current production environment. The green
|
2078
|
-
# environment is the staging environment
|
2079
|
-
#
|
2080
|
-
# replication.
|
2078
|
+
# environment is the staging environment, and it stays in sync with the
|
2079
|
+
# current production environment.
|
2081
2080
|
#
|
2082
2081
|
# You can make changes to the databases in the green environment without
|
2083
2082
|
# affecting production workloads. For example, you can upgrade the major
|
@@ -2160,6 +2159,39 @@ module Aws::RDS
|
|
2160
2159
|
#
|
2161
2160
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.UpgradeFileSystem
|
2162
2161
|
#
|
2162
|
+
# @option params [Integer] :target_iops
|
2163
|
+
# The amount of Provisioned IOPS (input/output operations per second) to
|
2164
|
+
# allocate for the green DB instance. For information about valid IOPS
|
2165
|
+
# values, see [Amazon RDS DB instance storage][1] in the *Amazon RDS
|
2166
|
+
# User Guide*.
|
2167
|
+
#
|
2168
|
+
# This setting doesn't apply to Amazon Aurora blue/green deployments.
|
2169
|
+
#
|
2170
|
+
#
|
2171
|
+
#
|
2172
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html
|
2173
|
+
#
|
2174
|
+
# @option params [String] :target_storage_type
|
2175
|
+
# The storage type to associate with the green DB instance.
|
2176
|
+
#
|
2177
|
+
# Valid Values: `gp2 | gp3 | io1 | io2`
|
2178
|
+
#
|
2179
|
+
# This setting doesn't apply to Amazon Aurora blue/green deployments.
|
2180
|
+
#
|
2181
|
+
# @option params [Integer] :target_allocated_storage
|
2182
|
+
# The amount of storage in gibibytes (GiB) to allocate for the green DB
|
2183
|
+
# instance. You can choose to increase or decrease the allocated storage
|
2184
|
+
# on the green DB instance.
|
2185
|
+
#
|
2186
|
+
# This setting doesn't apply to Amazon Aurora blue/green deployments.
|
2187
|
+
#
|
2188
|
+
# @option params [Integer] :target_storage_throughput
|
2189
|
+
# The storage throughput value for the green DB instance.
|
2190
|
+
#
|
2191
|
+
# This setting applies only to the `gp3` storage type.
|
2192
|
+
#
|
2193
|
+
# This setting doesn't apply to Amazon Aurora blue/green deployments.
|
2194
|
+
#
|
2163
2195
|
# @return [Types::CreateBlueGreenDeploymentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2164
2196
|
#
|
2165
2197
|
# * {Types::CreateBlueGreenDeploymentResponse#blue_green_deployment #blue_green_deployment} => Types::BlueGreenDeployment
|
@@ -2302,6 +2334,10 @@ module Aws::RDS
|
|
2302
2334
|
# ],
|
2303
2335
|
# target_db_instance_class: "TargetDBInstanceClass",
|
2304
2336
|
# upgrade_target_storage_config: false,
|
2337
|
+
# target_iops: 1,
|
2338
|
+
# target_storage_type: "TargetStorageType",
|
2339
|
+
# target_allocated_storage: 1,
|
2340
|
+
# target_storage_throughput: 1,
|
2305
2341
|
# })
|
2306
2342
|
#
|
2307
2343
|
# @example Response structure
|
@@ -2495,6 +2531,7 @@ module Aws::RDS
|
|
2495
2531
|
# * {Types::DBEngineVersion#supported_ca_certificate_identifiers #supported_ca_certificate_identifiers} => Array<String>
|
2496
2532
|
# * {Types::DBEngineVersion#supports_local_write_forwarding #supports_local_write_forwarding} => Boolean
|
2497
2533
|
# * {Types::DBEngineVersion#supports_integrations #supports_integrations} => Boolean
|
2534
|
+
# * {Types::DBEngineVersion#serverless_v2_features_support #serverless_v2_features_support} => Types::ServerlessV2FeaturesSupport
|
2498
2535
|
#
|
2499
2536
|
# @example Request syntax with placeholder values
|
2500
2537
|
#
|
@@ -2579,6 +2616,8 @@ module Aws::RDS
|
|
2579
2616
|
# resp.supported_ca_certificate_identifiers[0] #=> String
|
2580
2617
|
# resp.supports_local_write_forwarding #=> Boolean
|
2581
2618
|
# resp.supports_integrations #=> Boolean
|
2619
|
+
# resp.serverless_v2_features_support.min_capacity #=> Float
|
2620
|
+
# resp.serverless_v2_features_support.max_capacity #=> Float
|
2582
2621
|
#
|
2583
2622
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateCustomDBEngineVersion AWS API Documentation
|
2584
2623
|
#
|
@@ -3726,6 +3765,7 @@ module Aws::RDS
|
|
3726
3765
|
# serverless_v2_scaling_configuration: {
|
3727
3766
|
# min_capacity: 1.0,
|
3728
3767
|
# max_capacity: 1.0,
|
3768
|
+
# seconds_until_auto_pause: 1,
|
3729
3769
|
# },
|
3730
3770
|
# network_type: "String",
|
3731
3771
|
# cluster_scalability_type: "standard", # accepts standard, limitless
|
@@ -3863,6 +3903,7 @@ module Aws::RDS
|
|
3863
3903
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
3864
3904
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
3865
3905
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
3906
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
3866
3907
|
# resp.db_cluster.network_type #=> String
|
3867
3908
|
# resp.db_cluster.db_system_id #=> String
|
3868
3909
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -4349,6 +4390,9 @@ module Aws::RDS
|
|
4349
4390
|
#
|
4350
4391
|
# * Must contain 1 to 64 alphanumeric characters.
|
4351
4392
|
#
|
4393
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
4394
|
+
# underscores, or digits (0-9).
|
4395
|
+
#
|
4352
4396
|
# * Can't be a word reserved by the database engine.
|
4353
4397
|
#
|
4354
4398
|
# Amazon Aurora PostgreSQL
|
@@ -4581,14 +4625,12 @@ module Aws::RDS
|
|
4581
4625
|
# 16384.
|
4582
4626
|
#
|
4583
4627
|
# * Web and Express editions: Must be an integer from 20 to 16384.
|
4584
|
-
#
|
4585
4628
|
# * Provisioned IOPS storage (io1, io2):
|
4586
4629
|
#
|
4587
4630
|
# * Enterprise and Standard editions: Must be an integer from 100 to
|
4588
4631
|
# 16384.
|
4589
4632
|
#
|
4590
4633
|
# * Web and Express editions: Must be an integer from 100 to 16384.
|
4591
|
-
#
|
4592
4634
|
# * Magnetic storage (standard):
|
4593
4635
|
#
|
4594
4636
|
# * Enterprise and Standard editions: Must be an integer from 20 to
|
@@ -8915,6 +8957,7 @@ module Aws::RDS
|
|
8915
8957
|
# * {Types::DBEngineVersion#supported_ca_certificate_identifiers #supported_ca_certificate_identifiers} => Array<String>
|
8916
8958
|
# * {Types::DBEngineVersion#supports_local_write_forwarding #supports_local_write_forwarding} => Boolean
|
8917
8959
|
# * {Types::DBEngineVersion#supports_integrations #supports_integrations} => Boolean
|
8960
|
+
# * {Types::DBEngineVersion#serverless_v2_features_support #serverless_v2_features_support} => Types::ServerlessV2FeaturesSupport
|
8918
8961
|
#
|
8919
8962
|
# @example Request syntax with placeholder values
|
8920
8963
|
#
|
@@ -8985,6 +9028,8 @@ module Aws::RDS
|
|
8985
9028
|
# resp.supported_ca_certificate_identifiers[0] #=> String
|
8986
9029
|
# resp.supports_local_write_forwarding #=> Boolean
|
8987
9030
|
# resp.supports_integrations #=> Boolean
|
9031
|
+
# resp.serverless_v2_features_support.min_capacity #=> Float
|
9032
|
+
# resp.serverless_v2_features_support.max_capacity #=> Float
|
8988
9033
|
#
|
8989
9034
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteCustomDBEngineVersion AWS API Documentation
|
8990
9035
|
#
|
@@ -9229,6 +9274,7 @@ module Aws::RDS
|
|
9229
9274
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
9230
9275
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
9231
9276
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
9277
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
9232
9278
|
# resp.db_cluster.network_type #=> String
|
9233
9279
|
# resp.db_cluster.db_system_id #=> String
|
9234
9280
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -11357,7 +11403,6 @@ module Aws::RDS
|
|
11357
11403
|
# backup replication is stopped.
|
11358
11404
|
#
|
11359
11405
|
# ^
|
11360
|
-
#
|
11361
11406
|
# * `db-cluster-id` - Accepts DB cluster identifiers and Amazon Resource
|
11362
11407
|
# Names (ARNs). The results list includes only information about the
|
11363
11408
|
# DB cluster automated backups identified by these ARNs.
|
@@ -11505,7 +11550,6 @@ module Aws::RDS
|
|
11505
11550
|
# * `failed`
|
11506
11551
|
#
|
11507
11552
|
# * `pending`
|
11508
|
-
#
|
11509
11553
|
# The results list includes information about only the backtracks
|
11510
11554
|
# identified by these values.
|
11511
11555
|
#
|
@@ -12674,6 +12718,7 @@ module Aws::RDS
|
|
12674
12718
|
# resp.db_clusters[0].performance_insights_retention_period #=> Integer
|
12675
12719
|
# resp.db_clusters[0].serverless_v2_scaling_configuration.min_capacity #=> Float
|
12676
12720
|
# resp.db_clusters[0].serverless_v2_scaling_configuration.max_capacity #=> Float
|
12721
|
+
# resp.db_clusters[0].serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
12677
12722
|
# resp.db_clusters[0].network_type #=> String
|
12678
12723
|
# resp.db_clusters[0].db_system_id #=> String
|
12679
12724
|
# resp.db_clusters[0].master_user_secret.secret_arn #=> String
|
@@ -12790,7 +12835,6 @@ module Aws::RDS
|
|
12790
12835
|
# * `provisioned`
|
12791
12836
|
#
|
12792
12837
|
# * `serverless`
|
12793
|
-
#
|
12794
12838
|
# * `engine-version` - Accepts engine versions. The results list only
|
12795
12839
|
# includes information about the DB engine versions for these engine
|
12796
12840
|
# versions.
|
@@ -12977,6 +13021,8 @@ module Aws::RDS
|
|
12977
13021
|
# resp.db_engine_versions[0].supported_ca_certificate_identifiers[0] #=> String
|
12978
13022
|
# resp.db_engine_versions[0].supports_local_write_forwarding #=> Boolean
|
12979
13023
|
# resp.db_engine_versions[0].supports_integrations #=> Boolean
|
13024
|
+
# resp.db_engine_versions[0].serverless_v2_features_support.min_capacity #=> Float
|
13025
|
+
# resp.db_engine_versions[0].serverless_v2_features_support.max_capacity #=> Float
|
12980
13026
|
#
|
12981
13027
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBEngineVersions AWS API Documentation
|
12982
13028
|
#
|
@@ -13020,7 +13066,6 @@ module Aws::RDS
|
|
13020
13066
|
#
|
13021
13067
|
# * `retained` - Automated backups for deleted instances and after
|
13022
13068
|
# backup replication is stopped.
|
13023
|
-
#
|
13024
13069
|
# * `db-instance-id` - Accepts DB instance identifiers and Amazon
|
13025
13070
|
# Resource Names (ARNs). The results list includes only information
|
13026
13071
|
# about the DB instance automated backups identified by these ARNs.
|
@@ -14178,7 +14223,6 @@ module Aws::RDS
|
|
14178
14223
|
# * `resolved` - The recommendations which are completed.
|
14179
14224
|
#
|
14180
14225
|
# * `dismissed` - The recommendations that you dismissed.
|
14181
|
-
#
|
14182
14226
|
# The results list only includes the recommendations whose status is
|
14183
14227
|
# one of the specified filter values.
|
14184
14228
|
#
|
@@ -14195,7 +14239,6 @@ module Aws::RDS
|
|
14195
14239
|
# * `low`
|
14196
14240
|
#
|
14197
14241
|
# * `informational`
|
14198
|
-
#
|
14199
14242
|
# * `type-id` - Accepts a list of recommendation type identifiers. The
|
14200
14243
|
# results list only includes the recommendations whose type is one of
|
14201
14244
|
# the specified filter values.
|
@@ -17991,6 +18034,7 @@ module Aws::RDS
|
|
17991
18034
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
17992
18035
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
17993
18036
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
18037
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
17994
18038
|
# resp.db_cluster.network_type #=> String
|
17995
18039
|
# resp.db_cluster.db_system_id #=> String
|
17996
18040
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -18623,6 +18667,7 @@ module Aws::RDS
|
|
18623
18667
|
# * {Types::DBEngineVersion#supported_ca_certificate_identifiers #supported_ca_certificate_identifiers} => Array<String>
|
18624
18668
|
# * {Types::DBEngineVersion#supports_local_write_forwarding #supports_local_write_forwarding} => Boolean
|
18625
18669
|
# * {Types::DBEngineVersion#supports_integrations #supports_integrations} => Boolean
|
18670
|
+
# * {Types::DBEngineVersion#serverless_v2_features_support #serverless_v2_features_support} => Types::ServerlessV2FeaturesSupport
|
18626
18671
|
#
|
18627
18672
|
# @example Request syntax with placeholder values
|
18628
18673
|
#
|
@@ -18695,6 +18740,8 @@ module Aws::RDS
|
|
18695
18740
|
# resp.supported_ca_certificate_identifiers[0] #=> String
|
18696
18741
|
# resp.supports_local_write_forwarding #=> Boolean
|
18697
18742
|
# resp.supports_integrations #=> Boolean
|
18743
|
+
# resp.serverless_v2_features_support.min_capacity #=> Float
|
18744
|
+
# resp.serverless_v2_features_support.max_capacity #=> Float
|
18698
18745
|
#
|
18699
18746
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyCustomDBEngineVersion AWS API Documentation
|
18700
18747
|
#
|
@@ -18749,11 +18796,11 @@ module Aws::RDS
|
|
18749
18796
|
# Example: `my-cluster2`
|
18750
18797
|
#
|
18751
18798
|
# @option params [Boolean] :apply_immediately
|
18752
|
-
# Specifies whether the modifications in this request
|
18753
|
-
#
|
18754
|
-
#
|
18755
|
-
#
|
18756
|
-
#
|
18799
|
+
# Specifies whether the modifications in this request are asynchronously
|
18800
|
+
# applied as soon as possible, regardless of the
|
18801
|
+
# `PreferredMaintenanceWindow` setting for the DB cluster. If this
|
18802
|
+
# parameter is disabled, changes to the DB cluster are applied during
|
18803
|
+
# the next maintenance window.
|
18757
18804
|
#
|
18758
18805
|
# Most modifications can be applied immediately or during the next
|
18759
18806
|
# scheduled maintenance window. Some modifications, such as turning on
|
@@ -19552,6 +19599,7 @@ module Aws::RDS
|
|
19552
19599
|
# serverless_v2_scaling_configuration: {
|
19553
19600
|
# min_capacity: 1.0,
|
19554
19601
|
# max_capacity: 1.0,
|
19602
|
+
# seconds_until_auto_pause: 1,
|
19555
19603
|
# },
|
19556
19604
|
# network_type: "String",
|
19557
19605
|
# manage_master_user_password: false,
|
@@ -19690,6 +19738,7 @@ module Aws::RDS
|
|
19690
19738
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
19691
19739
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
19692
19740
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
19741
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
19693
19742
|
# resp.db_cluster.network_type #=> String
|
19694
19743
|
# resp.db_cluster.db_system_id #=> String
|
19695
19744
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -23416,6 +23465,7 @@ module Aws::RDS
|
|
23416
23465
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
23417
23466
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
23418
23467
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
23468
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
23419
23469
|
# resp.db_cluster.network_type #=> String
|
23420
23470
|
# resp.db_cluster.db_system_id #=> String
|
23421
23471
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -23717,6 +23767,7 @@ module Aws::RDS
|
|
23717
23767
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
23718
23768
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
23719
23769
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
23770
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
23720
23771
|
# resp.db_cluster.network_type #=> String
|
23721
23772
|
# resp.db_cluster.db_system_id #=> String
|
23722
23773
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -25172,6 +25223,7 @@ module Aws::RDS
|
|
25172
25223
|
# serverless_v2_scaling_configuration: {
|
25173
25224
|
# min_capacity: 1.0,
|
25174
25225
|
# max_capacity: 1.0,
|
25226
|
+
# seconds_until_auto_pause: 1,
|
25175
25227
|
# },
|
25176
25228
|
# network_type: "String",
|
25177
25229
|
# manage_master_user_password: false,
|
@@ -25305,6 +25357,7 @@ module Aws::RDS
|
|
25305
25357
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
25306
25358
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
25307
25359
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
25360
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
25308
25361
|
# resp.db_cluster.network_type #=> String
|
25309
25362
|
# resp.db_cluster.db_system_id #=> String
|
25310
25363
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -25984,6 +26037,7 @@ module Aws::RDS
|
|
25984
26037
|
# serverless_v2_scaling_configuration: {
|
25985
26038
|
# min_capacity: 1.0,
|
25986
26039
|
# max_capacity: 1.0,
|
26040
|
+
# seconds_until_auto_pause: 1,
|
25987
26041
|
# },
|
25988
26042
|
# network_type: "String",
|
25989
26043
|
# rds_custom_cluster_configuration: {
|
@@ -26124,6 +26178,7 @@ module Aws::RDS
|
|
26124
26178
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
26125
26179
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
26126
26180
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
26181
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
26127
26182
|
# resp.db_cluster.network_type #=> String
|
26128
26183
|
# resp.db_cluster.db_system_id #=> String
|
26129
26184
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -26781,6 +26836,7 @@ module Aws::RDS
|
|
26781
26836
|
# serverless_v2_scaling_configuration: {
|
26782
26837
|
# min_capacity: 1.0,
|
26783
26838
|
# max_capacity: 1.0,
|
26839
|
+
# seconds_until_auto_pause: 1,
|
26784
26840
|
# },
|
26785
26841
|
# network_type: "String",
|
26786
26842
|
# source_db_cluster_resource_id: "String",
|
@@ -26922,6 +26978,7 @@ module Aws::RDS
|
|
26922
26978
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
26923
26979
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
26924
26980
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
26981
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
26925
26982
|
# resp.db_cluster.network_type #=> String
|
26926
26983
|
# resp.db_cluster.db_system_id #=> String
|
26927
26984
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -29970,6 +30027,7 @@ module Aws::RDS
|
|
29970
30027
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
29971
30028
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
29972
30029
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
30030
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
29973
30031
|
# resp.db_cluster.network_type #=> String
|
29974
30032
|
# resp.db_cluster.db_system_id #=> String
|
29975
30033
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -30812,6 +30870,7 @@ module Aws::RDS
|
|
30812
30870
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
30813
30871
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
30814
30872
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
30873
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
30815
30874
|
# resp.db_cluster.network_type #=> String
|
30816
30875
|
# resp.db_cluster.db_system_id #=> String
|
30817
30876
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -31686,7 +31745,7 @@ module Aws::RDS
|
|
31686
31745
|
tracer: tracer
|
31687
31746
|
)
|
31688
31747
|
context[:gem_name] = 'aws-sdk-rds'
|
31689
|
-
context[:gem_version] = '1.
|
31748
|
+
context[:gem_version] = '1.260.0'
|
31690
31749
|
Seahorse::Client::Request.new(handlers, context)
|
31691
31750
|
end
|
31692
31751
|
|
@@ -197,6 +197,7 @@ module Aws::RDS
|
|
197
197
|
DBInstanceList = Shapes::ListShape.new(name: 'DBInstanceList')
|
198
198
|
DBInstanceMessage = Shapes::StructureShape.new(name: 'DBInstanceMessage')
|
199
199
|
DBInstanceNotFoundFault = Shapes::StructureShape.new(name: 'DBInstanceNotFoundFault', error: {"code"=>"DBInstanceNotFound", "httpStatusCode"=>404, "senderFault"=>true})
|
200
|
+
DBInstanceNotReadyFault = Shapes::StructureShape.new(name: 'DBInstanceNotReadyFault', error: {"code"=>"DBInstanceNotReady", "httpStatusCode"=>503})
|
200
201
|
DBInstanceRole = Shapes::StructureShape.new(name: 'DBInstanceRole')
|
201
202
|
DBInstanceRoleAlreadyExistsFault = Shapes::StructureShape.new(name: 'DBInstanceRoleAlreadyExistsFault', error: {"code"=>"DBInstanceRoleAlreadyExists", "httpStatusCode"=>400, "senderFault"=>true})
|
202
203
|
DBInstanceRoleNotFoundFault = Shapes::StructureShape.new(name: 'DBInstanceRoleNotFoundFault', error: {"code"=>"DBInstanceRoleNotFound", "httpStatusCode"=>404, "senderFault"=>true})
|
@@ -667,6 +668,7 @@ module Aws::RDS
|
|
667
668
|
ScalingConfiguration = Shapes::StructureShape.new(name: 'ScalingConfiguration')
|
668
669
|
ScalingConfigurationInfo = Shapes::StructureShape.new(name: 'ScalingConfigurationInfo')
|
669
670
|
SensitiveString = Shapes::StringShape.new(name: 'SensitiveString')
|
671
|
+
ServerlessV2FeaturesSupport = Shapes::StructureShape.new(name: 'ServerlessV2FeaturesSupport')
|
670
672
|
ServerlessV2ScalingConfiguration = Shapes::StructureShape.new(name: 'ServerlessV2ScalingConfiguration')
|
671
673
|
ServerlessV2ScalingConfigurationInfo = Shapes::StructureShape.new(name: 'ServerlessV2ScalingConfigurationInfo')
|
672
674
|
SharedSnapshotQuotaExceededFault = Shapes::StructureShape.new(name: 'SharedSnapshotQuotaExceededFault', error: {"code"=>"SharedSnapshotQuotaExceeded", "httpStatusCode"=>400, "senderFault"=>true})
|
@@ -736,6 +738,7 @@ module Aws::RDS
|
|
736
738
|
TargetList = Shapes::ListShape.new(name: 'TargetList')
|
737
739
|
TargetRole = Shapes::StringShape.new(name: 'TargetRole')
|
738
740
|
TargetState = Shapes::StringShape.new(name: 'TargetState')
|
741
|
+
TargetStorageType = Shapes::StringShape.new(name: 'TargetStorageType')
|
739
742
|
TargetType = Shapes::StringShape.new(name: 'TargetType')
|
740
743
|
TenantDatabase = Shapes::StructureShape.new(name: 'TenantDatabase')
|
741
744
|
TenantDatabaseAlreadyExistsFault = Shapes::StructureShape.new(name: 'TenantDatabaseAlreadyExistsFault', error: {"code"=>"TenantDatabaseAlreadyExists", "httpStatusCode"=>400, "senderFault"=>true})
|
@@ -997,6 +1000,10 @@ module Aws::RDS
|
|
997
1000
|
CreateBlueGreenDeploymentRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
998
1001
|
CreateBlueGreenDeploymentRequest.add_member(:target_db_instance_class, Shapes::ShapeRef.new(shape: TargetDBInstanceClass, location_name: "TargetDBInstanceClass"))
|
999
1002
|
CreateBlueGreenDeploymentRequest.add_member(:upgrade_target_storage_config, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "UpgradeTargetStorageConfig"))
|
1003
|
+
CreateBlueGreenDeploymentRequest.add_member(:target_iops, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "TargetIops"))
|
1004
|
+
CreateBlueGreenDeploymentRequest.add_member(:target_storage_type, Shapes::ShapeRef.new(shape: TargetStorageType, location_name: "TargetStorageType"))
|
1005
|
+
CreateBlueGreenDeploymentRequest.add_member(:target_allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "TargetAllocatedStorage"))
|
1006
|
+
CreateBlueGreenDeploymentRequest.add_member(:target_storage_throughput, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "TargetStorageThroughput"))
|
1000
1007
|
CreateBlueGreenDeploymentRequest.struct_class = Types::CreateBlueGreenDeploymentRequest
|
1001
1008
|
|
1002
1009
|
CreateBlueGreenDeploymentResponse.add_member(:blue_green_deployment, Shapes::ShapeRef.new(shape: BlueGreenDeployment, location_name: "BlueGreenDeployment"))
|
@@ -1678,6 +1685,7 @@ module Aws::RDS
|
|
1678
1685
|
DBEngineVersion.add_member(:supported_ca_certificate_identifiers, Shapes::ShapeRef.new(shape: CACertificateIdentifiersList, location_name: "SupportedCACertificateIdentifiers"))
|
1679
1686
|
DBEngineVersion.add_member(:supports_local_write_forwarding, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsLocalWriteForwarding"))
|
1680
1687
|
DBEngineVersion.add_member(:supports_integrations, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsIntegrations"))
|
1688
|
+
DBEngineVersion.add_member(:serverless_v2_features_support, Shapes::ShapeRef.new(shape: ServerlessV2FeaturesSupport, location_name: "ServerlessV2FeaturesSupport"))
|
1681
1689
|
DBEngineVersion.struct_class = Types::DBEngineVersion
|
1682
1690
|
|
1683
1691
|
DBEngineVersionList.member = Shapes::ShapeRef.new(shape: DBEngineVersion, location_name: "DBEngineVersion")
|
@@ -1832,6 +1840,8 @@ module Aws::RDS
|
|
1832
1840
|
|
1833
1841
|
DBInstanceNotFoundFault.struct_class = Types::DBInstanceNotFoundFault
|
1834
1842
|
|
1843
|
+
DBInstanceNotReadyFault.struct_class = Types::DBInstanceNotReadyFault
|
1844
|
+
|
1835
1845
|
DBInstanceRole.add_member(:role_arn, Shapes::ShapeRef.new(shape: String, location_name: "RoleArn"))
|
1836
1846
|
DBInstanceRole.add_member(:feature_name, Shapes::ShapeRef.new(shape: String, location_name: "FeatureName"))
|
1837
1847
|
DBInstanceRole.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
|
@@ -4056,12 +4066,18 @@ module Aws::RDS
|
|
4056
4066
|
ScalingConfigurationInfo.add_member(:seconds_before_timeout, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "SecondsBeforeTimeout"))
|
4057
4067
|
ScalingConfigurationInfo.struct_class = Types::ScalingConfigurationInfo
|
4058
4068
|
|
4069
|
+
ServerlessV2FeaturesSupport.add_member(:min_capacity, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MinCapacity"))
|
4070
|
+
ServerlessV2FeaturesSupport.add_member(:max_capacity, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MaxCapacity"))
|
4071
|
+
ServerlessV2FeaturesSupport.struct_class = Types::ServerlessV2FeaturesSupport
|
4072
|
+
|
4059
4073
|
ServerlessV2ScalingConfiguration.add_member(:min_capacity, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MinCapacity"))
|
4060
4074
|
ServerlessV2ScalingConfiguration.add_member(:max_capacity, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MaxCapacity"))
|
4075
|
+
ServerlessV2ScalingConfiguration.add_member(:seconds_until_auto_pause, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "SecondsUntilAutoPause"))
|
4061
4076
|
ServerlessV2ScalingConfiguration.struct_class = Types::ServerlessV2ScalingConfiguration
|
4062
4077
|
|
4063
4078
|
ServerlessV2ScalingConfigurationInfo.add_member(:min_capacity, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MinCapacity"))
|
4064
4079
|
ServerlessV2ScalingConfigurationInfo.add_member(:max_capacity, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MaxCapacity"))
|
4080
|
+
ServerlessV2ScalingConfigurationInfo.add_member(:seconds_until_auto_pause, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "SecondsUntilAutoPause"))
|
4065
4081
|
ServerlessV2ScalingConfigurationInfo.struct_class = Types::ServerlessV2ScalingConfigurationInfo
|
4066
4082
|
|
4067
4083
|
SharedSnapshotQuotaExceededFault.struct_class = Types::SharedSnapshotQuotaExceededFault
|
@@ -5255,6 +5271,7 @@ module Aws::RDS
|
|
5255
5271
|
o.input = Shapes::ShapeRef.new(shape: DescribeDBLogFilesMessage)
|
5256
5272
|
o.output = Shapes::ShapeRef.new(shape: DescribeDBLogFilesResponse)
|
5257
5273
|
o.errors << Shapes::ShapeRef.new(shape: DBInstanceNotFoundFault)
|
5274
|
+
o.errors << Shapes::ShapeRef.new(shape: DBInstanceNotReadyFault)
|
5258
5275
|
o[:pager] = Aws::Pager.new(
|
5259
5276
|
limit_key: "max_records",
|
5260
5277
|
tokens: {
|
@@ -5700,6 +5717,7 @@ module Aws::RDS
|
|
5700
5717
|
o.input = Shapes::ShapeRef.new(shape: DownloadDBLogFilePortionMessage)
|
5701
5718
|
o.output = Shapes::ShapeRef.new(shape: DownloadDBLogFilePortionDetails)
|
5702
5719
|
o.errors << Shapes::ShapeRef.new(shape: DBInstanceNotFoundFault)
|
5720
|
+
o.errors << Shapes::ShapeRef.new(shape: DBInstanceNotReadyFault)
|
5703
5721
|
o.errors << Shapes::ShapeRef.new(shape: DBLogFileNotFoundFault)
|
5704
5722
|
o[:pager] = Aws::Pager.new(
|
5705
5723
|
more_results: "additional_data_pending",
|
@@ -939,6 +939,7 @@ module Aws::RDS
|
|
939
939
|
# serverless_v2_scaling_configuration: {
|
940
940
|
# min_capacity: 1.0,
|
941
941
|
# max_capacity: 1.0,
|
942
|
+
# seconds_until_auto_pause: 1,
|
942
943
|
# },
|
943
944
|
# network_type: "String",
|
944
945
|
# cluster_scalability_type: "standard", # accepts standard, limitless
|
@@ -1975,6 +1976,7 @@ module Aws::RDS
|
|
1975
1976
|
# serverless_v2_scaling_configuration: {
|
1976
1977
|
# min_capacity: 1.0,
|
1977
1978
|
# max_capacity: 1.0,
|
1979
|
+
# seconds_until_auto_pause: 1,
|
1978
1980
|
# },
|
1979
1981
|
# network_type: "String",
|
1980
1982
|
# manage_master_user_password: false,
|
@@ -2004,11 +2006,11 @@ module Aws::RDS
|
|
2004
2006
|
#
|
2005
2007
|
# Example: `my-cluster2`
|
2006
2008
|
# @option options [Boolean] :apply_immediately
|
2007
|
-
# Specifies whether the modifications in this request
|
2008
|
-
#
|
2009
|
-
#
|
2010
|
-
#
|
2011
|
-
#
|
2009
|
+
# Specifies whether the modifications in this request are asynchronously
|
2010
|
+
# applied as soon as possible, regardless of the
|
2011
|
+
# `PreferredMaintenanceWindow` setting for the DB cluster. If this
|
2012
|
+
# parameter is disabled, changes to the DB cluster are applied during
|
2013
|
+
# the next maintenance window.
|
2012
2014
|
#
|
2013
2015
|
# Most modifications can be applied immediately or during the next
|
2014
2016
|
# scheduled maintenance window. Some modifications, such as turning on
|
@@ -2690,6 +2692,7 @@ module Aws::RDS
|
|
2690
2692
|
# serverless_v2_scaling_configuration: {
|
2691
2693
|
# min_capacity: 1.0,
|
2692
2694
|
# max_capacity: 1.0,
|
2695
|
+
# seconds_until_auto_pause: 1,
|
2693
2696
|
# },
|
2694
2697
|
# network_type: "String",
|
2695
2698
|
# source_db_cluster_resource_id: "String",
|
@@ -306,6 +306,17 @@ module Aws::RDS
|
|
306
306
|
data[:supports_integrations]
|
307
307
|
end
|
308
308
|
|
309
|
+
# Specifies any Aurora Serverless v2 properties or limits that differ
|
310
|
+
# between Aurora engine versions. You can test the values of this
|
311
|
+
# attribute when deciding which Aurora version to use in a new or
|
312
|
+
# upgraded DB cluster. You can also retrieve the version of an existing
|
313
|
+
# DB cluster and check whether that version supports certain Aurora
|
314
|
+
# Serverless v2 features before you attempt to use those features.
|
315
|
+
# @return [Types::ServerlessV2FeaturesSupport]
|
316
|
+
def serverless_v2_features_support
|
317
|
+
data[:serverless_v2_features_support]
|
318
|
+
end
|
319
|
+
|
309
320
|
# @!endgroup
|
310
321
|
|
311
322
|
# @return [Client]
|
@@ -1029,6 +1029,9 @@ module Aws::RDS
|
|
1029
1029
|
#
|
1030
1030
|
# * Must contain 1 to 64 alphanumeric characters.
|
1031
1031
|
#
|
1032
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
1033
|
+
# underscores, or digits (0-9).
|
1034
|
+
#
|
1032
1035
|
# * Can't be a word reserved by the database engine.
|
1033
1036
|
#
|
1034
1037
|
# Amazon Aurora PostgreSQL
|
@@ -1246,14 +1249,12 @@ module Aws::RDS
|
|
1246
1249
|
# 16384.
|
1247
1250
|
#
|
1248
1251
|
# * Web and Express editions: Must be an integer from 20 to 16384.
|
1249
|
-
#
|
1250
1252
|
# * Provisioned IOPS storage (io1, io2):
|
1251
1253
|
#
|
1252
1254
|
# * Enterprise and Standard editions: Must be an integer from 100 to
|
1253
1255
|
# 16384.
|
1254
1256
|
#
|
1255
1257
|
# * Web and Express editions: Must be an integer from 100 to 16384.
|
1256
|
-
#
|
1257
1258
|
# * Magnetic storage (standard):
|
1258
1259
|
#
|
1259
1260
|
# * Enterprise and Standard editions: Must be an integer from 20 to
|
data/lib/aws-sdk-rds/errors.rb
CHANGED
@@ -58,6 +58,7 @@ module Aws::RDS
|
|
58
58
|
# * {DBInstanceAutomatedBackupNotFoundFault}
|
59
59
|
# * {DBInstanceAutomatedBackupQuotaExceededFault}
|
60
60
|
# * {DBInstanceNotFoundFault}
|
61
|
+
# * {DBInstanceNotReadyFault}
|
61
62
|
# * {DBInstanceRoleAlreadyExistsFault}
|
62
63
|
# * {DBInstanceRoleNotFoundFault}
|
63
64
|
# * {DBInstanceRoleQuotaExceededFault}
|
@@ -488,6 +489,16 @@ module Aws::RDS
|
|
488
489
|
end
|
489
490
|
end
|
490
491
|
|
492
|
+
class DBInstanceNotReadyFault < ServiceError
|
493
|
+
|
494
|
+
# @param [Seahorse::Client::RequestContext] context
|
495
|
+
# @param [String] message
|
496
|
+
# @param [Aws::RDS::Types::DBInstanceNotReadyFault] data
|
497
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
498
|
+
super(context, message, data)
|
499
|
+
end
|
500
|
+
end
|
501
|
+
|
491
502
|
class DBInstanceRoleAlreadyExistsFault < ServiceError
|
492
503
|
|
493
504
|
# @param [Seahorse::Client::RequestContext] context
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -103,6 +103,7 @@ module Aws::RDS
|
|
103
103
|
# serverless_v2_scaling_configuration: {
|
104
104
|
# min_capacity: 1.0,
|
105
105
|
# max_capacity: 1.0,
|
106
|
+
# seconds_until_auto_pause: 1,
|
106
107
|
# },
|
107
108
|
# network_type: "String",
|
108
109
|
# cluster_scalability_type: "standard", # accepts standard, limitless
|
@@ -1166,6 +1167,9 @@ module Aws::RDS
|
|
1166
1167
|
#
|
1167
1168
|
# * Must contain 1 to 64 alphanumeric characters.
|
1168
1169
|
#
|
1170
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
1171
|
+
# underscores, or digits (0-9).
|
1172
|
+
#
|
1169
1173
|
# * Can't be a word reserved by the database engine.
|
1170
1174
|
#
|
1171
1175
|
# Amazon Aurora PostgreSQL
|
@@ -1396,14 +1400,12 @@ module Aws::RDS
|
|
1396
1400
|
# 16384.
|
1397
1401
|
#
|
1398
1402
|
# * Web and Express editions: Must be an integer from 20 to 16384.
|
1399
|
-
#
|
1400
1403
|
# * Provisioned IOPS storage (io1, io2):
|
1401
1404
|
#
|
1402
1405
|
# * Enterprise and Standard editions: Must be an integer from 100 to
|
1403
1406
|
# 16384.
|
1404
1407
|
#
|
1405
1408
|
# * Web and Express editions: Must be an integer from 100 to 16384.
|
1406
|
-
#
|
1407
1409
|
# * Magnetic storage (standard):
|
1408
1410
|
#
|
1409
1411
|
# * Enterprise and Standard editions: Must be an integer from 20 to
|
@@ -3102,7 +3104,6 @@ module Aws::RDS
|
|
3102
3104
|
# * `provisioned`
|
3103
3105
|
#
|
3104
3106
|
# * `serverless`
|
3105
|
-
#
|
3106
3107
|
# * `engine-version` - Accepts engine versions. The results list only
|
3107
3108
|
# includes information about the DB engine versions for these engine
|
3108
3109
|
# versions.
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -1860,6 +1860,43 @@ module Aws::RDS
|
|
1860
1860
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.UpgradeFileSystem
|
1861
1861
|
# @return [Boolean]
|
1862
1862
|
#
|
1863
|
+
# @!attribute [rw] target_iops
|
1864
|
+
# The amount of Provisioned IOPS (input/output operations per second)
|
1865
|
+
# to allocate for the green DB instance. For information about valid
|
1866
|
+
# IOPS values, see [Amazon RDS DB instance storage][1] in the *Amazon
|
1867
|
+
# RDS User Guide*.
|
1868
|
+
#
|
1869
|
+
# This setting doesn't apply to Amazon Aurora blue/green deployments.
|
1870
|
+
#
|
1871
|
+
#
|
1872
|
+
#
|
1873
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html
|
1874
|
+
# @return [Integer]
|
1875
|
+
#
|
1876
|
+
# @!attribute [rw] target_storage_type
|
1877
|
+
# The storage type to associate with the green DB instance.
|
1878
|
+
#
|
1879
|
+
# Valid Values: `gp2 | gp3 | io1 | io2`
|
1880
|
+
#
|
1881
|
+
# This setting doesn't apply to Amazon Aurora blue/green deployments.
|
1882
|
+
# @return [String]
|
1883
|
+
#
|
1884
|
+
# @!attribute [rw] target_allocated_storage
|
1885
|
+
# The amount of storage in gibibytes (GiB) to allocate for the green
|
1886
|
+
# DB instance. You can choose to increase or decrease the allocated
|
1887
|
+
# storage on the green DB instance.
|
1888
|
+
#
|
1889
|
+
# This setting doesn't apply to Amazon Aurora blue/green deployments.
|
1890
|
+
# @return [Integer]
|
1891
|
+
#
|
1892
|
+
# @!attribute [rw] target_storage_throughput
|
1893
|
+
# The storage throughput value for the green DB instance.
|
1894
|
+
#
|
1895
|
+
# This setting applies only to the `gp3` storage type.
|
1896
|
+
#
|
1897
|
+
# This setting doesn't apply to Amazon Aurora blue/green deployments.
|
1898
|
+
# @return [Integer]
|
1899
|
+
#
|
1863
1900
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateBlueGreenDeploymentRequest AWS API Documentation
|
1864
1901
|
#
|
1865
1902
|
class CreateBlueGreenDeploymentRequest < Struct.new(
|
@@ -1870,7 +1907,11 @@ module Aws::RDS
|
|
1870
1907
|
:target_db_cluster_parameter_group_name,
|
1871
1908
|
:tags,
|
1872
1909
|
:target_db_instance_class,
|
1873
|
-
:upgrade_target_storage_config
|
1910
|
+
:upgrade_target_storage_config,
|
1911
|
+
:target_iops,
|
1912
|
+
:target_storage_type,
|
1913
|
+
:target_allocated_storage,
|
1914
|
+
:target_storage_throughput)
|
1874
1915
|
SENSITIVE = []
|
1875
1916
|
include Aws::Structure
|
1876
1917
|
end
|
@@ -3344,6 +3385,9 @@ module Aws::RDS
|
|
3344
3385
|
#
|
3345
3386
|
# * Must contain 1 to 64 alphanumeric characters.
|
3346
3387
|
#
|
3388
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
3389
|
+
# underscores, or digits (0-9).
|
3390
|
+
#
|
3347
3391
|
# * Can't be a word reserved by the database engine.
|
3348
3392
|
#
|
3349
3393
|
# Amazon Aurora PostgreSQL
|
@@ -3580,7 +3624,6 @@ module Aws::RDS
|
|
3580
3624
|
# to 16384.
|
3581
3625
|
#
|
3582
3626
|
# * Web and Express editions: Must be an integer from 20 to 16384.
|
3583
|
-
#
|
3584
3627
|
# * Provisioned IOPS storage (io1, io2):
|
3585
3628
|
#
|
3586
3629
|
# * Enterprise and Standard editions: Must be an integer from 100
|
@@ -3588,7 +3631,6 @@ module Aws::RDS
|
|
3588
3631
|
#
|
3589
3632
|
# * Web and Express editions: Must be an integer from 100 to
|
3590
3633
|
# 16384.
|
3591
|
-
#
|
3592
3634
|
# * Magnetic storage (standard):
|
3593
3635
|
#
|
3594
3636
|
# * Enterprise and Standard editions: Must be an integer from 20
|
@@ -8578,6 +8620,16 @@ module Aws::RDS
|
|
8578
8620
|
# integrations with Amazon Redshift.
|
8579
8621
|
# @return [Boolean]
|
8580
8622
|
#
|
8623
|
+
# @!attribute [rw] serverless_v2_features_support
|
8624
|
+
# Specifies any Aurora Serverless v2 properties or limits that differ
|
8625
|
+
# between Aurora engine versions. You can test the values of this
|
8626
|
+
# attribute when deciding which Aurora version to use in a new or
|
8627
|
+
# upgraded DB cluster. You can also retrieve the version of an
|
8628
|
+
# existing DB cluster and check whether that version supports certain
|
8629
|
+
# Aurora Serverless v2 features before you attempt to use those
|
8630
|
+
# features.
|
8631
|
+
# @return [Types::ServerlessV2FeaturesSupport]
|
8632
|
+
#
|
8581
8633
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBEngineVersion AWS API Documentation
|
8582
8634
|
#
|
8583
8635
|
class DBEngineVersion < Struct.new(
|
@@ -8614,7 +8666,8 @@ module Aws::RDS
|
|
8614
8666
|
:supports_certificate_rotation_without_restart,
|
8615
8667
|
:supported_ca_certificate_identifiers,
|
8616
8668
|
:supports_local_write_forwarding,
|
8617
|
-
:supports_integrations
|
8669
|
+
:supports_integrations,
|
8670
|
+
:serverless_v2_features_support)
|
8618
8671
|
SENSITIVE = []
|
8619
8672
|
include Aws::Structure
|
8620
8673
|
end
|
@@ -9635,6 +9688,13 @@ module Aws::RDS
|
|
9635
9688
|
#
|
9636
9689
|
class DBInstanceNotFoundFault < Aws::EmptyStructure; end
|
9637
9690
|
|
9691
|
+
# An attempt to download or examine log files didn't succeed because an
|
9692
|
+
# Aurora Serverless v2 instance was paused.
|
9693
|
+
#
|
9694
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstanceNotReadyFault AWS API Documentation
|
9695
|
+
#
|
9696
|
+
class DBInstanceNotReadyFault < Aws::EmptyStructure; end
|
9697
|
+
|
9638
9698
|
# Information about an Amazon Web Services Identity and Access
|
9639
9699
|
# Management (IAM) role that is associated with a DB instance.
|
9640
9700
|
#
|
@@ -10604,6 +10664,8 @@ module Aws::RDS
|
|
10604
10664
|
#
|
10605
10665
|
class DBSecurityGroupQuotaExceededFault < Aws::EmptyStructure; end
|
10606
10666
|
|
10667
|
+
# Contains the details for an Amazon RDS DB shard group.
|
10668
|
+
#
|
10607
10669
|
# @!attribute [rw] db_shard_group_resource_id
|
10608
10670
|
# The Amazon Web Services Region-unique, immutable identifier for the
|
10609
10671
|
# DB shard group.
|
@@ -12181,7 +12243,6 @@ module Aws::RDS
|
|
12181
12243
|
# backup replication is stopped.
|
12182
12244
|
#
|
12183
12245
|
# ^
|
12184
|
-
#
|
12185
12246
|
# * `db-cluster-id` - Accepts DB cluster identifiers and Amazon
|
12186
12247
|
# Resource Names (ARNs). The results list includes only information
|
12187
12248
|
# about the DB cluster automated backups identified by these ARNs.
|
@@ -12272,7 +12333,6 @@ module Aws::RDS
|
|
12272
12333
|
# * `failed`
|
12273
12334
|
#
|
12274
12335
|
# * `pending`
|
12275
|
-
#
|
12276
12336
|
# The results list includes information about only the backtracks
|
12277
12337
|
# identified by these values.
|
12278
12338
|
# @return [Array<Types::Filter>]
|
@@ -12791,7 +12851,6 @@ module Aws::RDS
|
|
12791
12851
|
# * `provisioned`
|
12792
12852
|
#
|
12793
12853
|
# * `serverless`
|
12794
|
-
#
|
12795
12854
|
# * `engine-version` - Accepts engine versions. The results list only
|
12796
12855
|
# includes information about the DB engine versions for these engine
|
12797
12856
|
# versions.
|
@@ -12901,7 +12960,6 @@ module Aws::RDS
|
|
12901
12960
|
#
|
12902
12961
|
# * `retained` - Automated backups for deleted instances and after
|
12903
12962
|
# backup replication is stopped.
|
12904
|
-
#
|
12905
12963
|
# * `db-instance-id` - Accepts DB instance identifiers and Amazon
|
12906
12964
|
# Resource Names (ARNs). The results list includes only information
|
12907
12965
|
# about the DB instance automated backups identified by these ARNs.
|
@@ -13518,7 +13576,6 @@ module Aws::RDS
|
|
13518
13576
|
# * `resolved` - The recommendations which are completed.
|
13519
13577
|
#
|
13520
13578
|
# * `dismissed` - The recommendations that you dismissed.
|
13521
|
-
#
|
13522
13579
|
# The results list only includes the recommendations whose status is
|
13523
13580
|
# one of the specified filter values.
|
13524
13581
|
#
|
@@ -13535,7 +13592,6 @@ module Aws::RDS
|
|
13535
13592
|
# * `low`
|
13536
13593
|
#
|
13537
13594
|
# * `informational`
|
13538
|
-
#
|
13539
13595
|
# * `type-id` - Accepts a list of recommendation type identifiers. The
|
13540
13596
|
# results list only includes the recommendations whose type is one
|
13541
13597
|
# of the specified filter values.
|
@@ -17211,11 +17267,11 @@ module Aws::RDS
|
|
17211
17267
|
# @return [String]
|
17212
17268
|
#
|
17213
17269
|
# @!attribute [rw] apply_immediately
|
17214
|
-
# Specifies whether the modifications in this request
|
17215
|
-
#
|
17216
|
-
#
|
17217
|
-
#
|
17218
|
-
#
|
17270
|
+
# Specifies whether the modifications in this request are
|
17271
|
+
# asynchronously applied as soon as possible, regardless of the
|
17272
|
+
# `PreferredMaintenanceWindow` setting for the DB cluster. If this
|
17273
|
+
# parameter is disabled, changes to the DB cluster are applied during
|
17274
|
+
# the next maintenance window.
|
17219
17275
|
#
|
17220
17276
|
# Most modifications can be applied immediately or during the next
|
17221
17277
|
# scheduled maintenance window. Some modifications, such as turning on
|
@@ -26694,6 +26750,34 @@ module Aws::RDS
|
|
26694
26750
|
include Aws::Structure
|
26695
26751
|
end
|
26696
26752
|
|
26753
|
+
# Specifies any Aurora Serverless v2 properties or limits that differ
|
26754
|
+
# between Aurora engine versions. You can test the values of this
|
26755
|
+
# attribute when deciding which Aurora version to use in a new or
|
26756
|
+
# upgraded DB cluster. You can also retrieve the version of an existing
|
26757
|
+
# DB cluster and check whether that version supports certain Aurora
|
26758
|
+
# Serverless v2 features before you attempt to use those features.
|
26759
|
+
#
|
26760
|
+
# @!attribute [rw] min_capacity
|
26761
|
+
# If the minimum capacity is 0 ACUs, the engine version supports the
|
26762
|
+
# automatic pause/resume feature of Aurora Serverless v2.
|
26763
|
+
# @return [Float]
|
26764
|
+
#
|
26765
|
+
# @!attribute [rw] max_capacity
|
26766
|
+
# Specifies the upper Aurora Serverless v2 capacity limit for a
|
26767
|
+
# particular engine version. Depending on the engine version, the
|
26768
|
+
# maximum capacity for an Aurora Serverless v2 cluster might be `256`
|
26769
|
+
# or `128`.
|
26770
|
+
# @return [Float]
|
26771
|
+
#
|
26772
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ServerlessV2FeaturesSupport AWS API Documentation
|
26773
|
+
#
|
26774
|
+
class ServerlessV2FeaturesSupport < Struct.new(
|
26775
|
+
:min_capacity,
|
26776
|
+
:max_capacity)
|
26777
|
+
SENSITIVE = []
|
26778
|
+
include Aws::Structure
|
26779
|
+
end
|
26780
|
+
|
26697
26781
|
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
26698
26782
|
# cluster.
|
26699
26783
|
#
|
@@ -26707,22 +26791,35 @@ module Aws::RDS
|
|
26707
26791
|
# @!attribute [rw] min_capacity
|
26708
26792
|
# The minimum number of Aurora capacity units (ACUs) for a DB instance
|
26709
26793
|
# in an Aurora Serverless v2 cluster. You can specify ACU values in
|
26710
|
-
# half-step increments, such as 8, 8.5, 9, and so on.
|
26711
|
-
#
|
26794
|
+
# half-step increments, such as 8, 8.5, 9, and so on. For Aurora
|
26795
|
+
# versions that support the Aurora Serverless v2 auto-pause feature,
|
26796
|
+
# the smallest value that you can use is 0. For versions that don't
|
26797
|
+
# support Aurora Serverless v2 auto-pause, the smallest value that you
|
26798
|
+
# can use is 0.5.
|
26712
26799
|
# @return [Float]
|
26713
26800
|
#
|
26714
26801
|
# @!attribute [rw] max_capacity
|
26715
26802
|
# The maximum number of Aurora capacity units (ACUs) for a DB instance
|
26716
26803
|
# in an Aurora Serverless v2 cluster. You can specify ACU values in
|
26717
|
-
# half-step increments, such as
|
26718
|
-
# value that you can use is 128
|
26804
|
+
# half-step increments, such as 32, 32.5, 33, and so on. The largest
|
26805
|
+
# value that you can use is 256 for recent Aurora versions, or 128 for
|
26806
|
+
# older versions.
|
26719
26807
|
# @return [Float]
|
26720
26808
|
#
|
26809
|
+
# @!attribute [rw] seconds_until_auto_pause
|
26810
|
+
# Specifies the number of seconds an Aurora Serverless v2 DB instance
|
26811
|
+
# must be idle before Aurora attempts to automatically pause it.
|
26812
|
+
#
|
26813
|
+
# Specify a value between 300 seconds (five minutes) and 86,400
|
26814
|
+
# seconds (one day). The default is 300 seconds.
|
26815
|
+
# @return [Integer]
|
26816
|
+
#
|
26721
26817
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ServerlessV2ScalingConfiguration AWS API Documentation
|
26722
26818
|
#
|
26723
26819
|
class ServerlessV2ScalingConfiguration < Struct.new(
|
26724
26820
|
:min_capacity,
|
26725
|
-
:max_capacity
|
26821
|
+
:max_capacity,
|
26822
|
+
:seconds_until_auto_pause)
|
26726
26823
|
SENSITIVE = []
|
26727
26824
|
include Aws::Structure
|
26728
26825
|
end
|
@@ -26739,22 +26836,40 @@ module Aws::RDS
|
|
26739
26836
|
# @!attribute [rw] min_capacity
|
26740
26837
|
# The minimum number of Aurora capacity units (ACUs) for a DB instance
|
26741
26838
|
# in an Aurora Serverless v2 cluster. You can specify ACU values in
|
26742
|
-
# half-step increments, such as 8, 8.5, 9, and so on.
|
26743
|
-
#
|
26839
|
+
# half-step increments, such as 8, 8.5, 9, and so on. For Aurora
|
26840
|
+
# versions that support the Aurora Serverless v2 auto-pause feature,
|
26841
|
+
# the smallest value that you can use is 0. For versions that don't
|
26842
|
+
# support Aurora Serverless v2 auto-pause, the smallest value that you
|
26843
|
+
# can use is 0.5.
|
26744
26844
|
# @return [Float]
|
26745
26845
|
#
|
26746
26846
|
# @!attribute [rw] max_capacity
|
26747
26847
|
# The maximum number of Aurora capacity units (ACUs) for a DB instance
|
26748
26848
|
# in an Aurora Serverless v2 cluster. You can specify ACU values in
|
26749
|
-
# half-step increments, such as
|
26750
|
-
# value that you can use is 128
|
26849
|
+
# half-step increments, such as 32, 32.5, 33, and so on. The largest
|
26850
|
+
# value that you can use is 256 for recent Aurora versions, or 128 for
|
26851
|
+
# older versions.
|
26751
26852
|
# @return [Float]
|
26752
26853
|
#
|
26854
|
+
# @!attribute [rw] seconds_until_auto_pause
|
26855
|
+
# The number of seconds an Aurora Serverless v2 DB instance must be
|
26856
|
+
# idle before Aurora attempts to automatically pause it. This property
|
26857
|
+
# is only shown when the minimum capacity for the cluster is set to 0
|
26858
|
+
# ACUs. Changing the minimum capacity to a nonzero value removes this
|
26859
|
+
# property. If you later change the minimum capacity back to 0 ACUs,
|
26860
|
+
# this property is reset to its default value unless you specify it
|
26861
|
+
# again.
|
26862
|
+
#
|
26863
|
+
# This value ranges between 300 seconds (five minutes) and 86,400
|
26864
|
+
# seconds (one day). The default is 300 seconds.
|
26865
|
+
# @return [Integer]
|
26866
|
+
#
|
26753
26867
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ServerlessV2ScalingConfigurationInfo AWS API Documentation
|
26754
26868
|
#
|
26755
26869
|
class ServerlessV2ScalingConfigurationInfo < Struct.new(
|
26756
26870
|
:min_capacity,
|
26757
|
-
:max_capacity
|
26871
|
+
:max_capacity,
|
26872
|
+
:seconds_until_auto_pause)
|
26758
26873
|
SENSITIVE = []
|
26759
26874
|
include Aws::Structure
|
26760
26875
|
end
|
data/lib/aws-sdk-rds.rb
CHANGED
@@ -80,7 +80,7 @@ module Aws::RDS
|
|
80
80
|
autoload :ReservedDBInstancesOffering, 'aws-sdk-rds/reserved_db_instances_offering'
|
81
81
|
autoload :ResourcePendingMaintenanceActionList, 'aws-sdk-rds/resource_pending_maintenance_action_list'
|
82
82
|
|
83
|
-
GEM_VERSION = '1.
|
83
|
+
GEM_VERSION = '1.260.0'
|
84
84
|
|
85
85
|
end
|
86
86
|
|
data/sig/client.rbs
CHANGED
@@ -300,7 +300,11 @@ module Aws
|
|
300
300
|
},
|
301
301
|
],
|
302
302
|
?target_db_instance_class: ::String,
|
303
|
-
?upgrade_target_storage_config: bool
|
303
|
+
?upgrade_target_storage_config: bool,
|
304
|
+
?target_iops: ::Integer,
|
305
|
+
?target_storage_type: ::String,
|
306
|
+
?target_allocated_storage: ::Integer,
|
307
|
+
?target_storage_throughput: ::Integer
|
304
308
|
) -> _CreateBlueGreenDeploymentResponseSuccess
|
305
309
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBlueGreenDeploymentResponseSuccess
|
306
310
|
|
@@ -340,6 +344,7 @@ module Aws
|
|
340
344
|
def supported_ca_certificate_identifiers: () -> ::Array[::String]
|
341
345
|
def supports_local_write_forwarding: () -> bool
|
342
346
|
def supports_integrations: () -> bool
|
347
|
+
def serverless_v2_features_support: () -> Types::ServerlessV2FeaturesSupport
|
343
348
|
end
|
344
349
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#create_custom_db_engine_version-instance_method
|
345
350
|
def create_custom_db_engine_version: (
|
@@ -432,7 +437,8 @@ module Aws
|
|
432
437
|
?enable_limitless_database: bool,
|
433
438
|
?serverless_v2_scaling_configuration: {
|
434
439
|
min_capacity: ::Float?,
|
435
|
-
max_capacity: ::Float
|
440
|
+
max_capacity: ::Float?,
|
441
|
+
seconds_until_auto_pause: ::Integer?
|
436
442
|
},
|
437
443
|
?network_type: ::String,
|
438
444
|
?cluster_scalability_type: ("standard" | "limitless"),
|
@@ -975,6 +981,7 @@ module Aws
|
|
975
981
|
def supported_ca_certificate_identifiers: () -> ::Array[::String]
|
976
982
|
def supports_local_write_forwarding: () -> bool
|
977
983
|
def supports_integrations: () -> bool
|
984
|
+
def serverless_v2_features_support: () -> Types::ServerlessV2FeaturesSupport
|
978
985
|
end
|
979
986
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#delete_custom_db_engine_version-instance_method
|
980
987
|
def delete_custom_db_engine_version: (
|
@@ -2239,6 +2246,7 @@ module Aws
|
|
2239
2246
|
def supported_ca_certificate_identifiers: () -> ::Array[::String]
|
2240
2247
|
def supports_local_write_forwarding: () -> bool
|
2241
2248
|
def supports_integrations: () -> bool
|
2249
|
+
def serverless_v2_features_support: () -> Types::ServerlessV2FeaturesSupport
|
2242
2250
|
end
|
2243
2251
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#modify_custom_db_engine_version-instance_method
|
2244
2252
|
def modify_custom_db_engine_version: (
|
@@ -2301,7 +2309,8 @@ module Aws
|
|
2301
2309
|
?performance_insights_retention_period: ::Integer,
|
2302
2310
|
?serverless_v2_scaling_configuration: {
|
2303
2311
|
min_capacity: ::Float?,
|
2304
|
-
max_capacity: ::Float
|
2312
|
+
max_capacity: ::Float?,
|
2313
|
+
seconds_until_auto_pause: ::Integer?
|
2305
2314
|
},
|
2306
2315
|
?network_type: ::String,
|
2307
2316
|
?manage_master_user_password: bool,
|
@@ -2947,7 +2956,8 @@ module Aws
|
|
2947
2956
|
?domain_iam_role_name: ::String,
|
2948
2957
|
?serverless_v2_scaling_configuration: {
|
2949
2958
|
min_capacity: ::Float?,
|
2950
|
-
max_capacity: ::Float
|
2959
|
+
max_capacity: ::Float?,
|
2960
|
+
seconds_until_auto_pause: ::Integer?
|
2951
2961
|
},
|
2952
2962
|
?network_type: ::String,
|
2953
2963
|
?manage_master_user_password: bool,
|
@@ -3003,7 +3013,8 @@ module Aws
|
|
3003
3013
|
?publicly_accessible: bool,
|
3004
3014
|
?serverless_v2_scaling_configuration: {
|
3005
3015
|
min_capacity: ::Float?,
|
3006
|
-
max_capacity: ::Float
|
3016
|
+
max_capacity: ::Float?,
|
3017
|
+
seconds_until_auto_pause: ::Integer?
|
3007
3018
|
},
|
3008
3019
|
?network_type: ::String,
|
3009
3020
|
?rds_custom_cluster_configuration: {
|
@@ -3065,7 +3076,8 @@ module Aws
|
|
3065
3076
|
?iops: ::Integer,
|
3066
3077
|
?serverless_v2_scaling_configuration: {
|
3067
3078
|
min_capacity: ::Float?,
|
3068
|
-
max_capacity: ::Float
|
3079
|
+
max_capacity: ::Float?,
|
3080
|
+
seconds_until_auto_pause: ::Integer?
|
3069
3081
|
},
|
3070
3082
|
?network_type: ::String,
|
3071
3083
|
?source_db_cluster_resource_id: ::String,
|
data/sig/db_cluster.rbs
CHANGED
@@ -336,7 +336,8 @@ module Aws
|
|
336
336
|
?enable_limitless_database: bool,
|
337
337
|
?serverless_v2_scaling_configuration: {
|
338
338
|
min_capacity: ::Float?,
|
339
|
-
max_capacity: ::Float
|
339
|
+
max_capacity: ::Float?,
|
340
|
+
seconds_until_auto_pause: ::Integer?
|
340
341
|
},
|
341
342
|
?network_type: ::String,
|
342
343
|
?cluster_scalability_type: ("standard" | "limitless"),
|
@@ -423,7 +424,8 @@ module Aws
|
|
423
424
|
?performance_insights_retention_period: ::Integer,
|
424
425
|
?serverless_v2_scaling_configuration: {
|
425
426
|
min_capacity: ::Float?,
|
426
|
-
max_capacity: ::Float
|
427
|
+
max_capacity: ::Float?,
|
428
|
+
seconds_until_auto_pause: ::Integer?
|
427
429
|
},
|
428
430
|
?network_type: ::String,
|
429
431
|
?manage_master_user_password: bool,
|
@@ -478,7 +480,8 @@ module Aws
|
|
478
480
|
?iops: ::Integer,
|
479
481
|
?serverless_v2_scaling_configuration: {
|
480
482
|
min_capacity: ::Float?,
|
481
|
-
max_capacity: ::Float
|
483
|
+
max_capacity: ::Float?,
|
484
|
+
seconds_until_auto_pause: ::Integer?
|
482
485
|
},
|
483
486
|
?network_type: ::String,
|
484
487
|
?source_db_cluster_resource_id: ::String,
|
data/sig/db_cluster_snapshot.rbs
CHANGED
@@ -180,7 +180,8 @@ module Aws
|
|
180
180
|
?publicly_accessible: bool,
|
181
181
|
?serverless_v2_scaling_configuration: {
|
182
182
|
min_capacity: ::Float?,
|
183
|
-
max_capacity: ::Float
|
183
|
+
max_capacity: ::Float?,
|
184
|
+
seconds_until_auto_pause: ::Integer?
|
184
185
|
},
|
185
186
|
?network_type: ::String,
|
186
187
|
?rds_custom_cluster_configuration: {
|
data/sig/db_engine_version.rbs
CHANGED
@@ -117,6 +117,9 @@ module Aws
|
|
117
117
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#supports_integrations-instance_method
|
118
118
|
def supports_integrations: () -> bool
|
119
119
|
|
120
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#serverless_v2_features_support-instance_method
|
121
|
+
def serverless_v2_features_support: () -> Types::ServerlessV2FeaturesSupport
|
122
|
+
|
120
123
|
def client: () -> Client
|
121
124
|
|
122
125
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#load-instance_method
|
data/sig/errors.rbs
CHANGED
@@ -73,6 +73,8 @@ module Aws
|
|
73
73
|
end
|
74
74
|
class DBInstanceNotFoundFault < ::Aws::Errors::ServiceError
|
75
75
|
end
|
76
|
+
class DBInstanceNotReadyFault < ::Aws::Errors::ServiceError
|
77
|
+
end
|
76
78
|
class DBInstanceRoleAlreadyExistsFault < ::Aws::Errors::ServiceError
|
77
79
|
end
|
78
80
|
class DBInstanceRoleNotFoundFault < ::Aws::Errors::ServiceError
|
data/sig/resource.rbs
CHANGED
@@ -143,7 +143,8 @@ module Aws
|
|
143
143
|
?enable_limitless_database: bool,
|
144
144
|
?serverless_v2_scaling_configuration: {
|
145
145
|
min_capacity: ::Float?,
|
146
|
-
max_capacity: ::Float
|
146
|
+
max_capacity: ::Float?,
|
147
|
+
seconds_until_auto_pause: ::Integer?
|
147
148
|
},
|
148
149
|
?network_type: ::String,
|
149
150
|
?cluster_scalability_type: ("standard" | "limitless"),
|
data/sig/types.rbs
CHANGED
@@ -303,6 +303,10 @@ module Aws::RDS
|
|
303
303
|
attr_accessor tags: ::Array[Types::Tag]
|
304
304
|
attr_accessor target_db_instance_class: ::String
|
305
305
|
attr_accessor upgrade_target_storage_config: bool
|
306
|
+
attr_accessor target_iops: ::Integer
|
307
|
+
attr_accessor target_storage_type: ::String
|
308
|
+
attr_accessor target_allocated_storage: ::Integer
|
309
|
+
attr_accessor target_storage_throughput: ::Integer
|
306
310
|
SENSITIVE: []
|
307
311
|
end
|
308
312
|
|
@@ -1098,6 +1102,7 @@ module Aws::RDS
|
|
1098
1102
|
attr_accessor supported_ca_certificate_identifiers: ::Array[::String]
|
1099
1103
|
attr_accessor supports_local_write_forwarding: bool
|
1100
1104
|
attr_accessor supports_integrations: bool
|
1105
|
+
attr_accessor serverless_v2_features_support: Types::ServerlessV2FeaturesSupport
|
1101
1106
|
SENSITIVE: []
|
1102
1107
|
end
|
1103
1108
|
|
@@ -1261,6 +1266,9 @@ module Aws::RDS
|
|
1261
1266
|
class DBInstanceNotFoundFault < Aws::EmptyStructure
|
1262
1267
|
end
|
1263
1268
|
|
1269
|
+
class DBInstanceNotReadyFault < Aws::EmptyStructure
|
1270
|
+
end
|
1271
|
+
|
1264
1272
|
class DBInstanceRole
|
1265
1273
|
attr_accessor role_arn: ::String
|
1266
1274
|
attr_accessor feature_name: ::String
|
@@ -3987,15 +3995,23 @@ module Aws::RDS
|
|
3987
3995
|
SENSITIVE: []
|
3988
3996
|
end
|
3989
3997
|
|
3998
|
+
class ServerlessV2FeaturesSupport
|
3999
|
+
attr_accessor min_capacity: ::Float
|
4000
|
+
attr_accessor max_capacity: ::Float
|
4001
|
+
SENSITIVE: []
|
4002
|
+
end
|
4003
|
+
|
3990
4004
|
class ServerlessV2ScalingConfiguration
|
3991
4005
|
attr_accessor min_capacity: ::Float
|
3992
4006
|
attr_accessor max_capacity: ::Float
|
4007
|
+
attr_accessor seconds_until_auto_pause: ::Integer
|
3993
4008
|
SENSITIVE: []
|
3994
4009
|
end
|
3995
4010
|
|
3996
4011
|
class ServerlessV2ScalingConfigurationInfo
|
3997
4012
|
attr_accessor min_capacity: ::Float
|
3998
4013
|
attr_accessor max_capacity: ::Float
|
4014
|
+
attr_accessor seconds_until_auto_pause: ::Integer
|
3999
4015
|
SENSITIVE: []
|
4000
4016
|
end
|
4001
4017
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-rds
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.260.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-11-
|
11
|
+
date: 2024-11-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|