aws-sdk-rds 1.290.0 → 1.294.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 +1518 -1355
- data/lib/aws-sdk-rds/client_api.rb +220 -159
- data/lib/aws-sdk-rds/customizations.rb +0 -1
- data/lib/aws-sdk-rds/db_cluster.rb +374 -341
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +2 -2
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +25 -25
- data/lib/aws-sdk-rds/db_engine_version.rb +55 -55
- data/lib/aws-sdk-rds/db_instance.rb +317 -289
- data/lib/aws-sdk-rds/db_parameter_group.rb +2 -2
- data/lib/aws-sdk-rds/db_snapshot.rb +74 -74
- data/lib/aws-sdk-rds/option_group.rb +1 -1
- data/lib/aws-sdk-rds/resource.rb +212 -182
- data/lib/aws-sdk-rds/types.rb +1228 -1017
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +114 -105
- data/sig/db_cluster.rbs +68 -66
- data/sig/db_cluster_snapshot.rbs +6 -6
- data/sig/db_engine_version.rbs +21 -21
- data/sig/db_instance.rbs +47 -45
- data/sig/db_snapshot.rbs +14 -14
- data/sig/event.rbs +1 -1
- data/sig/resource.rbs +24 -22
- data/sig/types.rbs +133 -120
- metadata +1 -1
data/sig/db_snapshot.rbs
CHANGED
@@ -61,6 +61,9 @@ module Aws
|
|
61
61
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBSnapshot.html#iops-instance_method
|
62
62
|
def iops: () -> ::Integer
|
63
63
|
|
64
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBSnapshot.html#storage_throughput-instance_method
|
65
|
+
def storage_throughput: () -> ::Integer
|
66
|
+
|
64
67
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBSnapshot.html#option_group_name-instance_method
|
65
68
|
def option_group_name: () -> ::String
|
66
69
|
|
@@ -103,27 +106,24 @@ module Aws
|
|
103
106
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBSnapshot.html#tag_list-instance_method
|
104
107
|
def tag_list: () -> ::Array[Types::Tag]
|
105
108
|
|
109
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBSnapshot.html#snapshot_target-instance_method
|
110
|
+
def snapshot_target: () -> ::String
|
111
|
+
|
106
112
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBSnapshot.html#original_snapshot_create_time-instance_method
|
107
113
|
def original_snapshot_create_time: () -> ::Time
|
108
114
|
|
109
115
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBSnapshot.html#snapshot_database_time-instance_method
|
110
116
|
def snapshot_database_time: () -> ::Time
|
111
117
|
|
112
|
-
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBSnapshot.html#snapshot_target-instance_method
|
113
|
-
def snapshot_target: () -> ::String
|
114
|
-
|
115
|
-
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBSnapshot.html#storage_throughput-instance_method
|
116
|
-
def storage_throughput: () -> ::Integer
|
117
|
-
|
118
118
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBSnapshot.html#db_system_id-instance_method
|
119
119
|
def db_system_id: () -> ::String
|
120
120
|
|
121
|
-
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBSnapshot.html#dedicated_log_volume-instance_method
|
122
|
-
def dedicated_log_volume: () -> bool
|
123
|
-
|
124
121
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBSnapshot.html#multi_tenant-instance_method
|
125
122
|
def multi_tenant: () -> bool
|
126
123
|
|
124
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBSnapshot.html#dedicated_log_volume-instance_method
|
125
|
+
def dedicated_log_volume: () -> bool
|
126
|
+
|
127
127
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBSnapshot.html#snapshot_availability_zone-instance_method
|
128
128
|
def snapshot_availability_zone: () -> ::String
|
129
129
|
|
@@ -165,9 +165,9 @@ module Aws
|
|
165
165
|
?pre_signed_url: ::String,
|
166
166
|
?option_group_name: ::String,
|
167
167
|
?target_custom_availability_zone: ::String,
|
168
|
+
?snapshot_target: ::String,
|
168
169
|
?copy_option_group: bool,
|
169
170
|
?snapshot_availability_zone: ::String,
|
170
|
-
?snapshot_target: ::String,
|
171
171
|
?source_region: ::String
|
172
172
|
) -> DBSnapshot
|
173
173
|
| (?Hash[Symbol, untyped]) -> DBSnapshot
|
@@ -191,6 +191,7 @@ module Aws
|
|
191
191
|
?db_name: ::String,
|
192
192
|
?engine: ::String,
|
193
193
|
?iops: ::Integer,
|
194
|
+
?storage_throughput: ::Integer,
|
194
195
|
?option_group_name: ::String,
|
195
196
|
?tags: Array[
|
196
197
|
{
|
@@ -221,12 +222,11 @@ module Aws
|
|
221
222
|
?db_parameter_group_name: ::String,
|
222
223
|
?deletion_protection: bool,
|
223
224
|
?enable_customer_owned_ip: bool,
|
224
|
-
?custom_iam_instance_profile: ::String,
|
225
|
-
?backup_target: ::String,
|
226
225
|
?network_type: ::String,
|
227
|
-
?
|
228
|
-
?
|
226
|
+
?backup_target: ::String,
|
227
|
+
?custom_iam_instance_profile: ::String,
|
229
228
|
?allocated_storage: ::Integer,
|
229
|
+
?db_cluster_snapshot_identifier: ::String,
|
230
230
|
?dedicated_log_volume: bool,
|
231
231
|
?ca_certificate_identifier: ::String,
|
232
232
|
?engine_lifecycle_support: ::String,
|
data/sig/event.rbs
CHANGED
@@ -22,7 +22,7 @@ module Aws
|
|
22
22
|
def date: () -> String
|
23
23
|
|
24
24
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Event.html#source_type-instance_method
|
25
|
-
def source_type: () -> ("db-instance" | "db-parameter-group" | "db-security-group" | "db-snapshot" | "db-cluster" | "db-cluster-snapshot" | "custom-engine-version" | "db-proxy" | "blue-green-deployment")
|
25
|
+
def source_type: () -> ("db-instance" | "db-parameter-group" | "db-security-group" | "db-snapshot" | "db-cluster" | "db-cluster-snapshot" | "custom-engine-version" | "db-proxy" | "blue-green-deployment" | "db-shard-group" | "zero-etl")
|
26
26
|
|
27
27
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Event.html#message-instance_method
|
28
28
|
def message: () -> ::String
|
data/sig/resource.rbs
CHANGED
@@ -125,6 +125,12 @@ module Aws
|
|
125
125
|
transit_gateway_multicast_domain_id: ::String?,
|
126
126
|
replica_mode: ("open-read-only" | "mounted")?
|
127
127
|
},
|
128
|
+
?db_cluster_instance_class: ::String,
|
129
|
+
?allocated_storage: ::Integer,
|
130
|
+
?storage_type: ::String,
|
131
|
+
?iops: ::Integer,
|
132
|
+
?publicly_accessible: bool,
|
133
|
+
?auto_minor_version_upgrade: bool,
|
128
134
|
?deletion_protection: bool,
|
129
135
|
?global_cluster_identifier: ::String,
|
130
136
|
?enable_http_endpoint: bool,
|
@@ -132,12 +138,12 @@ module Aws
|
|
132
138
|
?domain: ::String,
|
133
139
|
?domain_iam_role_name: ::String,
|
134
140
|
?enable_global_write_forwarding: bool,
|
135
|
-
?
|
136
|
-
?
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
+
?network_type: ::String,
|
142
|
+
?serverless_v2_scaling_configuration: {
|
143
|
+
min_capacity: ::Float?,
|
144
|
+
max_capacity: ::Float?,
|
145
|
+
seconds_until_auto_pause: ::Integer?
|
146
|
+
},
|
141
147
|
?monitoring_interval: ::Integer,
|
142
148
|
?monitoring_role_arn: ::String,
|
143
149
|
?database_insights_mode: ("standard" | "advanced"),
|
@@ -145,19 +151,14 @@ module Aws
|
|
145
151
|
?performance_insights_kms_key_id: ::String,
|
146
152
|
?performance_insights_retention_period: ::Integer,
|
147
153
|
?enable_limitless_database: bool,
|
148
|
-
?
|
149
|
-
min_capacity: ::Float?,
|
150
|
-
max_capacity: ::Float?,
|
151
|
-
seconds_until_auto_pause: ::Integer?
|
152
|
-
},
|
153
|
-
?network_type: ::String,
|
154
|
-
?cluster_scalability_type: ("standard" | "limitless"),
|
154
|
+
?cluster_scalability_type: ("standard" | "limitless" | "scaleout"),
|
155
155
|
?db_system_id: ::String,
|
156
156
|
?manage_master_user_password: bool,
|
157
|
-
?master_user_secret_kms_key_id: ::String,
|
158
157
|
?enable_local_write_forwarding: bool,
|
158
|
+
?master_user_secret_kms_key_id: ::String,
|
159
159
|
?ca_certificate_identifier: ::String,
|
160
160
|
?engine_lifecycle_support: ::String,
|
161
|
+
?master_user_authentication_type: ("password" | "iam-db-auth"),
|
161
162
|
?source_region: ::String
|
162
163
|
) -> DBCluster
|
163
164
|
| (?Hash[Symbol, untyped]) -> DBCluster
|
@@ -199,6 +200,7 @@ module Aws
|
|
199
200
|
?auto_minor_version_upgrade: bool,
|
200
201
|
?license_model: ::String,
|
201
202
|
?iops: ::Integer,
|
203
|
+
?storage_throughput: ::Integer,
|
202
204
|
?option_group_name: ::String,
|
203
205
|
?character_set_name: ::String,
|
204
206
|
?nchar_character_set_name: ::String,
|
@@ -241,17 +243,17 @@ module Aws
|
|
241
243
|
?deletion_protection: bool,
|
242
244
|
?max_allocated_storage: ::Integer,
|
243
245
|
?enable_customer_owned_ip: bool,
|
244
|
-
?custom_iam_instance_profile: ::String,
|
245
|
-
?backup_target: ::String,
|
246
246
|
?network_type: ::String,
|
247
|
-
?
|
247
|
+
?backup_target: ::String,
|
248
|
+
?custom_iam_instance_profile: ::String,
|
249
|
+
?db_system_id: ::String,
|
250
|
+
?ca_certificate_identifier: ::String,
|
248
251
|
?manage_master_user_password: bool,
|
249
252
|
?master_user_secret_kms_key_id: ::String,
|
250
|
-
?ca_certificate_identifier: ::String,
|
251
|
-
?db_system_id: ::String,
|
252
|
-
?dedicated_log_volume: bool,
|
253
253
|
?multi_tenant: bool,
|
254
|
-
?
|
254
|
+
?dedicated_log_volume: bool,
|
255
|
+
?engine_lifecycle_support: ::String,
|
256
|
+
?master_user_authentication_type: ("password" | "iam-db-auth")
|
255
257
|
) -> DBInstance
|
256
258
|
| (?Hash[Symbol, untyped]) -> DBInstance
|
257
259
|
|
@@ -517,7 +519,7 @@ module Aws
|
|
517
519
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Resource.html#events-instance_method
|
518
520
|
def events: (
|
519
521
|
?source_identifier: ::String,
|
520
|
-
?source_type: ("db-instance" | "db-parameter-group" | "db-security-group" | "db-snapshot" | "db-cluster" | "db-cluster-snapshot" | "custom-engine-version" | "db-proxy" | "blue-green-deployment"),
|
522
|
+
?source_type: ("db-instance" | "db-parameter-group" | "db-security-group" | "db-snapshot" | "db-cluster" | "db-cluster-snapshot" | "custom-engine-version" | "db-proxy" | "blue-green-deployment" | "db-shard-group" | "zero-etl"),
|
521
523
|
?start_time: ::Time,
|
522
524
|
?end_time: ::Time,
|
523
525
|
?duration: ::Integer,
|