aws-sdk-rds 1.216.0 → 1.218.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +8 -7
- data/lib/aws-sdk-rds/client_api.rb +6 -5
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +1 -1
- data/lib/aws-sdk-rds/resource.rb +3 -2
- data/lib/aws-sdk-rds/types.rb +5 -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: 2f4f8ce66e1dabf20ddea2db6f8b09d8a10bd4c6acbd97d58e76da2619983e5f
|
4
|
+
data.tar.gz: e10a3fce7e6b571e9eb5aa54c15d2a487296a4f466722aead59418b859ff0bdb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 405727d5f6cc75602187fe13de4126753b7b17be7c5f363eb3b6b46ebfbc40ed2c92770f9aa4d92d4244cf08be51a0cbb7e09340346584a132a2ef68a905b57f
|
7
|
+
data.tar.gz: 1408c4ef875e48b5018cbdefd15568b191a0f3f3188e6a4be690c1a4ab6e5903ee929f9413cf29d320688d796c97ab82886f7a643088aeac63923de6d0d18028
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.218.0 (2024-02-23)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Add pattern and length based validations for DBShardGroupIdentifier
|
8
|
+
|
9
|
+
1.217.0 (2024-02-16)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Doc only update for a valid option in DB parameter group
|
13
|
+
|
4
14
|
1.216.0 (2024-02-14)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.218.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -2549,7 +2549,8 @@ module Aws::RDS
|
|
2549
2549
|
#
|
2550
2550
|
# Constraints:
|
2551
2551
|
#
|
2552
|
-
# * Must contain from 1 to 63
|
2552
|
+
# * Must contain from 1 to 63 (for Aurora DB clusters) or 1 to 52 (for
|
2553
|
+
# Multi-AZ DB clusters) letters, numbers, or hyphens.
|
2553
2554
|
#
|
2554
2555
|
# * First character must be a letter.
|
2555
2556
|
#
|
@@ -3871,7 +3872,7 @@ module Aws::RDS
|
|
3871
3872
|
#
|
3872
3873
|
# **RDS for PostgreSQL**
|
3873
3874
|
#
|
3874
|
-
# Example: `
|
3875
|
+
# Example: `postgres13`
|
3875
3876
|
#
|
3876
3877
|
# To list all of the available parameter group families for a DB engine,
|
3877
3878
|
# use the following command:
|
@@ -9738,7 +9739,7 @@ module Aws::RDS
|
|
9738
9739
|
# @example Request syntax with placeholder values
|
9739
9740
|
#
|
9740
9741
|
# resp = client.delete_db_shard_group({
|
9741
|
-
# db_shard_group_identifier: "
|
9742
|
+
# db_shard_group_identifier: "DBShardGroupIdentifier", # required
|
9742
9743
|
# })
|
9743
9744
|
#
|
9744
9745
|
# @example Response structure
|
@@ -13991,7 +13992,7 @@ module Aws::RDS
|
|
13991
13992
|
# @example Request syntax with placeholder values
|
13992
13993
|
#
|
13993
13994
|
# resp = client.describe_db_shard_groups({
|
13994
|
-
# db_shard_group_identifier: "
|
13995
|
+
# db_shard_group_identifier: "DBShardGroupIdentifier",
|
13995
13996
|
# filters: [
|
13996
13997
|
# {
|
13997
13998
|
# name: "String", # required
|
@@ -21346,7 +21347,7 @@ module Aws::RDS
|
|
21346
21347
|
# @example Request syntax with placeholder values
|
21347
21348
|
#
|
21348
21349
|
# resp = client.modify_db_shard_group({
|
21349
|
-
# db_shard_group_identifier: "
|
21350
|
+
# db_shard_group_identifier: "DBShardGroupIdentifier", # required
|
21350
21351
|
# max_acu: 1.0,
|
21351
21352
|
# })
|
21352
21353
|
#
|
@@ -23273,7 +23274,7 @@ module Aws::RDS
|
|
23273
23274
|
# @example Request syntax with placeholder values
|
23274
23275
|
#
|
23275
23276
|
# resp = client.reboot_db_shard_group({
|
23276
|
-
# db_shard_group_identifier: "
|
23277
|
+
# db_shard_group_identifier: "DBShardGroupIdentifier", # required
|
23277
23278
|
# })
|
23278
23279
|
#
|
23279
23280
|
# @example Response structure
|
@@ -30413,7 +30414,7 @@ module Aws::RDS
|
|
30413
30414
|
params: params,
|
30414
30415
|
config: config)
|
30415
30416
|
context[:gem_name] = 'aws-sdk-rds'
|
30416
|
-
context[:gem_version] = '1.
|
30417
|
+
context[:gem_version] = '1.218.0'
|
30417
30418
|
Seahorse::Client::Request.new(handlers, context)
|
30418
30419
|
end
|
30419
30420
|
|
@@ -249,6 +249,7 @@ module Aws::RDS
|
|
249
249
|
DBSecurityGroups = Shapes::ListShape.new(name: 'DBSecurityGroups')
|
250
250
|
DBShardGroup = Shapes::StructureShape.new(name: 'DBShardGroup')
|
251
251
|
DBShardGroupAlreadyExistsFault = Shapes::StructureShape.new(name: 'DBShardGroupAlreadyExistsFault')
|
252
|
+
DBShardGroupIdentifier = Shapes::StringShape.new(name: 'DBShardGroupIdentifier')
|
252
253
|
DBShardGroupNotFoundFault = Shapes::StructureShape.new(name: 'DBShardGroupNotFoundFault')
|
253
254
|
DBShardGroupsList = Shapes::ListShape.new(name: 'DBShardGroupsList')
|
254
255
|
DBSnapshot = Shapes::StructureShape.new(name: 'DBSnapshot')
|
@@ -1996,7 +1997,7 @@ module Aws::RDS
|
|
1996
1997
|
DBSecurityGroups.member = Shapes::ShapeRef.new(shape: DBSecurityGroup, location_name: "DBSecurityGroup")
|
1997
1998
|
|
1998
1999
|
DBShardGroup.add_member(:db_shard_group_resource_id, Shapes::ShapeRef.new(shape: String, location_name: "DBShardGroupResourceId"))
|
1999
|
-
DBShardGroup.add_member(:db_shard_group_identifier, Shapes::ShapeRef.new(shape:
|
2000
|
+
DBShardGroup.add_member(:db_shard_group_identifier, Shapes::ShapeRef.new(shape: DBShardGroupIdentifier, location_name: "DBShardGroupIdentifier"))
|
2000
2001
|
DBShardGroup.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterIdentifier"))
|
2001
2002
|
DBShardGroup.add_member(:max_acu, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MaxACU"))
|
2002
2003
|
DBShardGroup.add_member(:compute_redundancy, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "ComputeRedundancy"))
|
@@ -2193,7 +2194,7 @@ module Aws::RDS
|
|
2193
2194
|
DeleteDBSecurityGroupMessage.add_member(:db_security_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBSecurityGroupName"))
|
2194
2195
|
DeleteDBSecurityGroupMessage.struct_class = Types::DeleteDBSecurityGroupMessage
|
2195
2196
|
|
2196
|
-
DeleteDBShardGroupMessage.add_member(:db_shard_group_identifier, Shapes::ShapeRef.new(shape:
|
2197
|
+
DeleteDBShardGroupMessage.add_member(:db_shard_group_identifier, Shapes::ShapeRef.new(shape: DBShardGroupIdentifier, required: true, location_name: "DBShardGroupIdentifier"))
|
2197
2198
|
DeleteDBShardGroupMessage.struct_class = Types::DeleteDBShardGroupMessage
|
2198
2199
|
|
2199
2200
|
DeleteDBSnapshotMessage.add_member(:db_snapshot_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBSnapshotIdentifier"))
|
@@ -2432,7 +2433,7 @@ module Aws::RDS
|
|
2432
2433
|
DescribeDBSecurityGroupsMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
2433
2434
|
DescribeDBSecurityGroupsMessage.struct_class = Types::DescribeDBSecurityGroupsMessage
|
2434
2435
|
|
2435
|
-
DescribeDBShardGroupsMessage.add_member(:db_shard_group_identifier, Shapes::ShapeRef.new(shape:
|
2436
|
+
DescribeDBShardGroupsMessage.add_member(:db_shard_group_identifier, Shapes::ShapeRef.new(shape: DBShardGroupIdentifier, location_name: "DBShardGroupIdentifier"))
|
2436
2437
|
DescribeDBShardGroupsMessage.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filters"))
|
2437
2438
|
DescribeDBShardGroupsMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
2438
2439
|
DescribeDBShardGroupsMessage.add_member(:max_records, Shapes::ShapeRef.new(shape: MaxRecords, location_name: "MaxRecords"))
|
@@ -3187,7 +3188,7 @@ module Aws::RDS
|
|
3187
3188
|
ModifyDBRecommendationMessage.add_member(:recommended_action_updates, Shapes::ShapeRef.new(shape: RecommendedActionUpdateList, location_name: "RecommendedActionUpdates"))
|
3188
3189
|
ModifyDBRecommendationMessage.struct_class = Types::ModifyDBRecommendationMessage
|
3189
3190
|
|
3190
|
-
ModifyDBShardGroupMessage.add_member(:db_shard_group_identifier, Shapes::ShapeRef.new(shape:
|
3191
|
+
ModifyDBShardGroupMessage.add_member(:db_shard_group_identifier, Shapes::ShapeRef.new(shape: DBShardGroupIdentifier, required: true, location_name: "DBShardGroupIdentifier"))
|
3191
3192
|
ModifyDBShardGroupMessage.add_member(:max_acu, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MaxACU"))
|
3192
3193
|
ModifyDBShardGroupMessage.struct_class = Types::ModifyDBShardGroupMessage
|
3193
3194
|
|
@@ -3561,7 +3562,7 @@ module Aws::RDS
|
|
3561
3562
|
RebootDBInstanceResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
3562
3563
|
RebootDBInstanceResult.struct_class = Types::RebootDBInstanceResult
|
3563
3564
|
|
3564
|
-
RebootDBShardGroupMessage.add_member(:db_shard_group_identifier, Shapes::ShapeRef.new(shape:
|
3565
|
+
RebootDBShardGroupMessage.add_member(:db_shard_group_identifier, Shapes::ShapeRef.new(shape: DBShardGroupIdentifier, required: true, location_name: "DBShardGroupIdentifier"))
|
3565
3566
|
RebootDBShardGroupMessage.struct_class = Types::RebootDBShardGroupMessage
|
3566
3567
|
|
3567
3568
|
RecommendedAction.add_member(:action_id, Shapes::ShapeRef.new(shape: String, location_name: "ActionId"))
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -156,7 +156,8 @@ module Aws::RDS
|
|
156
156
|
#
|
157
157
|
# Constraints:
|
158
158
|
#
|
159
|
-
# * Must contain from 1 to 63
|
159
|
+
# * Must contain from 1 to 63 (for Aurora DB clusters) or 1 to 52 (for
|
160
|
+
# Multi-AZ DB clusters) letters, numbers, or hyphens.
|
160
161
|
#
|
161
162
|
# * First character must be a letter.
|
162
163
|
#
|
@@ -938,7 +939,7 @@ module Aws::RDS
|
|
938
939
|
#
|
939
940
|
# **RDS for PostgreSQL**
|
940
941
|
#
|
941
|
-
# Example: `
|
942
|
+
# Example: `postgres13`
|
942
943
|
#
|
943
944
|
# To list all of the available parameter group families for a DB engine,
|
944
945
|
# use the following command:
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -2085,7 +2085,8 @@ module Aws::RDS
|
|
2085
2085
|
#
|
2086
2086
|
# Constraints:
|
2087
2087
|
#
|
2088
|
-
# * Must contain from 1 to 63
|
2088
|
+
# * Must contain from 1 to 63 (for Aurora DB clusters) or 1 to 52 (for
|
2089
|
+
# Multi-AZ DB clusters) letters, numbers, or hyphens.
|
2089
2090
|
#
|
2090
2091
|
# * First character must be a letter.
|
2091
2092
|
#
|
@@ -3004,7 +3005,7 @@ module Aws::RDS
|
|
3004
3005
|
#
|
3005
3006
|
# **RDS for PostgreSQL**
|
3006
3007
|
#
|
3007
|
-
# Example: `
|
3008
|
+
# Example: `postgres13`
|
3008
3009
|
#
|
3009
3010
|
# To list all of the available parameter group families for a DB
|
3010
3011
|
# engine, use the following command:
|
@@ -15582,6 +15583,8 @@ module Aws::RDS
|
|
15582
15583
|
#
|
15583
15584
|
# * `DescribeDBRecommendations`
|
15584
15585
|
#
|
15586
|
+
# * `DescribeDBShardGroups`
|
15587
|
+
#
|
15585
15588
|
# * `DescribePendingMaintenanceActions`
|
15586
15589
|
#
|
15587
15590
|
# @!attribute [rw] name
|
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.218.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-02-
|
11
|
+
date: 2024-02-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|