aws-sdk-rds 1.277.0 → 1.300.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 +115 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +1790 -1463
- data/lib/aws-sdk-rds/client_api.rb +244 -156
- data/lib/aws-sdk-rds/customizations.rb +0 -1
- data/lib/aws-sdk-rds/db_cluster.rb +404 -335
- 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 +452 -353
- data/lib/aws-sdk-rds/db_parameter_group.rb +2 -2
- data/lib/aws-sdk-rds/db_snapshot.rb +91 -66
- data/lib/aws-sdk-rds/db_subnet_group.rb +4 -1
- data/lib/aws-sdk-rds/endpoint_parameters.rb +4 -4
- data/lib/aws-sdk-rds/errors.rb +11 -1
- data/lib/aws-sdk-rds/option_group.rb +1 -1
- data/lib/aws-sdk-rds/resource.rb +257 -236
- data/lib/aws-sdk-rds/types.rb +1559 -1153
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +115 -102
- data/sig/db_cluster.rbs +72 -61
- data/sig/db_cluster_snapshot.rbs +6 -6
- data/sig/db_engine_version.rbs +21 -21
- data/sig/db_instance.rbs +50 -44
- data/sig/db_snapshot.rbs +17 -12
- data/sig/errors.rbs +2 -0
- data/sig/event.rbs +1 -1
- data/sig/resource.rbs +24 -21
- data/sig/types.rbs +140 -115
- metadata +4 -4
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,26 +106,26 @@ 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#multi_tenant-instance_method
|
|
122
|
+
def multi_tenant: () -> bool
|
|
123
|
+
|
|
121
124
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBSnapshot.html#dedicated_log_volume-instance_method
|
|
122
125
|
def dedicated_log_volume: () -> bool
|
|
123
126
|
|
|
124
|
-
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBSnapshot.html#
|
|
125
|
-
def
|
|
127
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBSnapshot.html#snapshot_availability_zone-instance_method
|
|
128
|
+
def snapshot_availability_zone: () -> ::String
|
|
126
129
|
|
|
127
130
|
def client: () -> Client
|
|
128
131
|
|
|
@@ -162,7 +165,9 @@ module Aws
|
|
|
162
165
|
?pre_signed_url: ::String,
|
|
163
166
|
?option_group_name: ::String,
|
|
164
167
|
?target_custom_availability_zone: ::String,
|
|
168
|
+
?snapshot_target: ::String,
|
|
165
169
|
?copy_option_group: bool,
|
|
170
|
+
?snapshot_availability_zone: ::String,
|
|
166
171
|
?source_region: ::String
|
|
167
172
|
) -> DBSnapshot
|
|
168
173
|
| (?Hash[Symbol, untyped]) -> DBSnapshot
|
|
@@ -186,6 +191,7 @@ module Aws
|
|
|
186
191
|
?db_name: ::String,
|
|
187
192
|
?engine: ::String,
|
|
188
193
|
?iops: ::Integer,
|
|
194
|
+
?storage_throughput: ::Integer,
|
|
189
195
|
?option_group_name: ::String,
|
|
190
196
|
?tags: Array[
|
|
191
197
|
{
|
|
@@ -216,12 +222,11 @@ module Aws
|
|
|
216
222
|
?db_parameter_group_name: ::String,
|
|
217
223
|
?deletion_protection: bool,
|
|
218
224
|
?enable_customer_owned_ip: bool,
|
|
219
|
-
?custom_iam_instance_profile: ::String,
|
|
220
|
-
?backup_target: ::String,
|
|
221
225
|
?network_type: ::String,
|
|
222
|
-
?
|
|
223
|
-
?
|
|
226
|
+
?backup_target: ::String,
|
|
227
|
+
?custom_iam_instance_profile: ::String,
|
|
224
228
|
?allocated_storage: ::Integer,
|
|
229
|
+
?db_cluster_snapshot_identifier: ::String,
|
|
225
230
|
?dedicated_log_volume: bool,
|
|
226
231
|
?ca_certificate_identifier: ::String,
|
|
227
232
|
?engine_lifecycle_support: ::String,
|
data/sig/errors.rbs
CHANGED
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
|
@@ -18,6 +18,7 @@ module Aws
|
|
|
18
18
|
?account_id: String,
|
|
19
19
|
?active_endpoint_cache: bool,
|
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
|
21
|
+
?auth_scheme_preference: Array[String],
|
|
21
22
|
?client_side_monitoring: bool,
|
|
22
23
|
?client_side_monitoring_client_id: String,
|
|
23
24
|
?client_side_monitoring_host: String,
|
|
@@ -124,6 +125,12 @@ module Aws
|
|
|
124
125
|
transit_gateway_multicast_domain_id: ::String?,
|
|
125
126
|
replica_mode: ("open-read-only" | "mounted")?
|
|
126
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,
|
|
127
134
|
?deletion_protection: bool,
|
|
128
135
|
?global_cluster_identifier: ::String,
|
|
129
136
|
?enable_http_endpoint: bool,
|
|
@@ -131,12 +138,12 @@ module Aws
|
|
|
131
138
|
?domain: ::String,
|
|
132
139
|
?domain_iam_role_name: ::String,
|
|
133
140
|
?enable_global_write_forwarding: bool,
|
|
134
|
-
?
|
|
135
|
-
?
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
141
|
+
?network_type: ::String,
|
|
142
|
+
?serverless_v2_scaling_configuration: {
|
|
143
|
+
min_capacity: ::Float?,
|
|
144
|
+
max_capacity: ::Float?,
|
|
145
|
+
seconds_until_auto_pause: ::Integer?
|
|
146
|
+
},
|
|
140
147
|
?monitoring_interval: ::Integer,
|
|
141
148
|
?monitoring_role_arn: ::String,
|
|
142
149
|
?database_insights_mode: ("standard" | "advanced"),
|
|
@@ -144,19 +151,14 @@ module Aws
|
|
|
144
151
|
?performance_insights_kms_key_id: ::String,
|
|
145
152
|
?performance_insights_retention_period: ::Integer,
|
|
146
153
|
?enable_limitless_database: bool,
|
|
147
|
-
?serverless_v2_scaling_configuration: {
|
|
148
|
-
min_capacity: ::Float?,
|
|
149
|
-
max_capacity: ::Float?,
|
|
150
|
-
seconds_until_auto_pause: ::Integer?
|
|
151
|
-
},
|
|
152
|
-
?network_type: ::String,
|
|
153
154
|
?cluster_scalability_type: ("standard" | "limitless"),
|
|
154
155
|
?db_system_id: ::String,
|
|
155
156
|
?manage_master_user_password: bool,
|
|
156
|
-
?master_user_secret_kms_key_id: ::String,
|
|
157
157
|
?enable_local_write_forwarding: bool,
|
|
158
|
+
?master_user_secret_kms_key_id: ::String,
|
|
158
159
|
?ca_certificate_identifier: ::String,
|
|
159
160
|
?engine_lifecycle_support: ::String,
|
|
161
|
+
?master_user_authentication_type: ("password" | "iam-db-auth"),
|
|
160
162
|
?source_region: ::String
|
|
161
163
|
) -> DBCluster
|
|
162
164
|
| (?Hash[Symbol, untyped]) -> DBCluster
|
|
@@ -198,6 +200,7 @@ module Aws
|
|
|
198
200
|
?auto_minor_version_upgrade: bool,
|
|
199
201
|
?license_model: ::String,
|
|
200
202
|
?iops: ::Integer,
|
|
203
|
+
?storage_throughput: ::Integer,
|
|
201
204
|
?option_group_name: ::String,
|
|
202
205
|
?character_set_name: ::String,
|
|
203
206
|
?nchar_character_set_name: ::String,
|
|
@@ -240,17 +243,17 @@ module Aws
|
|
|
240
243
|
?deletion_protection: bool,
|
|
241
244
|
?max_allocated_storage: ::Integer,
|
|
242
245
|
?enable_customer_owned_ip: bool,
|
|
243
|
-
?custom_iam_instance_profile: ::String,
|
|
244
|
-
?backup_target: ::String,
|
|
245
246
|
?network_type: ::String,
|
|
246
|
-
?
|
|
247
|
+
?backup_target: ::String,
|
|
248
|
+
?custom_iam_instance_profile: ::String,
|
|
249
|
+
?db_system_id: ::String,
|
|
250
|
+
?ca_certificate_identifier: ::String,
|
|
247
251
|
?manage_master_user_password: bool,
|
|
248
252
|
?master_user_secret_kms_key_id: ::String,
|
|
249
|
-
?ca_certificate_identifier: ::String,
|
|
250
|
-
?db_system_id: ::String,
|
|
251
|
-
?dedicated_log_volume: bool,
|
|
252
253
|
?multi_tenant: bool,
|
|
253
|
-
?
|
|
254
|
+
?dedicated_log_volume: bool,
|
|
255
|
+
?engine_lifecycle_support: ::String,
|
|
256
|
+
?master_user_authentication_type: ("password" | "iam-db-auth")
|
|
254
257
|
) -> DBInstance
|
|
255
258
|
| (?Hash[Symbol, untyped]) -> DBInstance
|
|
256
259
|
|
|
@@ -516,7 +519,7 @@ module Aws
|
|
|
516
519
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Resource.html#events-instance_method
|
|
517
520
|
def events: (
|
|
518
521
|
?source_identifier: ::String,
|
|
519
|
-
?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"),
|
|
520
523
|
?start_time: ::Time,
|
|
521
524
|
?end_time: ::Time,
|
|
522
525
|
?duration: ::Integer,
|