aws-sdk-rds 1.283.0 → 1.287.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +42 -19
- data/lib/aws-sdk-rds/client_api.rb +1 -0
- data/lib/aws-sdk-rds/db_cluster.rb +12 -0
- data/lib/aws-sdk-rds/db_instance.rb +6 -2
- data/lib/aws-sdk-rds/resource.rb +6 -2
- data/lib/aws-sdk-rds/types.rb +35 -14
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/db_cluster.rbs +3 -0
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +1 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9f3334e273e60cb4c6d7081a5090701c9661f30e170d8f2497aa12d2f409d211
|
4
|
+
data.tar.gz: aa0ddd7b4545ed3f72b28b7bce684adadb5be087dd861dd0d3ebca130e275896
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 36c3f74d9c49b418956285ccc9d91bf77f2b560b121aada950784d4f5f728a8ba1dc0d23bb4df2edc04255d95a23d873d98448da6e12cdb549c1c1f7bc6ebda4
|
7
|
+
data.tar.gz: 2248d3568260c33a46a23546f71b2e2266b13b92db1c7410ad7006fd485fb6fa9bb43b95e1eb84fbdfc0d4bdc23d74cefe00a0f14417cca2f840146f19397228
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.287.0 (2025-08-05)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adds a new Aurora Serverless v2 attribute to the DBCluster resource to expose the platform version. Also updates the attribute to be part of both the engine version and platform version descriptions.
|
8
|
+
|
9
|
+
1.286.0 (2025-08-04)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.285.0 (2025-07-31)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.284.0 (2025-07-21)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.283.0 (2025-07-01)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.287.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -97,8 +97,8 @@ module Aws::RDS
|
|
97
97
|
# class name or an instance of a plugin class.
|
98
98
|
#
|
99
99
|
# @option options [required, Aws::CredentialProvider] :credentials
|
100
|
-
# Your AWS credentials. This can be
|
101
|
-
# following classes:
|
100
|
+
# Your AWS credentials used for authentication. This can be any class that includes and implements
|
101
|
+
# `Aws::CredentialProvider`, or instance of any one of the following classes:
|
102
102
|
#
|
103
103
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
104
104
|
# credentials.
|
@@ -126,22 +126,24 @@ module Aws::RDS
|
|
126
126
|
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
127
127
|
# from the Cognito Identity service.
|
128
128
|
#
|
129
|
-
# When `:credentials` are not configured directly, the following
|
130
|
-
# locations will be searched for credentials:
|
129
|
+
# When `:credentials` are not configured directly, the following locations will be searched for credentials:
|
131
130
|
#
|
132
131
|
# * `Aws.config[:credentials]`
|
132
|
+
#
|
133
133
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
134
134
|
# `:account_id` options.
|
135
|
-
#
|
136
|
-
#
|
135
|
+
#
|
136
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
137
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
138
|
+
#
|
137
139
|
# * `~/.aws/credentials`
|
140
|
+
#
|
138
141
|
# * `~/.aws/config`
|
139
|
-
#
|
140
|
-
#
|
141
|
-
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
142
|
-
# enable retries and extended timeouts. Instance profile credential
|
143
|
-
#
|
144
|
-
# to true.
|
142
|
+
#
|
143
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive.
|
144
|
+
# Construct and pass an instance of `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
145
|
+
# enable retries and extended timeouts. Instance profile credential fetching can be disabled by
|
146
|
+
# setting `ENV['AWS_EC2_METADATA_DISABLED']` to `true`.
|
145
147
|
#
|
146
148
|
# @option options [required, String] :region
|
147
149
|
# The AWS region to connect to. The configured `:region` is
|
@@ -169,6 +171,11 @@ module Aws::RDS
|
|
169
171
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
170
172
|
# not retry instead of sleeping.
|
171
173
|
#
|
174
|
+
# @option options [Array<String>] :auth_scheme_preference
|
175
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
176
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
177
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
178
|
+
#
|
172
179
|
# @option options [Boolean] :client_side_monitoring (false)
|
173
180
|
# When `true`, client-side metrics will be collected for all API requests from
|
174
181
|
# this client.
|
@@ -255,8 +262,8 @@ module Aws::RDS
|
|
255
262
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
256
263
|
#
|
257
264
|
# @option options [String] :profile ("default")
|
258
|
-
# Used when loading credentials from the shared credentials file
|
259
|
-
#
|
265
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
266
|
+
# When not specified, 'default' is used.
|
260
267
|
#
|
261
268
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
262
269
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -369,8 +376,8 @@ module Aws::RDS
|
|
369
376
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
370
377
|
#
|
371
378
|
# @option options [Aws::TokenProvider] :token_provider
|
372
|
-
#
|
373
|
-
# following classes:
|
379
|
+
# Your Bearer token used for authentication. This can be any class that includes and implements
|
380
|
+
# `Aws::TokenProvider`, or instance of any one of the following classes:
|
374
381
|
#
|
375
382
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
376
383
|
# tokens.
|
@@ -3959,6 +3966,7 @@ module Aws::RDS
|
|
3959
3966
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
3960
3967
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
3961
3968
|
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
3969
|
+
# resp.db_cluster.serverless_v2_platform_version #=> String
|
3962
3970
|
# resp.db_cluster.network_type #=> String
|
3963
3971
|
# resp.db_cluster.db_system_id #=> String
|
3964
3972
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -4978,8 +4986,12 @@ module Aws::RDS
|
|
4978
4986
|
# set the `AvailabilityZone` parameter if the DB instance is a Multi-AZ
|
4979
4987
|
# deployment.
|
4980
4988
|
#
|
4981
|
-
# This setting doesn't apply to
|
4982
|
-
#
|
4989
|
+
# This setting doesn't apply to the following DB instances:
|
4990
|
+
#
|
4991
|
+
# * Amazon Aurora (DB instance Availability Zones (AZs) are managed by
|
4992
|
+
# the DB cluster.)
|
4993
|
+
#
|
4994
|
+
# * RDS Custom
|
4983
4995
|
#
|
4984
4996
|
# @option params [String] :engine_version
|
4985
4997
|
# The version number of the database engine to use.
|
@@ -9454,6 +9466,7 @@ module Aws::RDS
|
|
9454
9466
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
9455
9467
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
9456
9468
|
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
9469
|
+
# resp.db_cluster.serverless_v2_platform_version #=> String
|
9457
9470
|
# resp.db_cluster.network_type #=> String
|
9458
9471
|
# resp.db_cluster.db_system_id #=> String
|
9459
9472
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -12908,6 +12921,7 @@ module Aws::RDS
|
|
12908
12921
|
# resp.db_clusters[0].serverless_v2_scaling_configuration.min_capacity #=> Float
|
12909
12922
|
# resp.db_clusters[0].serverless_v2_scaling_configuration.max_capacity #=> Float
|
12910
12923
|
# resp.db_clusters[0].serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
12924
|
+
# resp.db_clusters[0].serverless_v2_platform_version #=> String
|
12911
12925
|
# resp.db_clusters[0].network_type #=> String
|
12912
12926
|
# resp.db_clusters[0].db_system_id #=> String
|
12913
12927
|
# resp.db_clusters[0].master_user_secret.secret_arn #=> String
|
@@ -18345,6 +18359,7 @@ module Aws::RDS
|
|
18345
18359
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
18346
18360
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
18347
18361
|
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
18362
|
+
# resp.db_cluster.serverless_v2_platform_version #=> String
|
18348
18363
|
# resp.db_cluster.network_type #=> String
|
18349
18364
|
# resp.db_cluster.db_system_id #=> String
|
18350
18365
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -20072,6 +20087,7 @@ module Aws::RDS
|
|
20072
20087
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
20073
20088
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
20074
20089
|
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
20090
|
+
# resp.db_cluster.serverless_v2_platform_version #=> String
|
20075
20091
|
# resp.db_cluster.network_type #=> String
|
20076
20092
|
# resp.db_cluster.db_system_id #=> String
|
20077
20093
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -23978,6 +23994,7 @@ module Aws::RDS
|
|
23978
23994
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
23979
23995
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
23980
23996
|
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
23997
|
+
# resp.db_cluster.serverless_v2_platform_version #=> String
|
23981
23998
|
# resp.db_cluster.network_type #=> String
|
23982
23999
|
# resp.db_cluster.db_system_id #=> String
|
23983
24000
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -24282,6 +24299,7 @@ module Aws::RDS
|
|
24282
24299
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
24283
24300
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
24284
24301
|
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
24302
|
+
# resp.db_cluster.serverless_v2_platform_version #=> String
|
24285
24303
|
# resp.db_cluster.network_type #=> String
|
24286
24304
|
# resp.db_cluster.db_system_id #=> String
|
24287
24305
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -25885,6 +25903,7 @@ module Aws::RDS
|
|
25885
25903
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
25886
25904
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
25887
25905
|
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
25906
|
+
# resp.db_cluster.serverless_v2_platform_version #=> String
|
25888
25907
|
# resp.db_cluster.network_type #=> String
|
25889
25908
|
# resp.db_cluster.db_system_id #=> String
|
25890
25909
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -26710,6 +26729,7 @@ module Aws::RDS
|
|
26710
26729
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
26711
26730
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
26712
26731
|
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
26732
|
+
# resp.db_cluster.serverless_v2_platform_version #=> String
|
26713
26733
|
# resp.db_cluster.network_type #=> String
|
26714
26734
|
# resp.db_cluster.db_system_id #=> String
|
26715
26735
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -27518,6 +27538,7 @@ module Aws::RDS
|
|
27518
27538
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
27519
27539
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
27520
27540
|
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
27541
|
+
# resp.db_cluster.serverless_v2_platform_version #=> String
|
27521
27542
|
# resp.db_cluster.network_type #=> String
|
27522
27543
|
# resp.db_cluster.db_system_id #=> String
|
27523
27544
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -30695,6 +30716,7 @@ module Aws::RDS
|
|
30695
30716
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
30696
30717
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
30697
30718
|
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
30719
|
+
# resp.db_cluster.serverless_v2_platform_version #=> String
|
30698
30720
|
# resp.db_cluster.network_type #=> String
|
30699
30721
|
# resp.db_cluster.db_system_id #=> String
|
30700
30722
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -31530,6 +31552,7 @@ module Aws::RDS
|
|
31530
31552
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
31531
31553
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
31532
31554
|
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
31555
|
+
# resp.db_cluster.serverless_v2_platform_version #=> String
|
31533
31556
|
# resp.db_cluster.network_type #=> String
|
31534
31557
|
# resp.db_cluster.db_system_id #=> String
|
31535
31558
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -32407,7 +32430,7 @@ module Aws::RDS
|
|
32407
32430
|
tracer: tracer
|
32408
32431
|
)
|
32409
32432
|
context[:gem_name] = 'aws-sdk-rds'
|
32410
|
-
context[:gem_version] = '1.
|
32433
|
+
context[:gem_version] = '1.287.0'
|
32411
32434
|
Seahorse::Client::Request.new(handlers, context)
|
32412
32435
|
end
|
32413
32436
|
|
@@ -1458,6 +1458,7 @@ module Aws::RDS
|
|
1458
1458
|
DBCluster.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
|
1459
1459
|
DBCluster.add_member(:performance_insights_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PerformanceInsightsRetentionPeriod"))
|
1460
1460
|
DBCluster.add_member(:serverless_v2_scaling_configuration, Shapes::ShapeRef.new(shape: ServerlessV2ScalingConfigurationInfo, location_name: "ServerlessV2ScalingConfiguration"))
|
1461
|
+
DBCluster.add_member(:serverless_v2_platform_version, Shapes::ShapeRef.new(shape: String, location_name: "ServerlessV2PlatformVersion"))
|
1461
1462
|
DBCluster.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
1462
1463
|
DBCluster.add_member(:db_system_id, Shapes::ShapeRef.new(shape: String, location_name: "DBSystemId"))
|
1463
1464
|
DBCluster.add_member(:master_user_secret, Shapes::ShapeRef.new(shape: MasterUserSecret, location_name: "MasterUserSecret"))
|
@@ -649,6 +649,18 @@ module Aws::RDS
|
|
649
649
|
data[:serverless_v2_scaling_configuration]
|
650
650
|
end
|
651
651
|
|
652
|
+
# The version of the Aurora Serverless V2 platform used by the DB
|
653
|
+
# cluster. For more information, see [Using Aurora Serverless v2][1] in
|
654
|
+
# the *Amazon Aurora User Guide*.
|
655
|
+
#
|
656
|
+
#
|
657
|
+
#
|
658
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
659
|
+
# @return [String]
|
660
|
+
def serverless_v2_platform_version
|
661
|
+
data[:serverless_v2_platform_version]
|
662
|
+
end
|
663
|
+
|
652
664
|
# The network type of the DB instance.
|
653
665
|
#
|
654
666
|
# The network type is determined by the `DBSubnetGroup` specified for
|
@@ -1551,8 +1551,12 @@ module Aws::RDS
|
|
1551
1551
|
# set the `AvailabilityZone` parameter if the DB instance is a Multi-AZ
|
1552
1552
|
# deployment.
|
1553
1553
|
#
|
1554
|
-
# This setting doesn't apply to
|
1555
|
-
#
|
1554
|
+
# This setting doesn't apply to the following DB instances:
|
1555
|
+
#
|
1556
|
+
# * Amazon Aurora (DB instance Availability Zones (AZs) are managed by
|
1557
|
+
# the DB cluster.)
|
1558
|
+
#
|
1559
|
+
# * RDS Custom
|
1556
1560
|
# @option options [String] :engine_version
|
1557
1561
|
# The version number of the database engine to use.
|
1558
1562
|
#
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -1696,8 +1696,12 @@ module Aws::RDS
|
|
1696
1696
|
# set the `AvailabilityZone` parameter if the DB instance is a Multi-AZ
|
1697
1697
|
# deployment.
|
1698
1698
|
#
|
1699
|
-
# This setting doesn't apply to
|
1700
|
-
#
|
1699
|
+
# This setting doesn't apply to the following DB instances:
|
1700
|
+
#
|
1701
|
+
# * Amazon Aurora (DB instance Availability Zones (AZs) are managed by
|
1702
|
+
# the DB cluster.)
|
1703
|
+
#
|
1704
|
+
# * RDS Custom
|
1701
1705
|
# @option options [String] :engine_version
|
1702
1706
|
# The version number of the database engine to use.
|
1703
1707
|
#
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -4012,8 +4012,12 @@ module Aws::RDS
|
|
4012
4012
|
# can't set the `AvailabilityZone` parameter if the DB instance is a
|
4013
4013
|
# Multi-AZ deployment.
|
4014
4014
|
#
|
4015
|
-
# This setting doesn't apply to
|
4016
|
-
#
|
4015
|
+
# This setting doesn't apply to the following DB instances:
|
4016
|
+
#
|
4017
|
+
# * Amazon Aurora (DB instance Availability Zones (AZs) are managed by
|
4018
|
+
# the DB cluster.)
|
4019
|
+
#
|
4020
|
+
# * RDS Custom
|
4017
4021
|
# @return [Boolean]
|
4018
4022
|
#
|
4019
4023
|
# @!attribute [rw] engine_version
|
@@ -7445,6 +7449,16 @@ module Aws::RDS
|
|
7445
7449
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
7446
7450
|
# @return [Types::ServerlessV2ScalingConfigurationInfo]
|
7447
7451
|
#
|
7452
|
+
# @!attribute [rw] serverless_v2_platform_version
|
7453
|
+
# The version of the Aurora Serverless V2 platform used by the DB
|
7454
|
+
# cluster. For more information, see [Using Aurora Serverless v2][1]
|
7455
|
+
# in the *Amazon Aurora User Guide*.
|
7456
|
+
#
|
7457
|
+
#
|
7458
|
+
#
|
7459
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
7460
|
+
# @return [String]
|
7461
|
+
#
|
7448
7462
|
# @!attribute [rw] network_type
|
7449
7463
|
# The network type of the DB instance.
|
7450
7464
|
#
|
@@ -7615,6 +7629,7 @@ module Aws::RDS
|
|
7615
7629
|
:performance_insights_kms_key_id,
|
7616
7630
|
:performance_insights_retention_period,
|
7617
7631
|
:serverless_v2_scaling_configuration,
|
7632
|
+
:serverless_v2_platform_version,
|
7618
7633
|
:network_type,
|
7619
7634
|
:db_system_id,
|
7620
7635
|
:master_user_secret,
|
@@ -27499,22 +27514,24 @@ module Aws::RDS
|
|
27499
27514
|
end
|
27500
27515
|
|
27501
27516
|
# Specifies any Aurora Serverless v2 properties or limits that differ
|
27502
|
-
# between Aurora engine versions. You can test the
|
27503
|
-
# attribute when deciding which Aurora version to use in
|
27504
|
-
# upgraded DB cluster. You can also retrieve the version of an
|
27505
|
-
# DB cluster and check whether that version supports certain
|
27506
|
-
# Serverless v2 features before you attempt to use those
|
27517
|
+
# between Aurora engine versions and platform versions. You can test the
|
27518
|
+
# values of this attribute when deciding which Aurora version to use in
|
27519
|
+
# a new or upgraded DB cluster. You can also retrieve the version of an
|
27520
|
+
# existing DB cluster and check whether that version supports certain
|
27521
|
+
# Aurora Serverless v2 features before you attempt to use those
|
27522
|
+
# features.
|
27507
27523
|
#
|
27508
27524
|
# @!attribute [rw] min_capacity
|
27509
|
-
# If the minimum capacity is 0 ACUs, the engine version
|
27510
|
-
# automatic pause/resume feature of Aurora
|
27525
|
+
# If the minimum capacity is 0 ACUs, the engine version or platform
|
27526
|
+
# version supports the automatic pause/resume feature of Aurora
|
27527
|
+
# Serverless v2.
|
27511
27528
|
# @return [Float]
|
27512
27529
|
#
|
27513
27530
|
# @!attribute [rw] max_capacity
|
27514
27531
|
# Specifies the upper Aurora Serverless v2 capacity limit for a
|
27515
|
-
# particular engine version. Depending on the
|
27516
|
-
# maximum capacity for an Aurora Serverless v2
|
27517
|
-
# or `128`.
|
27532
|
+
# particular engine version or platform version. Depending on the
|
27533
|
+
# engine version, the maximum capacity for an Aurora Serverless v2
|
27534
|
+
# cluster might be `256` or `128`.
|
27518
27535
|
# @return [Float]
|
27519
27536
|
#
|
27520
27537
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ServerlessV2FeaturesSupport AWS API Documentation
|
@@ -27551,7 +27568,9 @@ module Aws::RDS
|
|
27551
27568
|
# in an Aurora Serverless v2 cluster. You can specify ACU values in
|
27552
27569
|
# half-step increments, such as 32, 32.5, 33, and so on. The largest
|
27553
27570
|
# value that you can use is 256 for recent Aurora versions, or 128 for
|
27554
|
-
# older versions.
|
27571
|
+
# older versions. You can check the attributes of your engine version
|
27572
|
+
# or platform version to determine the specific maximum capacity
|
27573
|
+
# supported.
|
27555
27574
|
# @return [Float]
|
27556
27575
|
#
|
27557
27576
|
# @!attribute [rw] seconds_until_auto_pause
|
@@ -27596,7 +27615,9 @@ module Aws::RDS
|
|
27596
27615
|
# in an Aurora Serverless v2 cluster. You can specify ACU values in
|
27597
27616
|
# half-step increments, such as 32, 32.5, 33, and so on. The largest
|
27598
27617
|
# value that you can use is 256 for recent Aurora versions, or 128 for
|
27599
|
-
# older versions.
|
27618
|
+
# older versions. You can check the attributes of your engine version
|
27619
|
+
# or platform version to determine the specific maximum capacity
|
27620
|
+
# supported.
|
27600
27621
|
# @return [Float]
|
27601
27622
|
#
|
27602
27623
|
# @!attribute [rw] seconds_until_auto_pause
|
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.287.0'
|
84
84
|
|
85
85
|
end
|
86
86
|
|
data/sig/client.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
data/sig/db_cluster.rbs
CHANGED
@@ -231,6 +231,9 @@ module Aws
|
|
231
231
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#serverless_v2_scaling_configuration-instance_method
|
232
232
|
def serverless_v2_scaling_configuration: () -> Types::ServerlessV2ScalingConfigurationInfo
|
233
233
|
|
234
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#serverless_v2_platform_version-instance_method
|
235
|
+
def serverless_v2_platform_version: () -> ::String
|
236
|
+
|
234
237
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#network_type-instance_method
|
235
238
|
def network_type: () -> ::String
|
236
239
|
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
data/sig/types.rbs
CHANGED
@@ -830,6 +830,7 @@ module Aws::RDS
|
|
830
830
|
attr_accessor performance_insights_kms_key_id: ::String
|
831
831
|
attr_accessor performance_insights_retention_period: ::Integer
|
832
832
|
attr_accessor serverless_v2_scaling_configuration: Types::ServerlessV2ScalingConfigurationInfo
|
833
|
+
attr_accessor serverless_v2_platform_version: ::String
|
833
834
|
attr_accessor network_type: ::String
|
834
835
|
attr_accessor db_system_id: ::String
|
835
836
|
attr_accessor master_user_secret: Types::MasterUserSecret
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.287.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.228.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.228.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|