aws-sdk-rds 1.239.0 → 1.241.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 +162 -66
- data/lib/aws-sdk-rds/client_api.rb +3 -0
- data/lib/aws-sdk-rds/db_cluster.rb +38 -28
- 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 +48 -29
- 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 +22 -16
- data/lib/aws-sdk-rds/types.rb +224 -99
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +7 -1
- data/sig/types.rbs +3 -0
- metadata +2 -2
data/lib/aws-sdk-rds.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -748,6 +748,7 @@ module Aws
|
|
748
748
|
def db_shard_group_identifier: () -> ::String
|
749
749
|
def db_cluster_identifier: () -> ::String
|
750
750
|
def max_acu: () -> ::Float
|
751
|
+
def min_acu: () -> ::Float
|
751
752
|
def compute_redundancy: () -> ::Integer
|
752
753
|
def status: () -> ::String
|
753
754
|
def publicly_accessible: () -> bool
|
@@ -759,6 +760,7 @@ module Aws
|
|
759
760
|
db_cluster_identifier: ::String,
|
760
761
|
?compute_redundancy: ::Integer,
|
761
762
|
max_acu: ::Float,
|
763
|
+
?min_acu: ::Float,
|
762
764
|
?publicly_accessible: bool
|
763
765
|
) -> _CreateDBShardGroupResponseSuccess
|
764
766
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDBShardGroupResponseSuccess
|
@@ -1084,6 +1086,7 @@ module Aws
|
|
1084
1086
|
def db_shard_group_identifier: () -> ::String
|
1085
1087
|
def db_cluster_identifier: () -> ::String
|
1086
1088
|
def max_acu: () -> ::Float
|
1089
|
+
def min_acu: () -> ::Float
|
1087
1090
|
def compute_redundancy: () -> ::Integer
|
1088
1091
|
def status: () -> ::String
|
1089
1092
|
def publicly_accessible: () -> bool
|
@@ -2537,6 +2540,7 @@ module Aws
|
|
2537
2540
|
def db_shard_group_identifier: () -> ::String
|
2538
2541
|
def db_cluster_identifier: () -> ::String
|
2539
2542
|
def max_acu: () -> ::Float
|
2543
|
+
def min_acu: () -> ::Float
|
2540
2544
|
def compute_redundancy: () -> ::Integer
|
2541
2545
|
def status: () -> ::String
|
2542
2546
|
def publicly_accessible: () -> bool
|
@@ -2545,7 +2549,8 @@ module Aws
|
|
2545
2549
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#modify_db_shard_group-instance_method
|
2546
2550
|
def modify_db_shard_group: (
|
2547
2551
|
db_shard_group_identifier: ::String,
|
2548
|
-
?max_acu: ::Float
|
2552
|
+
?max_acu: ::Float,
|
2553
|
+
?min_acu: ::Float
|
2549
2554
|
) -> _ModifyDBShardGroupResponseSuccess
|
2550
2555
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyDBShardGroupResponseSuccess
|
2551
2556
|
|
@@ -2752,6 +2757,7 @@ module Aws
|
|
2752
2757
|
def db_shard_group_identifier: () -> ::String
|
2753
2758
|
def db_cluster_identifier: () -> ::String
|
2754
2759
|
def max_acu: () -> ::Float
|
2760
|
+
def min_acu: () -> ::Float
|
2755
2761
|
def compute_redundancy: () -> ::Integer
|
2756
2762
|
def status: () -> ::String
|
2757
2763
|
def publicly_accessible: () -> 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.241.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-08-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|