aws-sdk-rds 1.221.0 → 1.222.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +16 -3
- data/lib/aws-sdk-rds/db_instance.rb +7 -1
- data/lib/aws-sdk-rds/resource.rb +7 -1
- data/lib/aws-sdk-rds/types.rb +15 -2
- data/lib/aws-sdk-rds.rb +1 -1
- 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: 503c7bee05e92e01c1d1696023c373435b014f1bc6490b3fc433772d9b8ffeda
|
4
|
+
data.tar.gz: f0875e3148cee8342afdf53370348b59250fed4dcf4240f1620751cb4c82b602
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3df2656bbe3ae03f4546066025fe96d059f931bb54ed8b9fafc79c28952902cb0a9e353f0c2959a92b55c5a19fe8e21649bad788a7a9c2ef95136a5f454a5c80
|
7
|
+
data.tar.gz: 5e86063421fef4fe9bc1515b34db3e6f99395bd8548e26da36b172b3a872ba734bcaea61edc87f765970d236ef4cd99b7f2d86945fddedd2956ac179cc2f9ef1
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.222.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -4197,7 +4197,9 @@ module Aws::RDS
|
|
4197
4197
|
#
|
4198
4198
|
# : The name of the database to create when the DB instance is created.
|
4199
4199
|
# If this parameter isn't specified, no database is created in the DB
|
4200
|
-
# instance.
|
4200
|
+
# instance. In some cases, we recommend that you don't add a database
|
4201
|
+
# name. For more information, see [Additional considerations][1] in
|
4202
|
+
# the *Amazon RDS User Guide*.
|
4201
4203
|
#
|
4202
4204
|
# Constraints:
|
4203
4205
|
#
|
@@ -4271,6 +4273,10 @@ module Aws::RDS
|
|
4271
4273
|
#
|
4272
4274
|
# : Not applicable. Must be null.
|
4273
4275
|
#
|
4276
|
+
#
|
4277
|
+
#
|
4278
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-db-instance-prereqs.html#db2-prereqs-additional-considerations
|
4279
|
+
#
|
4274
4280
|
# @option params [required, String] :db_instance_identifier
|
4275
4281
|
# The identifier for this DB instance. This parameter is stored as a
|
4276
4282
|
# lowercase string.
|
@@ -15553,7 +15559,14 @@ module Aws::RDS
|
|
15553
15559
|
# ^
|
15554
15560
|
#
|
15555
15561
|
# @option params [Array<Types::Filter>] :filters
|
15556
|
-
#
|
15562
|
+
# A filter that specifies one or more global database clusters to
|
15563
|
+
# describe. This parameter is case-sensitive.
|
15564
|
+
#
|
15565
|
+
# Currently, the only supported filter is `region`.
|
15566
|
+
#
|
15567
|
+
# If used, the request returns information about any global cluster with
|
15568
|
+
# at least one member (primary or secondary) in the specified Amazon Web
|
15569
|
+
# Services Regions.
|
15557
15570
|
#
|
15558
15571
|
# @option params [Integer] :max_records
|
15559
15572
|
# The maximum number of records to include in the response. If more
|
@@ -30504,7 +30517,7 @@ module Aws::RDS
|
|
30504
30517
|
params: params,
|
30505
30518
|
config: config)
|
30506
30519
|
context[:gem_name] = 'aws-sdk-rds'
|
30507
|
-
context[:gem_version] = '1.
|
30520
|
+
context[:gem_version] = '1.222.0'
|
30508
30521
|
Seahorse::Client::Request.new(handlers, context)
|
30509
30522
|
end
|
30510
30523
|
|
@@ -1056,7 +1056,9 @@ module Aws::RDS
|
|
1056
1056
|
#
|
1057
1057
|
# : The name of the database to create when the DB instance is created.
|
1058
1058
|
# If this parameter isn't specified, no database is created in the DB
|
1059
|
-
# instance.
|
1059
|
+
# instance. In some cases, we recommend that you don't add a database
|
1060
|
+
# name. For more information, see [Additional considerations][1] in
|
1061
|
+
# the *Amazon RDS User Guide*.
|
1060
1062
|
#
|
1061
1063
|
# Constraints:
|
1062
1064
|
#
|
@@ -1129,6 +1131,10 @@ module Aws::RDS
|
|
1129
1131
|
# RDS for SQL Server
|
1130
1132
|
#
|
1131
1133
|
# : Not applicable. Must be null.
|
1134
|
+
#
|
1135
|
+
#
|
1136
|
+
#
|
1137
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-db-instance-prereqs.html#db2-prereqs-additional-considerations
|
1132
1138
|
# @option options [Integer] :allocated_storage
|
1133
1139
|
# The amount of storage in gibibytes (GiB) to allocate for the DB
|
1134
1140
|
# instance.
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -1130,7 +1130,9 @@ module Aws::RDS
|
|
1130
1130
|
#
|
1131
1131
|
# : The name of the database to create when the DB instance is created.
|
1132
1132
|
# If this parameter isn't specified, no database is created in the DB
|
1133
|
-
# instance.
|
1133
|
+
# instance. In some cases, we recommend that you don't add a database
|
1134
|
+
# name. For more information, see [Additional considerations][1] in
|
1135
|
+
# the *Amazon RDS User Guide*.
|
1134
1136
|
#
|
1135
1137
|
# Constraints:
|
1136
1138
|
#
|
@@ -1203,6 +1205,10 @@ module Aws::RDS
|
|
1203
1205
|
# RDS for SQL Server
|
1204
1206
|
#
|
1205
1207
|
# : Not applicable. Must be null.
|
1208
|
+
#
|
1209
|
+
#
|
1210
|
+
#
|
1211
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-db-instance-prereqs.html#db2-prereqs-additional-considerations
|
1206
1212
|
# @option options [required, String] :db_instance_identifier
|
1207
1213
|
# The identifier for this DB instance. This parameter is stored as a
|
1208
1214
|
# lowercase string.
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -3252,7 +3252,9 @@ module Aws::RDS
|
|
3252
3252
|
#
|
3253
3253
|
# : The name of the database to create when the DB instance is
|
3254
3254
|
# created. If this parameter isn't specified, no database is
|
3255
|
-
# created in the DB instance.
|
3255
|
+
# created in the DB instance. In some cases, we recommend that you
|
3256
|
+
# don't add a database name. For more information, see [Additional
|
3257
|
+
# considerations][1] in the *Amazon RDS User Guide*.
|
3256
3258
|
#
|
3257
3259
|
# Constraints:
|
3258
3260
|
#
|
@@ -3326,6 +3328,10 @@ module Aws::RDS
|
|
3326
3328
|
# RDS for SQL Server
|
3327
3329
|
#
|
3328
3330
|
# : Not applicable. Must be null.
|
3331
|
+
#
|
3332
|
+
#
|
3333
|
+
#
|
3334
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-db-instance-prereqs.html#db2-prereqs-additional-considerations
|
3329
3335
|
# @return [String]
|
3330
3336
|
#
|
3331
3337
|
# @!attribute [rw] db_instance_identifier
|
@@ -14027,7 +14033,14 @@ module Aws::RDS
|
|
14027
14033
|
# @return [String]
|
14028
14034
|
#
|
14029
14035
|
# @!attribute [rw] filters
|
14030
|
-
#
|
14036
|
+
# A filter that specifies one or more global database clusters to
|
14037
|
+
# describe. This parameter is case-sensitive.
|
14038
|
+
#
|
14039
|
+
# Currently, the only supported filter is `region`.
|
14040
|
+
#
|
14041
|
+
# If used, the request returns information about any global cluster
|
14042
|
+
# with at least one member (primary or secondary) in the specified
|
14043
|
+
# Amazon Web Services Regions.
|
14031
14044
|
# @return [Array<Types::Filter>]
|
14032
14045
|
#
|
14033
14046
|
# @!attribute [rw] max_records
|
data/lib/aws-sdk-rds.rb
CHANGED
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.222.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-03-
|
11
|
+
date: 2024-03-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|