aws-sdk-rds 1.240.0 → 1.242.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +151 -57
- data/lib/aws-sdk-rds/client_api.rb +3 -0
- data/lib/aws-sdk-rds/db_cluster.rb +22 -24
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +12 -4
- data/lib/aws-sdk-rds/db_engine_version.rb +6 -2
- data/lib/aws-sdk-rds/db_instance.rb +24 -8
- data/lib/aws-sdk-rds/db_parameter_group.rb +6 -2
- data/lib/aws-sdk-rds/db_snapshot.rb +24 -8
- data/lib/aws-sdk-rds/event_subscription.rb +6 -2
- data/lib/aws-sdk-rds/option_group.rb +6 -2
- data/lib/aws-sdk-rds/reserved_db_instances_offering.rb +6 -2
- data/lib/aws-sdk-rds/resource.rb +6 -2
- data/lib/aws-sdk-rds/types.rb +191 -81
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +8 -1
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +3 -0
- metadata +4 -4
data/sig/client.rbs
CHANGED
@@ -50,6 +50,7 @@ module Aws
|
|
50
50
|
?session_token: String,
|
51
51
|
?sigv4a_signing_region_set: Array[String],
|
52
52
|
?stub_responses: untyped,
|
53
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
53
54
|
?token_provider: untyped,
|
54
55
|
?use_dualstack_endpoint: bool,
|
55
56
|
?use_fips_endpoint: bool,
|
@@ -748,6 +749,7 @@ module Aws
|
|
748
749
|
def db_shard_group_identifier: () -> ::String
|
749
750
|
def db_cluster_identifier: () -> ::String
|
750
751
|
def max_acu: () -> ::Float
|
752
|
+
def min_acu: () -> ::Float
|
751
753
|
def compute_redundancy: () -> ::Integer
|
752
754
|
def status: () -> ::String
|
753
755
|
def publicly_accessible: () -> bool
|
@@ -759,6 +761,7 @@ module Aws
|
|
759
761
|
db_cluster_identifier: ::String,
|
760
762
|
?compute_redundancy: ::Integer,
|
761
763
|
max_acu: ::Float,
|
764
|
+
?min_acu: ::Float,
|
762
765
|
?publicly_accessible: bool
|
763
766
|
) -> _CreateDBShardGroupResponseSuccess
|
764
767
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDBShardGroupResponseSuccess
|
@@ -1084,6 +1087,7 @@ module Aws
|
|
1084
1087
|
def db_shard_group_identifier: () -> ::String
|
1085
1088
|
def db_cluster_identifier: () -> ::String
|
1086
1089
|
def max_acu: () -> ::Float
|
1090
|
+
def min_acu: () -> ::Float
|
1087
1091
|
def compute_redundancy: () -> ::Integer
|
1088
1092
|
def status: () -> ::String
|
1089
1093
|
def publicly_accessible: () -> bool
|
@@ -2537,6 +2541,7 @@ module Aws
|
|
2537
2541
|
def db_shard_group_identifier: () -> ::String
|
2538
2542
|
def db_cluster_identifier: () -> ::String
|
2539
2543
|
def max_acu: () -> ::Float
|
2544
|
+
def min_acu: () -> ::Float
|
2540
2545
|
def compute_redundancy: () -> ::Integer
|
2541
2546
|
def status: () -> ::String
|
2542
2547
|
def publicly_accessible: () -> bool
|
@@ -2545,7 +2550,8 @@ module Aws
|
|
2545
2550
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#modify_db_shard_group-instance_method
|
2546
2551
|
def modify_db_shard_group: (
|
2547
2552
|
db_shard_group_identifier: ::String,
|
2548
|
-
?max_acu: ::Float
|
2553
|
+
?max_acu: ::Float,
|
2554
|
+
?min_acu: ::Float
|
2549
2555
|
) -> _ModifyDBShardGroupResponseSuccess
|
2550
2556
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyDBShardGroupResponseSuccess
|
2551
2557
|
|
@@ -2752,6 +2758,7 @@ module Aws
|
|
2752
2758
|
def db_shard_group_identifier: () -> ::String
|
2753
2759
|
def db_cluster_identifier: () -> ::String
|
2754
2760
|
def max_acu: () -> ::Float
|
2761
|
+
def min_acu: () -> ::Float
|
2755
2762
|
def compute_redundancy: () -> ::Integer
|
2756
2763
|
def status: () -> ::String
|
2757
2764
|
def publicly_accessible: () -> bool
|
data/sig/resource.rbs
CHANGED
@@ -50,6 +50,7 @@ module Aws
|
|
50
50
|
?session_token: String,
|
51
51
|
?sigv4a_signing_region_set: Array[String],
|
52
52
|
?stub_responses: untyped,
|
53
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
53
54
|
?token_provider: untyped,
|
54
55
|
?use_dualstack_endpoint: bool,
|
55
56
|
?use_fips_endpoint: bool,
|
data/sig/types.rbs
CHANGED
@@ -619,6 +619,7 @@ module Aws::RDS
|
|
619
619
|
attr_accessor db_cluster_identifier: ::String
|
620
620
|
attr_accessor compute_redundancy: ::Integer
|
621
621
|
attr_accessor max_acu: ::Float
|
622
|
+
attr_accessor min_acu: ::Float
|
622
623
|
attr_accessor publicly_accessible: bool
|
623
624
|
SENSITIVE: []
|
624
625
|
end
|
@@ -1483,6 +1484,7 @@ module Aws::RDS
|
|
1483
1484
|
attr_accessor db_shard_group_identifier: ::String
|
1484
1485
|
attr_accessor db_cluster_identifier: ::String
|
1485
1486
|
attr_accessor max_acu: ::Float
|
1487
|
+
attr_accessor min_acu: ::Float
|
1486
1488
|
attr_accessor compute_redundancy: ::Integer
|
1487
1489
|
attr_accessor status: ::String
|
1488
1490
|
attr_accessor publicly_accessible: bool
|
@@ -3008,6 +3010,7 @@ module Aws::RDS
|
|
3008
3010
|
class ModifyDBShardGroupMessage
|
3009
3011
|
attr_accessor db_shard_group_identifier: ::String
|
3010
3012
|
attr_accessor max_acu: ::Float
|
3013
|
+
attr_accessor min_acu: ::Float
|
3011
3014
|
SENSITIVE: []
|
3012
3015
|
end
|
3013
3016
|
|
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.242.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
|
+
date: 2024-09-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.203.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.203.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|