aws-sdk-rds 1.258.0 → 1.259.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 +37 -14
- data/lib/aws-sdk-rds/client_api.rb +13 -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 +98 -24
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +13 -5
- 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 +12 -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: 190c5d1f2711cfcc66cdfbefcc0e18a26509fa2445d85af4f0148559918b0f5d
|
4
|
+
data.tar.gz: 3651e15e7355213b8d69820ba132f13f02f695df28153b6a566ee04f2064873b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c39b1bc0c919c72f1ee29a5c8f46c88cd29903fb215dc33078702131cc10ee80d0f055fb1f6b92ca77c4e91fd1817be9caca49c1ffd21b071a27d5e1b40c853d
|
7
|
+
data.tar.gz: d6cc822064b0b2bbd9bb34353e13054a7e6ec0dabc217bdc18a59527c099e7659cd556c90629f6a84bd13712165ed7769f73d6d64fc8163886db4006bc0f2afb
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.259.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -2495,6 +2495,7 @@ module Aws::RDS
|
|
2495
2495
|
# * {Types::DBEngineVersion#supported_ca_certificate_identifiers #supported_ca_certificate_identifiers} => Array<String>
|
2496
2496
|
# * {Types::DBEngineVersion#supports_local_write_forwarding #supports_local_write_forwarding} => Boolean
|
2497
2497
|
# * {Types::DBEngineVersion#supports_integrations #supports_integrations} => Boolean
|
2498
|
+
# * {Types::DBEngineVersion#serverless_v2_features_support #serverless_v2_features_support} => Types::ServerlessV2FeaturesSupport
|
2498
2499
|
#
|
2499
2500
|
# @example Request syntax with placeholder values
|
2500
2501
|
#
|
@@ -2579,6 +2580,8 @@ module Aws::RDS
|
|
2579
2580
|
# resp.supported_ca_certificate_identifiers[0] #=> String
|
2580
2581
|
# resp.supports_local_write_forwarding #=> Boolean
|
2581
2582
|
# resp.supports_integrations #=> Boolean
|
2583
|
+
# resp.serverless_v2_features_support.min_capacity #=> Float
|
2584
|
+
# resp.serverless_v2_features_support.max_capacity #=> Float
|
2582
2585
|
#
|
2583
2586
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateCustomDBEngineVersion AWS API Documentation
|
2584
2587
|
#
|
@@ -3726,6 +3729,7 @@ module Aws::RDS
|
|
3726
3729
|
# serverless_v2_scaling_configuration: {
|
3727
3730
|
# min_capacity: 1.0,
|
3728
3731
|
# max_capacity: 1.0,
|
3732
|
+
# seconds_until_auto_pause: 1,
|
3729
3733
|
# },
|
3730
3734
|
# network_type: "String",
|
3731
3735
|
# cluster_scalability_type: "standard", # accepts standard, limitless
|
@@ -3863,6 +3867,7 @@ module Aws::RDS
|
|
3863
3867
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
3864
3868
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
3865
3869
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
3870
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
3866
3871
|
# resp.db_cluster.network_type #=> String
|
3867
3872
|
# resp.db_cluster.db_system_id #=> String
|
3868
3873
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -4349,6 +4354,9 @@ module Aws::RDS
|
|
4349
4354
|
#
|
4350
4355
|
# * Must contain 1 to 64 alphanumeric characters.
|
4351
4356
|
#
|
4357
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
4358
|
+
# underscores, or digits (0-9).
|
4359
|
+
#
|
4352
4360
|
# * Can't be a word reserved by the database engine.
|
4353
4361
|
#
|
4354
4362
|
# Amazon Aurora PostgreSQL
|
@@ -4581,14 +4589,12 @@ module Aws::RDS
|
|
4581
4589
|
# 16384.
|
4582
4590
|
#
|
4583
4591
|
# * Web and Express editions: Must be an integer from 20 to 16384.
|
4584
|
-
#
|
4585
4592
|
# * Provisioned IOPS storage (io1, io2):
|
4586
4593
|
#
|
4587
4594
|
# * Enterprise and Standard editions: Must be an integer from 100 to
|
4588
4595
|
# 16384.
|
4589
4596
|
#
|
4590
4597
|
# * Web and Express editions: Must be an integer from 100 to 16384.
|
4591
|
-
#
|
4592
4598
|
# * Magnetic storage (standard):
|
4593
4599
|
#
|
4594
4600
|
# * Enterprise and Standard editions: Must be an integer from 20 to
|
@@ -8915,6 +8921,7 @@ module Aws::RDS
|
|
8915
8921
|
# * {Types::DBEngineVersion#supported_ca_certificate_identifiers #supported_ca_certificate_identifiers} => Array<String>
|
8916
8922
|
# * {Types::DBEngineVersion#supports_local_write_forwarding #supports_local_write_forwarding} => Boolean
|
8917
8923
|
# * {Types::DBEngineVersion#supports_integrations #supports_integrations} => Boolean
|
8924
|
+
# * {Types::DBEngineVersion#serverless_v2_features_support #serverless_v2_features_support} => Types::ServerlessV2FeaturesSupport
|
8918
8925
|
#
|
8919
8926
|
# @example Request syntax with placeholder values
|
8920
8927
|
#
|
@@ -8985,6 +8992,8 @@ module Aws::RDS
|
|
8985
8992
|
# resp.supported_ca_certificate_identifiers[0] #=> String
|
8986
8993
|
# resp.supports_local_write_forwarding #=> Boolean
|
8987
8994
|
# resp.supports_integrations #=> Boolean
|
8995
|
+
# resp.serverless_v2_features_support.min_capacity #=> Float
|
8996
|
+
# resp.serverless_v2_features_support.max_capacity #=> Float
|
8988
8997
|
#
|
8989
8998
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteCustomDBEngineVersion AWS API Documentation
|
8990
8999
|
#
|
@@ -9229,6 +9238,7 @@ module Aws::RDS
|
|
9229
9238
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
9230
9239
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
9231
9240
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
9241
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
9232
9242
|
# resp.db_cluster.network_type #=> String
|
9233
9243
|
# resp.db_cluster.db_system_id #=> String
|
9234
9244
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -11357,7 +11367,6 @@ module Aws::RDS
|
|
11357
11367
|
# backup replication is stopped.
|
11358
11368
|
#
|
11359
11369
|
# ^
|
11360
|
-
#
|
11361
11370
|
# * `db-cluster-id` - Accepts DB cluster identifiers and Amazon Resource
|
11362
11371
|
# Names (ARNs). The results list includes only information about the
|
11363
11372
|
# DB cluster automated backups identified by these ARNs.
|
@@ -11505,7 +11514,6 @@ module Aws::RDS
|
|
11505
11514
|
# * `failed`
|
11506
11515
|
#
|
11507
11516
|
# * `pending`
|
11508
|
-
#
|
11509
11517
|
# The results list includes information about only the backtracks
|
11510
11518
|
# identified by these values.
|
11511
11519
|
#
|
@@ -12674,6 +12682,7 @@ module Aws::RDS
|
|
12674
12682
|
# resp.db_clusters[0].performance_insights_retention_period #=> Integer
|
12675
12683
|
# resp.db_clusters[0].serverless_v2_scaling_configuration.min_capacity #=> Float
|
12676
12684
|
# resp.db_clusters[0].serverless_v2_scaling_configuration.max_capacity #=> Float
|
12685
|
+
# resp.db_clusters[0].serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
12677
12686
|
# resp.db_clusters[0].network_type #=> String
|
12678
12687
|
# resp.db_clusters[0].db_system_id #=> String
|
12679
12688
|
# resp.db_clusters[0].master_user_secret.secret_arn #=> String
|
@@ -12790,7 +12799,6 @@ module Aws::RDS
|
|
12790
12799
|
# * `provisioned`
|
12791
12800
|
#
|
12792
12801
|
# * `serverless`
|
12793
|
-
#
|
12794
12802
|
# * `engine-version` - Accepts engine versions. The results list only
|
12795
12803
|
# includes information about the DB engine versions for these engine
|
12796
12804
|
# versions.
|
@@ -12977,6 +12985,8 @@ module Aws::RDS
|
|
12977
12985
|
# resp.db_engine_versions[0].supported_ca_certificate_identifiers[0] #=> String
|
12978
12986
|
# resp.db_engine_versions[0].supports_local_write_forwarding #=> Boolean
|
12979
12987
|
# resp.db_engine_versions[0].supports_integrations #=> Boolean
|
12988
|
+
# resp.db_engine_versions[0].serverless_v2_features_support.min_capacity #=> Float
|
12989
|
+
# resp.db_engine_versions[0].serverless_v2_features_support.max_capacity #=> Float
|
12980
12990
|
#
|
12981
12991
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBEngineVersions AWS API Documentation
|
12982
12992
|
#
|
@@ -13020,7 +13030,6 @@ module Aws::RDS
|
|
13020
13030
|
#
|
13021
13031
|
# * `retained` - Automated backups for deleted instances and after
|
13022
13032
|
# backup replication is stopped.
|
13023
|
-
#
|
13024
13033
|
# * `db-instance-id` - Accepts DB instance identifiers and Amazon
|
13025
13034
|
# Resource Names (ARNs). The results list includes only information
|
13026
13035
|
# about the DB instance automated backups identified by these ARNs.
|
@@ -14178,7 +14187,6 @@ module Aws::RDS
|
|
14178
14187
|
# * `resolved` - The recommendations which are completed.
|
14179
14188
|
#
|
14180
14189
|
# * `dismissed` - The recommendations that you dismissed.
|
14181
|
-
#
|
14182
14190
|
# The results list only includes the recommendations whose status is
|
14183
14191
|
# one of the specified filter values.
|
14184
14192
|
#
|
@@ -14195,7 +14203,6 @@ module Aws::RDS
|
|
14195
14203
|
# * `low`
|
14196
14204
|
#
|
14197
14205
|
# * `informational`
|
14198
|
-
#
|
14199
14206
|
# * `type-id` - Accepts a list of recommendation type identifiers. The
|
14200
14207
|
# results list only includes the recommendations whose type is one of
|
14201
14208
|
# the specified filter values.
|
@@ -17991,6 +17998,7 @@ module Aws::RDS
|
|
17991
17998
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
17992
17999
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
17993
18000
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
18001
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
17994
18002
|
# resp.db_cluster.network_type #=> String
|
17995
18003
|
# resp.db_cluster.db_system_id #=> String
|
17996
18004
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -18623,6 +18631,7 @@ module Aws::RDS
|
|
18623
18631
|
# * {Types::DBEngineVersion#supported_ca_certificate_identifiers #supported_ca_certificate_identifiers} => Array<String>
|
18624
18632
|
# * {Types::DBEngineVersion#supports_local_write_forwarding #supports_local_write_forwarding} => Boolean
|
18625
18633
|
# * {Types::DBEngineVersion#supports_integrations #supports_integrations} => Boolean
|
18634
|
+
# * {Types::DBEngineVersion#serverless_v2_features_support #serverless_v2_features_support} => Types::ServerlessV2FeaturesSupport
|
18626
18635
|
#
|
18627
18636
|
# @example Request syntax with placeholder values
|
18628
18637
|
#
|
@@ -18695,6 +18704,8 @@ module Aws::RDS
|
|
18695
18704
|
# resp.supported_ca_certificate_identifiers[0] #=> String
|
18696
18705
|
# resp.supports_local_write_forwarding #=> Boolean
|
18697
18706
|
# resp.supports_integrations #=> Boolean
|
18707
|
+
# resp.serverless_v2_features_support.min_capacity #=> Float
|
18708
|
+
# resp.serverless_v2_features_support.max_capacity #=> Float
|
18698
18709
|
#
|
18699
18710
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyCustomDBEngineVersion AWS API Documentation
|
18700
18711
|
#
|
@@ -18749,11 +18760,11 @@ module Aws::RDS
|
|
18749
18760
|
# Example: `my-cluster2`
|
18750
18761
|
#
|
18751
18762
|
# @option params [Boolean] :apply_immediately
|
18752
|
-
# Specifies whether the modifications in this request
|
18753
|
-
#
|
18754
|
-
#
|
18755
|
-
#
|
18756
|
-
#
|
18763
|
+
# Specifies whether the modifications in this request are asynchronously
|
18764
|
+
# applied as soon as possible, regardless of the
|
18765
|
+
# `PreferredMaintenanceWindow` setting for the DB cluster. If this
|
18766
|
+
# parameter is disabled, changes to the DB cluster are applied during
|
18767
|
+
# the next maintenance window.
|
18757
18768
|
#
|
18758
18769
|
# Most modifications can be applied immediately or during the next
|
18759
18770
|
# scheduled maintenance window. Some modifications, such as turning on
|
@@ -19552,6 +19563,7 @@ module Aws::RDS
|
|
19552
19563
|
# serverless_v2_scaling_configuration: {
|
19553
19564
|
# min_capacity: 1.0,
|
19554
19565
|
# max_capacity: 1.0,
|
19566
|
+
# seconds_until_auto_pause: 1,
|
19555
19567
|
# },
|
19556
19568
|
# network_type: "String",
|
19557
19569
|
# manage_master_user_password: false,
|
@@ -19690,6 +19702,7 @@ module Aws::RDS
|
|
19690
19702
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
19691
19703
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
19692
19704
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
19705
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
19693
19706
|
# resp.db_cluster.network_type #=> String
|
19694
19707
|
# resp.db_cluster.db_system_id #=> String
|
19695
19708
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -23416,6 +23429,7 @@ module Aws::RDS
|
|
23416
23429
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
23417
23430
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
23418
23431
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
23432
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
23419
23433
|
# resp.db_cluster.network_type #=> String
|
23420
23434
|
# resp.db_cluster.db_system_id #=> String
|
23421
23435
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -23717,6 +23731,7 @@ module Aws::RDS
|
|
23717
23731
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
23718
23732
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
23719
23733
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
23734
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
23720
23735
|
# resp.db_cluster.network_type #=> String
|
23721
23736
|
# resp.db_cluster.db_system_id #=> String
|
23722
23737
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -25172,6 +25187,7 @@ module Aws::RDS
|
|
25172
25187
|
# serverless_v2_scaling_configuration: {
|
25173
25188
|
# min_capacity: 1.0,
|
25174
25189
|
# max_capacity: 1.0,
|
25190
|
+
# seconds_until_auto_pause: 1,
|
25175
25191
|
# },
|
25176
25192
|
# network_type: "String",
|
25177
25193
|
# manage_master_user_password: false,
|
@@ -25305,6 +25321,7 @@ module Aws::RDS
|
|
25305
25321
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
25306
25322
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
25307
25323
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
25324
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
25308
25325
|
# resp.db_cluster.network_type #=> String
|
25309
25326
|
# resp.db_cluster.db_system_id #=> String
|
25310
25327
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -25984,6 +26001,7 @@ module Aws::RDS
|
|
25984
26001
|
# serverless_v2_scaling_configuration: {
|
25985
26002
|
# min_capacity: 1.0,
|
25986
26003
|
# max_capacity: 1.0,
|
26004
|
+
# seconds_until_auto_pause: 1,
|
25987
26005
|
# },
|
25988
26006
|
# network_type: "String",
|
25989
26007
|
# rds_custom_cluster_configuration: {
|
@@ -26124,6 +26142,7 @@ module Aws::RDS
|
|
26124
26142
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
26125
26143
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
26126
26144
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
26145
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
26127
26146
|
# resp.db_cluster.network_type #=> String
|
26128
26147
|
# resp.db_cluster.db_system_id #=> String
|
26129
26148
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -26781,6 +26800,7 @@ module Aws::RDS
|
|
26781
26800
|
# serverless_v2_scaling_configuration: {
|
26782
26801
|
# min_capacity: 1.0,
|
26783
26802
|
# max_capacity: 1.0,
|
26803
|
+
# seconds_until_auto_pause: 1,
|
26784
26804
|
# },
|
26785
26805
|
# network_type: "String",
|
26786
26806
|
# source_db_cluster_resource_id: "String",
|
@@ -26922,6 +26942,7 @@ module Aws::RDS
|
|
26922
26942
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
26923
26943
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
26924
26944
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
26945
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
26925
26946
|
# resp.db_cluster.network_type #=> String
|
26926
26947
|
# resp.db_cluster.db_system_id #=> String
|
26927
26948
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -29970,6 +29991,7 @@ module Aws::RDS
|
|
29970
29991
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
29971
29992
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
29972
29993
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
29994
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
29973
29995
|
# resp.db_cluster.network_type #=> String
|
29974
29996
|
# resp.db_cluster.db_system_id #=> String
|
29975
29997
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -30812,6 +30834,7 @@ module Aws::RDS
|
|
30812
30834
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
30813
30835
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
30814
30836
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
30837
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
30815
30838
|
# resp.db_cluster.network_type #=> String
|
30816
30839
|
# resp.db_cluster.db_system_id #=> String
|
30817
30840
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -31686,7 +31709,7 @@ module Aws::RDS
|
|
31686
31709
|
tracer: tracer
|
31687
31710
|
)
|
31688
31711
|
context[:gem_name] = 'aws-sdk-rds'
|
31689
|
-
context[:gem_version] = '1.
|
31712
|
+
context[:gem_version] = '1.259.0'
|
31690
31713
|
Seahorse::Client::Request.new(handlers, context)
|
31691
31714
|
end
|
31692
31715
|
|
@@ -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})
|
@@ -1678,6 +1680,7 @@ module Aws::RDS
|
|
1678
1680
|
DBEngineVersion.add_member(:supported_ca_certificate_identifiers, Shapes::ShapeRef.new(shape: CACertificateIdentifiersList, location_name: "SupportedCACertificateIdentifiers"))
|
1679
1681
|
DBEngineVersion.add_member(:supports_local_write_forwarding, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsLocalWriteForwarding"))
|
1680
1682
|
DBEngineVersion.add_member(:supports_integrations, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsIntegrations"))
|
1683
|
+
DBEngineVersion.add_member(:serverless_v2_features_support, Shapes::ShapeRef.new(shape: ServerlessV2FeaturesSupport, location_name: "ServerlessV2FeaturesSupport"))
|
1681
1684
|
DBEngineVersion.struct_class = Types::DBEngineVersion
|
1682
1685
|
|
1683
1686
|
DBEngineVersionList.member = Shapes::ShapeRef.new(shape: DBEngineVersion, location_name: "DBEngineVersion")
|
@@ -1832,6 +1835,8 @@ module Aws::RDS
|
|
1832
1835
|
|
1833
1836
|
DBInstanceNotFoundFault.struct_class = Types::DBInstanceNotFoundFault
|
1834
1837
|
|
1838
|
+
DBInstanceNotReadyFault.struct_class = Types::DBInstanceNotReadyFault
|
1839
|
+
|
1835
1840
|
DBInstanceRole.add_member(:role_arn, Shapes::ShapeRef.new(shape: String, location_name: "RoleArn"))
|
1836
1841
|
DBInstanceRole.add_member(:feature_name, Shapes::ShapeRef.new(shape: String, location_name: "FeatureName"))
|
1837
1842
|
DBInstanceRole.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
|
@@ -4056,12 +4061,18 @@ module Aws::RDS
|
|
4056
4061
|
ScalingConfigurationInfo.add_member(:seconds_before_timeout, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "SecondsBeforeTimeout"))
|
4057
4062
|
ScalingConfigurationInfo.struct_class = Types::ScalingConfigurationInfo
|
4058
4063
|
|
4064
|
+
ServerlessV2FeaturesSupport.add_member(:min_capacity, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MinCapacity"))
|
4065
|
+
ServerlessV2FeaturesSupport.add_member(:max_capacity, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MaxCapacity"))
|
4066
|
+
ServerlessV2FeaturesSupport.struct_class = Types::ServerlessV2FeaturesSupport
|
4067
|
+
|
4059
4068
|
ServerlessV2ScalingConfiguration.add_member(:min_capacity, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MinCapacity"))
|
4060
4069
|
ServerlessV2ScalingConfiguration.add_member(:max_capacity, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MaxCapacity"))
|
4070
|
+
ServerlessV2ScalingConfiguration.add_member(:seconds_until_auto_pause, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "SecondsUntilAutoPause"))
|
4061
4071
|
ServerlessV2ScalingConfiguration.struct_class = Types::ServerlessV2ScalingConfiguration
|
4062
4072
|
|
4063
4073
|
ServerlessV2ScalingConfigurationInfo.add_member(:min_capacity, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MinCapacity"))
|
4064
4074
|
ServerlessV2ScalingConfigurationInfo.add_member(:max_capacity, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MaxCapacity"))
|
4075
|
+
ServerlessV2ScalingConfigurationInfo.add_member(:seconds_until_auto_pause, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "SecondsUntilAutoPause"))
|
4065
4076
|
ServerlessV2ScalingConfigurationInfo.struct_class = Types::ServerlessV2ScalingConfigurationInfo
|
4066
4077
|
|
4067
4078
|
SharedSnapshotQuotaExceededFault.struct_class = Types::SharedSnapshotQuotaExceededFault
|
@@ -5255,6 +5266,7 @@ module Aws::RDS
|
|
5255
5266
|
o.input = Shapes::ShapeRef.new(shape: DescribeDBLogFilesMessage)
|
5256
5267
|
o.output = Shapes::ShapeRef.new(shape: DescribeDBLogFilesResponse)
|
5257
5268
|
o.errors << Shapes::ShapeRef.new(shape: DBInstanceNotFoundFault)
|
5269
|
+
o.errors << Shapes::ShapeRef.new(shape: DBInstanceNotReadyFault)
|
5258
5270
|
o[:pager] = Aws::Pager.new(
|
5259
5271
|
limit_key: "max_records",
|
5260
5272
|
tokens: {
|
@@ -5700,6 +5712,7 @@ module Aws::RDS
|
|
5700
5712
|
o.input = Shapes::ShapeRef.new(shape: DownloadDBLogFilePortionMessage)
|
5701
5713
|
o.output = Shapes::ShapeRef.new(shape: DownloadDBLogFilePortionDetails)
|
5702
5714
|
o.errors << Shapes::ShapeRef.new(shape: DBInstanceNotFoundFault)
|
5715
|
+
o.errors << Shapes::ShapeRef.new(shape: DBInstanceNotReadyFault)
|
5703
5716
|
o.errors << Shapes::ShapeRef.new(shape: DBLogFileNotFoundFault)
|
5704
5717
|
o[:pager] = Aws::Pager.new(
|
5705
5718
|
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
@@ -3344,6 +3344,9 @@ module Aws::RDS
|
|
3344
3344
|
#
|
3345
3345
|
# * Must contain 1 to 64 alphanumeric characters.
|
3346
3346
|
#
|
3347
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
3348
|
+
# underscores, or digits (0-9).
|
3349
|
+
#
|
3347
3350
|
# * Can't be a word reserved by the database engine.
|
3348
3351
|
#
|
3349
3352
|
# Amazon Aurora PostgreSQL
|
@@ -3580,7 +3583,6 @@ module Aws::RDS
|
|
3580
3583
|
# to 16384.
|
3581
3584
|
#
|
3582
3585
|
# * Web and Express editions: Must be an integer from 20 to 16384.
|
3583
|
-
#
|
3584
3586
|
# * Provisioned IOPS storage (io1, io2):
|
3585
3587
|
#
|
3586
3588
|
# * Enterprise and Standard editions: Must be an integer from 100
|
@@ -3588,7 +3590,6 @@ module Aws::RDS
|
|
3588
3590
|
#
|
3589
3591
|
# * Web and Express editions: Must be an integer from 100 to
|
3590
3592
|
# 16384.
|
3591
|
-
#
|
3592
3593
|
# * Magnetic storage (standard):
|
3593
3594
|
#
|
3594
3595
|
# * Enterprise and Standard editions: Must be an integer from 20
|
@@ -8578,6 +8579,16 @@ module Aws::RDS
|
|
8578
8579
|
# integrations with Amazon Redshift.
|
8579
8580
|
# @return [Boolean]
|
8580
8581
|
#
|
8582
|
+
# @!attribute [rw] serverless_v2_features_support
|
8583
|
+
# Specifies any Aurora Serverless v2 properties or limits that differ
|
8584
|
+
# between Aurora engine versions. You can test the values of this
|
8585
|
+
# attribute when deciding which Aurora version to use in a new or
|
8586
|
+
# upgraded DB cluster. You can also retrieve the version of an
|
8587
|
+
# existing DB cluster and check whether that version supports certain
|
8588
|
+
# Aurora Serverless v2 features before you attempt to use those
|
8589
|
+
# features.
|
8590
|
+
# @return [Types::ServerlessV2FeaturesSupport]
|
8591
|
+
#
|
8581
8592
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBEngineVersion AWS API Documentation
|
8582
8593
|
#
|
8583
8594
|
class DBEngineVersion < Struct.new(
|
@@ -8614,7 +8625,8 @@ module Aws::RDS
|
|
8614
8625
|
:supports_certificate_rotation_without_restart,
|
8615
8626
|
:supported_ca_certificate_identifiers,
|
8616
8627
|
:supports_local_write_forwarding,
|
8617
|
-
:supports_integrations
|
8628
|
+
:supports_integrations,
|
8629
|
+
:serverless_v2_features_support)
|
8618
8630
|
SENSITIVE = []
|
8619
8631
|
include Aws::Structure
|
8620
8632
|
end
|
@@ -9635,6 +9647,13 @@ module Aws::RDS
|
|
9635
9647
|
#
|
9636
9648
|
class DBInstanceNotFoundFault < Aws::EmptyStructure; end
|
9637
9649
|
|
9650
|
+
# An attempt to download or examine log files didn't succeed because an
|
9651
|
+
# Aurora Serverless v2 instance was paused.
|
9652
|
+
#
|
9653
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstanceNotReadyFault AWS API Documentation
|
9654
|
+
#
|
9655
|
+
class DBInstanceNotReadyFault < Aws::EmptyStructure; end
|
9656
|
+
|
9638
9657
|
# Information about an Amazon Web Services Identity and Access
|
9639
9658
|
# Management (IAM) role that is associated with a DB instance.
|
9640
9659
|
#
|
@@ -10604,6 +10623,8 @@ module Aws::RDS
|
|
10604
10623
|
#
|
10605
10624
|
class DBSecurityGroupQuotaExceededFault < Aws::EmptyStructure; end
|
10606
10625
|
|
10626
|
+
# Contains the details for an Amazon RDS DB shard group.
|
10627
|
+
#
|
10607
10628
|
# @!attribute [rw] db_shard_group_resource_id
|
10608
10629
|
# The Amazon Web Services Region-unique, immutable identifier for the
|
10609
10630
|
# DB shard group.
|
@@ -12181,7 +12202,6 @@ module Aws::RDS
|
|
12181
12202
|
# backup replication is stopped.
|
12182
12203
|
#
|
12183
12204
|
# ^
|
12184
|
-
#
|
12185
12205
|
# * `db-cluster-id` - Accepts DB cluster identifiers and Amazon
|
12186
12206
|
# Resource Names (ARNs). The results list includes only information
|
12187
12207
|
# about the DB cluster automated backups identified by these ARNs.
|
@@ -12272,7 +12292,6 @@ module Aws::RDS
|
|
12272
12292
|
# * `failed`
|
12273
12293
|
#
|
12274
12294
|
# * `pending`
|
12275
|
-
#
|
12276
12295
|
# The results list includes information about only the backtracks
|
12277
12296
|
# identified by these values.
|
12278
12297
|
# @return [Array<Types::Filter>]
|
@@ -12791,7 +12810,6 @@ module Aws::RDS
|
|
12791
12810
|
# * `provisioned`
|
12792
12811
|
#
|
12793
12812
|
# * `serverless`
|
12794
|
-
#
|
12795
12813
|
# * `engine-version` - Accepts engine versions. The results list only
|
12796
12814
|
# includes information about the DB engine versions for these engine
|
12797
12815
|
# versions.
|
@@ -12901,7 +12919,6 @@ module Aws::RDS
|
|
12901
12919
|
#
|
12902
12920
|
# * `retained` - Automated backups for deleted instances and after
|
12903
12921
|
# backup replication is stopped.
|
12904
|
-
#
|
12905
12922
|
# * `db-instance-id` - Accepts DB instance identifiers and Amazon
|
12906
12923
|
# Resource Names (ARNs). The results list includes only information
|
12907
12924
|
# about the DB instance automated backups identified by these ARNs.
|
@@ -13518,7 +13535,6 @@ module Aws::RDS
|
|
13518
13535
|
# * `resolved` - The recommendations which are completed.
|
13519
13536
|
#
|
13520
13537
|
# * `dismissed` - The recommendations that you dismissed.
|
13521
|
-
#
|
13522
13538
|
# The results list only includes the recommendations whose status is
|
13523
13539
|
# one of the specified filter values.
|
13524
13540
|
#
|
@@ -13535,7 +13551,6 @@ module Aws::RDS
|
|
13535
13551
|
# * `low`
|
13536
13552
|
#
|
13537
13553
|
# * `informational`
|
13538
|
-
#
|
13539
13554
|
# * `type-id` - Accepts a list of recommendation type identifiers. The
|
13540
13555
|
# results list only includes the recommendations whose type is one
|
13541
13556
|
# of the specified filter values.
|
@@ -17211,11 +17226,11 @@ module Aws::RDS
|
|
17211
17226
|
# @return [String]
|
17212
17227
|
#
|
17213
17228
|
# @!attribute [rw] apply_immediately
|
17214
|
-
# Specifies whether the modifications in this request
|
17215
|
-
#
|
17216
|
-
#
|
17217
|
-
#
|
17218
|
-
#
|
17229
|
+
# Specifies whether the modifications in this request are
|
17230
|
+
# asynchronously applied as soon as possible, regardless of the
|
17231
|
+
# `PreferredMaintenanceWindow` setting for the DB cluster. If this
|
17232
|
+
# parameter is disabled, changes to the DB cluster are applied during
|
17233
|
+
# the next maintenance window.
|
17219
17234
|
#
|
17220
17235
|
# Most modifications can be applied immediately or during the next
|
17221
17236
|
# scheduled maintenance window. Some modifications, such as turning on
|
@@ -26694,6 +26709,34 @@ module Aws::RDS
|
|
26694
26709
|
include Aws::Structure
|
26695
26710
|
end
|
26696
26711
|
|
26712
|
+
# Specifies any Aurora Serverless v2 properties or limits that differ
|
26713
|
+
# between Aurora engine versions. You can test the values of this
|
26714
|
+
# attribute when deciding which Aurora version to use in a new or
|
26715
|
+
# upgraded DB cluster. You can also retrieve the version of an existing
|
26716
|
+
# DB cluster and check whether that version supports certain Aurora
|
26717
|
+
# Serverless v2 features before you attempt to use those features.
|
26718
|
+
#
|
26719
|
+
# @!attribute [rw] min_capacity
|
26720
|
+
# If the minimum capacity is 0 ACUs, the engine version supports the
|
26721
|
+
# automatic pause/resume feature of Aurora Serverless v2.
|
26722
|
+
# @return [Float]
|
26723
|
+
#
|
26724
|
+
# @!attribute [rw] max_capacity
|
26725
|
+
# Specifies the upper Aurora Serverless v2 capacity limit for a
|
26726
|
+
# particular engine version. Depending on the engine version, the
|
26727
|
+
# maximum capacity for an Aurora Serverless v2 cluster might be `256`
|
26728
|
+
# or `128`.
|
26729
|
+
# @return [Float]
|
26730
|
+
#
|
26731
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ServerlessV2FeaturesSupport AWS API Documentation
|
26732
|
+
#
|
26733
|
+
class ServerlessV2FeaturesSupport < Struct.new(
|
26734
|
+
:min_capacity,
|
26735
|
+
:max_capacity)
|
26736
|
+
SENSITIVE = []
|
26737
|
+
include Aws::Structure
|
26738
|
+
end
|
26739
|
+
|
26697
26740
|
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
26698
26741
|
# cluster.
|
26699
26742
|
#
|
@@ -26707,22 +26750,35 @@ module Aws::RDS
|
|
26707
26750
|
# @!attribute [rw] min_capacity
|
26708
26751
|
# The minimum number of Aurora capacity units (ACUs) for a DB instance
|
26709
26752
|
# 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
|
-
#
|
26753
|
+
# half-step increments, such as 8, 8.5, 9, and so on. For Aurora
|
26754
|
+
# versions that support the Aurora Serverless v2 auto-pause feature,
|
26755
|
+
# the smallest value that you can use is 0. For versions that don't
|
26756
|
+
# support Aurora Serverless v2 auto-pause, the smallest value that you
|
26757
|
+
# can use is 0.5.
|
26712
26758
|
# @return [Float]
|
26713
26759
|
#
|
26714
26760
|
# @!attribute [rw] max_capacity
|
26715
26761
|
# The maximum number of Aurora capacity units (ACUs) for a DB instance
|
26716
26762
|
# 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
|
26763
|
+
# half-step increments, such as 32, 32.5, 33, and so on. The largest
|
26764
|
+
# value that you can use is 256 for recent Aurora versions, or 128 for
|
26765
|
+
# older versions.
|
26719
26766
|
# @return [Float]
|
26720
26767
|
#
|
26768
|
+
# @!attribute [rw] seconds_until_auto_pause
|
26769
|
+
# Specifies the number of seconds an Aurora Serverless v2 DB instance
|
26770
|
+
# must be idle before Aurora attempts to automatically pause it.
|
26771
|
+
#
|
26772
|
+
# Specify a value between 300 seconds (five minutes) and 86,400
|
26773
|
+
# seconds (one day). The default is 300 seconds.
|
26774
|
+
# @return [Integer]
|
26775
|
+
#
|
26721
26776
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ServerlessV2ScalingConfiguration AWS API Documentation
|
26722
26777
|
#
|
26723
26778
|
class ServerlessV2ScalingConfiguration < Struct.new(
|
26724
26779
|
:min_capacity,
|
26725
|
-
:max_capacity
|
26780
|
+
:max_capacity,
|
26781
|
+
:seconds_until_auto_pause)
|
26726
26782
|
SENSITIVE = []
|
26727
26783
|
include Aws::Structure
|
26728
26784
|
end
|
@@ -26739,22 +26795,40 @@ module Aws::RDS
|
|
26739
26795
|
# @!attribute [rw] min_capacity
|
26740
26796
|
# The minimum number of Aurora capacity units (ACUs) for a DB instance
|
26741
26797
|
# 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
|
-
#
|
26798
|
+
# half-step increments, such as 8, 8.5, 9, and so on. For Aurora
|
26799
|
+
# versions that support the Aurora Serverless v2 auto-pause feature,
|
26800
|
+
# the smallest value that you can use is 0. For versions that don't
|
26801
|
+
# support Aurora Serverless v2 auto-pause, the smallest value that you
|
26802
|
+
# can use is 0.5.
|
26744
26803
|
# @return [Float]
|
26745
26804
|
#
|
26746
26805
|
# @!attribute [rw] max_capacity
|
26747
26806
|
# The maximum number of Aurora capacity units (ACUs) for a DB instance
|
26748
26807
|
# 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
|
26808
|
+
# half-step increments, such as 32, 32.5, 33, and so on. The largest
|
26809
|
+
# value that you can use is 256 for recent Aurora versions, or 128 for
|
26810
|
+
# older versions.
|
26751
26811
|
# @return [Float]
|
26752
26812
|
#
|
26813
|
+
# @!attribute [rw] seconds_until_auto_pause
|
26814
|
+
# The number of seconds an Aurora Serverless v2 DB instance must be
|
26815
|
+
# idle before Aurora attempts to automatically pause it. This property
|
26816
|
+
# is only shown when the minimum capacity for the cluster is set to 0
|
26817
|
+
# ACUs. Changing the minimum capacity to a nonzero value removes this
|
26818
|
+
# property. If you later change the minimum capacity back to 0 ACUs,
|
26819
|
+
# this property is reset to its default value unless you specify it
|
26820
|
+
# again.
|
26821
|
+
#
|
26822
|
+
# This value ranges between 300 seconds (five minutes) and 86,400
|
26823
|
+
# seconds (one day). The default is 300 seconds.
|
26824
|
+
# @return [Integer]
|
26825
|
+
#
|
26753
26826
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ServerlessV2ScalingConfigurationInfo AWS API Documentation
|
26754
26827
|
#
|
26755
26828
|
class ServerlessV2ScalingConfigurationInfo < Struct.new(
|
26756
26829
|
:min_capacity,
|
26757
|
-
:max_capacity
|
26830
|
+
:max_capacity,
|
26831
|
+
:seconds_until_auto_pause)
|
26758
26832
|
SENSITIVE = []
|
26759
26833
|
include Aws::Structure
|
26760
26834
|
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.259.0'
|
84
84
|
|
85
85
|
end
|
86
86
|
|
data/sig/client.rbs
CHANGED
@@ -340,6 +340,7 @@ module Aws
|
|
340
340
|
def supported_ca_certificate_identifiers: () -> ::Array[::String]
|
341
341
|
def supports_local_write_forwarding: () -> bool
|
342
342
|
def supports_integrations: () -> bool
|
343
|
+
def serverless_v2_features_support: () -> Types::ServerlessV2FeaturesSupport
|
343
344
|
end
|
344
345
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#create_custom_db_engine_version-instance_method
|
345
346
|
def create_custom_db_engine_version: (
|
@@ -432,7 +433,8 @@ module Aws
|
|
432
433
|
?enable_limitless_database: bool,
|
433
434
|
?serverless_v2_scaling_configuration: {
|
434
435
|
min_capacity: ::Float?,
|
435
|
-
max_capacity: ::Float
|
436
|
+
max_capacity: ::Float?,
|
437
|
+
seconds_until_auto_pause: ::Integer?
|
436
438
|
},
|
437
439
|
?network_type: ::String,
|
438
440
|
?cluster_scalability_type: ("standard" | "limitless"),
|
@@ -975,6 +977,7 @@ module Aws
|
|
975
977
|
def supported_ca_certificate_identifiers: () -> ::Array[::String]
|
976
978
|
def supports_local_write_forwarding: () -> bool
|
977
979
|
def supports_integrations: () -> bool
|
980
|
+
def serverless_v2_features_support: () -> Types::ServerlessV2FeaturesSupport
|
978
981
|
end
|
979
982
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#delete_custom_db_engine_version-instance_method
|
980
983
|
def delete_custom_db_engine_version: (
|
@@ -2239,6 +2242,7 @@ module Aws
|
|
2239
2242
|
def supported_ca_certificate_identifiers: () -> ::Array[::String]
|
2240
2243
|
def supports_local_write_forwarding: () -> bool
|
2241
2244
|
def supports_integrations: () -> bool
|
2245
|
+
def serverless_v2_features_support: () -> Types::ServerlessV2FeaturesSupport
|
2242
2246
|
end
|
2243
2247
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#modify_custom_db_engine_version-instance_method
|
2244
2248
|
def modify_custom_db_engine_version: (
|
@@ -2301,7 +2305,8 @@ module Aws
|
|
2301
2305
|
?performance_insights_retention_period: ::Integer,
|
2302
2306
|
?serverless_v2_scaling_configuration: {
|
2303
2307
|
min_capacity: ::Float?,
|
2304
|
-
max_capacity: ::Float
|
2308
|
+
max_capacity: ::Float?,
|
2309
|
+
seconds_until_auto_pause: ::Integer?
|
2305
2310
|
},
|
2306
2311
|
?network_type: ::String,
|
2307
2312
|
?manage_master_user_password: bool,
|
@@ -2947,7 +2952,8 @@ module Aws
|
|
2947
2952
|
?domain_iam_role_name: ::String,
|
2948
2953
|
?serverless_v2_scaling_configuration: {
|
2949
2954
|
min_capacity: ::Float?,
|
2950
|
-
max_capacity: ::Float
|
2955
|
+
max_capacity: ::Float?,
|
2956
|
+
seconds_until_auto_pause: ::Integer?
|
2951
2957
|
},
|
2952
2958
|
?network_type: ::String,
|
2953
2959
|
?manage_master_user_password: bool,
|
@@ -3003,7 +3009,8 @@ module Aws
|
|
3003
3009
|
?publicly_accessible: bool,
|
3004
3010
|
?serverless_v2_scaling_configuration: {
|
3005
3011
|
min_capacity: ::Float?,
|
3006
|
-
max_capacity: ::Float
|
3012
|
+
max_capacity: ::Float?,
|
3013
|
+
seconds_until_auto_pause: ::Integer?
|
3007
3014
|
},
|
3008
3015
|
?network_type: ::String,
|
3009
3016
|
?rds_custom_cluster_configuration: {
|
@@ -3065,7 +3072,8 @@ module Aws
|
|
3065
3072
|
?iops: ::Integer,
|
3066
3073
|
?serverless_v2_scaling_configuration: {
|
3067
3074
|
min_capacity: ::Float?,
|
3068
|
-
max_capacity: ::Float
|
3075
|
+
max_capacity: ::Float?,
|
3076
|
+
seconds_until_auto_pause: ::Integer?
|
3069
3077
|
},
|
3070
3078
|
?network_type: ::String,
|
3071
3079
|
?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
@@ -1098,6 +1098,7 @@ module Aws::RDS
|
|
1098
1098
|
attr_accessor supported_ca_certificate_identifiers: ::Array[::String]
|
1099
1099
|
attr_accessor supports_local_write_forwarding: bool
|
1100
1100
|
attr_accessor supports_integrations: bool
|
1101
|
+
attr_accessor serverless_v2_features_support: Types::ServerlessV2FeaturesSupport
|
1101
1102
|
SENSITIVE: []
|
1102
1103
|
end
|
1103
1104
|
|
@@ -1261,6 +1262,9 @@ module Aws::RDS
|
|
1261
1262
|
class DBInstanceNotFoundFault < Aws::EmptyStructure
|
1262
1263
|
end
|
1263
1264
|
|
1265
|
+
class DBInstanceNotReadyFault < Aws::EmptyStructure
|
1266
|
+
end
|
1267
|
+
|
1264
1268
|
class DBInstanceRole
|
1265
1269
|
attr_accessor role_arn: ::String
|
1266
1270
|
attr_accessor feature_name: ::String
|
@@ -3987,15 +3991,23 @@ module Aws::RDS
|
|
3987
3991
|
SENSITIVE: []
|
3988
3992
|
end
|
3989
3993
|
|
3994
|
+
class ServerlessV2FeaturesSupport
|
3995
|
+
attr_accessor min_capacity: ::Float
|
3996
|
+
attr_accessor max_capacity: ::Float
|
3997
|
+
SENSITIVE: []
|
3998
|
+
end
|
3999
|
+
|
3990
4000
|
class ServerlessV2ScalingConfiguration
|
3991
4001
|
attr_accessor min_capacity: ::Float
|
3992
4002
|
attr_accessor max_capacity: ::Float
|
4003
|
+
attr_accessor seconds_until_auto_pause: ::Integer
|
3993
4004
|
SENSITIVE: []
|
3994
4005
|
end
|
3995
4006
|
|
3996
4007
|
class ServerlessV2ScalingConfigurationInfo
|
3997
4008
|
attr_accessor min_capacity: ::Float
|
3998
4009
|
attr_accessor max_capacity: ::Float
|
4010
|
+
attr_accessor seconds_until_auto_pause: ::Integer
|
3999
4011
|
SENSITIVE: []
|
4000
4012
|
end
|
4001
4013
|
|
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.259.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-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|