aws-sdk-rds 1.252.0 → 1.262.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 +50 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +320 -54
- data/lib/aws-sdk-rds/client_api.rb +39 -0
- data/lib/aws-sdk-rds/customizations/auth_token_generator.rb +16 -14
- data/lib/aws-sdk-rds/db_cluster.rb +104 -19
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +60 -4
- data/lib/aws-sdk-rds/db_engine.rb +0 -1
- data/lib/aws-sdk-rds/db_engine_version.rb +11 -0
- data/lib/aws-sdk-rds/db_instance.rb +18 -2
- data/lib/aws-sdk-rds/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-rds/endpoints.rb +2 -1780
- data/lib/aws-sdk-rds/errors.rb +11 -0
- data/lib/aws-sdk-rds/plugins/endpoints.rb +1 -330
- data/lib/aws-sdk-rds/resource.rb +21 -7
- data/lib/aws-sdk-rds/types.rb +401 -60
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +34 -6
- data/sig/db_cluster.rbs +16 -3
- data/sig/db_cluster_snapshot.rbs +7 -1
- data/sig/db_engine_version.rbs +3 -0
- data/sig/db_instance.rbs +6 -0
- data/sig/errors.rbs +2 -0
- data/sig/resource.rbs +4 -1
- data/sig/types.rbs +35 -0
- metadata +4 -4
data/lib/aws-sdk-rds/errors.rb
CHANGED
@@ -58,6 +58,7 @@ module Aws::RDS
|
|
58
58
|
# * {DBInstanceAutomatedBackupNotFoundFault}
|
59
59
|
# * {DBInstanceAutomatedBackupQuotaExceededFault}
|
60
60
|
# * {DBInstanceNotFoundFault}
|
61
|
+
# * {DBInstanceNotReadyFault}
|
61
62
|
# * {DBInstanceRoleAlreadyExistsFault}
|
62
63
|
# * {DBInstanceRoleNotFoundFault}
|
63
64
|
# * {DBInstanceRoleQuotaExceededFault}
|
@@ -488,6 +489,16 @@ module Aws::RDS
|
|
488
489
|
end
|
489
490
|
end
|
490
491
|
|
492
|
+
class DBInstanceNotReadyFault < ServiceError
|
493
|
+
|
494
|
+
# @param [Seahorse::Client::RequestContext] context
|
495
|
+
# @param [String] message
|
496
|
+
# @param [Aws::RDS::Types::DBInstanceNotReadyFault] data
|
497
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
498
|
+
super(context, message, data)
|
499
|
+
end
|
500
|
+
end
|
501
|
+
|
491
502
|
class DBInstanceRoleAlreadyExistsFault < ServiceError
|
492
503
|
|
493
504
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -27,7 +27,7 @@ The endpoint provider used to resolve endpoints. Any object that responds to
|
|
27
27
|
class Handler < Seahorse::Client::Handler
|
28
28
|
def call(context)
|
29
29
|
unless context[:discovered_endpoint]
|
30
|
-
params = parameters_for_operation(context)
|
30
|
+
params = Aws::RDS::Endpoints.parameters_for_operation(context)
|
31
31
|
endpoint = context.config.endpoint_provider.resolve_endpoint(params)
|
32
32
|
|
33
33
|
context.http_request.endpoint = endpoint.url
|
@@ -67,335 +67,6 @@ The endpoint provider used to resolve endpoints. Any object that responds to
|
|
67
67
|
context.http_request.headers[key] = value
|
68
68
|
end
|
69
69
|
end
|
70
|
-
|
71
|
-
def parameters_for_operation(context)
|
72
|
-
case context.operation_name
|
73
|
-
when :add_role_to_db_cluster
|
74
|
-
Aws::RDS::Endpoints::AddRoleToDBCluster.build(context)
|
75
|
-
when :add_role_to_db_instance
|
76
|
-
Aws::RDS::Endpoints::AddRoleToDBInstance.build(context)
|
77
|
-
when :add_source_identifier_to_subscription
|
78
|
-
Aws::RDS::Endpoints::AddSourceIdentifierToSubscription.build(context)
|
79
|
-
when :add_tags_to_resource
|
80
|
-
Aws::RDS::Endpoints::AddTagsToResource.build(context)
|
81
|
-
when :apply_pending_maintenance_action
|
82
|
-
Aws::RDS::Endpoints::ApplyPendingMaintenanceAction.build(context)
|
83
|
-
when :authorize_db_security_group_ingress
|
84
|
-
Aws::RDS::Endpoints::AuthorizeDBSecurityGroupIngress.build(context)
|
85
|
-
when :backtrack_db_cluster
|
86
|
-
Aws::RDS::Endpoints::BacktrackDBCluster.build(context)
|
87
|
-
when :cancel_export_task
|
88
|
-
Aws::RDS::Endpoints::CancelExportTask.build(context)
|
89
|
-
when :copy_db_cluster_parameter_group
|
90
|
-
Aws::RDS::Endpoints::CopyDBClusterParameterGroup.build(context)
|
91
|
-
when :copy_db_cluster_snapshot
|
92
|
-
Aws::RDS::Endpoints::CopyDBClusterSnapshot.build(context)
|
93
|
-
when :copy_db_parameter_group
|
94
|
-
Aws::RDS::Endpoints::CopyDBParameterGroup.build(context)
|
95
|
-
when :copy_db_snapshot
|
96
|
-
Aws::RDS::Endpoints::CopyDBSnapshot.build(context)
|
97
|
-
when :copy_option_group
|
98
|
-
Aws::RDS::Endpoints::CopyOptionGroup.build(context)
|
99
|
-
when :create_blue_green_deployment
|
100
|
-
Aws::RDS::Endpoints::CreateBlueGreenDeployment.build(context)
|
101
|
-
when :create_custom_db_engine_version
|
102
|
-
Aws::RDS::Endpoints::CreateCustomDBEngineVersion.build(context)
|
103
|
-
when :create_db_cluster
|
104
|
-
Aws::RDS::Endpoints::CreateDBCluster.build(context)
|
105
|
-
when :create_db_cluster_endpoint
|
106
|
-
Aws::RDS::Endpoints::CreateDBClusterEndpoint.build(context)
|
107
|
-
when :create_db_cluster_parameter_group
|
108
|
-
Aws::RDS::Endpoints::CreateDBClusterParameterGroup.build(context)
|
109
|
-
when :create_db_cluster_snapshot
|
110
|
-
Aws::RDS::Endpoints::CreateDBClusterSnapshot.build(context)
|
111
|
-
when :create_db_instance
|
112
|
-
Aws::RDS::Endpoints::CreateDBInstance.build(context)
|
113
|
-
when :create_db_instance_read_replica
|
114
|
-
Aws::RDS::Endpoints::CreateDBInstanceReadReplica.build(context)
|
115
|
-
when :create_db_parameter_group
|
116
|
-
Aws::RDS::Endpoints::CreateDBParameterGroup.build(context)
|
117
|
-
when :create_db_proxy
|
118
|
-
Aws::RDS::Endpoints::CreateDBProxy.build(context)
|
119
|
-
when :create_db_proxy_endpoint
|
120
|
-
Aws::RDS::Endpoints::CreateDBProxyEndpoint.build(context)
|
121
|
-
when :create_db_security_group
|
122
|
-
Aws::RDS::Endpoints::CreateDBSecurityGroup.build(context)
|
123
|
-
when :create_db_shard_group
|
124
|
-
Aws::RDS::Endpoints::CreateDBShardGroup.build(context)
|
125
|
-
when :create_db_snapshot
|
126
|
-
Aws::RDS::Endpoints::CreateDBSnapshot.build(context)
|
127
|
-
when :create_db_subnet_group
|
128
|
-
Aws::RDS::Endpoints::CreateDBSubnetGroup.build(context)
|
129
|
-
when :create_event_subscription
|
130
|
-
Aws::RDS::Endpoints::CreateEventSubscription.build(context)
|
131
|
-
when :create_global_cluster
|
132
|
-
Aws::RDS::Endpoints::CreateGlobalCluster.build(context)
|
133
|
-
when :create_integration
|
134
|
-
Aws::RDS::Endpoints::CreateIntegration.build(context)
|
135
|
-
when :create_option_group
|
136
|
-
Aws::RDS::Endpoints::CreateOptionGroup.build(context)
|
137
|
-
when :create_tenant_database
|
138
|
-
Aws::RDS::Endpoints::CreateTenantDatabase.build(context)
|
139
|
-
when :delete_blue_green_deployment
|
140
|
-
Aws::RDS::Endpoints::DeleteBlueGreenDeployment.build(context)
|
141
|
-
when :delete_custom_db_engine_version
|
142
|
-
Aws::RDS::Endpoints::DeleteCustomDBEngineVersion.build(context)
|
143
|
-
when :delete_db_cluster
|
144
|
-
Aws::RDS::Endpoints::DeleteDBCluster.build(context)
|
145
|
-
when :delete_db_cluster_automated_backup
|
146
|
-
Aws::RDS::Endpoints::DeleteDBClusterAutomatedBackup.build(context)
|
147
|
-
when :delete_db_cluster_endpoint
|
148
|
-
Aws::RDS::Endpoints::DeleteDBClusterEndpoint.build(context)
|
149
|
-
when :delete_db_cluster_parameter_group
|
150
|
-
Aws::RDS::Endpoints::DeleteDBClusterParameterGroup.build(context)
|
151
|
-
when :delete_db_cluster_snapshot
|
152
|
-
Aws::RDS::Endpoints::DeleteDBClusterSnapshot.build(context)
|
153
|
-
when :delete_db_instance
|
154
|
-
Aws::RDS::Endpoints::DeleteDBInstance.build(context)
|
155
|
-
when :delete_db_instance_automated_backup
|
156
|
-
Aws::RDS::Endpoints::DeleteDBInstanceAutomatedBackup.build(context)
|
157
|
-
when :delete_db_parameter_group
|
158
|
-
Aws::RDS::Endpoints::DeleteDBParameterGroup.build(context)
|
159
|
-
when :delete_db_proxy
|
160
|
-
Aws::RDS::Endpoints::DeleteDBProxy.build(context)
|
161
|
-
when :delete_db_proxy_endpoint
|
162
|
-
Aws::RDS::Endpoints::DeleteDBProxyEndpoint.build(context)
|
163
|
-
when :delete_db_security_group
|
164
|
-
Aws::RDS::Endpoints::DeleteDBSecurityGroup.build(context)
|
165
|
-
when :delete_db_shard_group
|
166
|
-
Aws::RDS::Endpoints::DeleteDBShardGroup.build(context)
|
167
|
-
when :delete_db_snapshot
|
168
|
-
Aws::RDS::Endpoints::DeleteDBSnapshot.build(context)
|
169
|
-
when :delete_db_subnet_group
|
170
|
-
Aws::RDS::Endpoints::DeleteDBSubnetGroup.build(context)
|
171
|
-
when :delete_event_subscription
|
172
|
-
Aws::RDS::Endpoints::DeleteEventSubscription.build(context)
|
173
|
-
when :delete_global_cluster
|
174
|
-
Aws::RDS::Endpoints::DeleteGlobalCluster.build(context)
|
175
|
-
when :delete_integration
|
176
|
-
Aws::RDS::Endpoints::DeleteIntegration.build(context)
|
177
|
-
when :delete_option_group
|
178
|
-
Aws::RDS::Endpoints::DeleteOptionGroup.build(context)
|
179
|
-
when :delete_tenant_database
|
180
|
-
Aws::RDS::Endpoints::DeleteTenantDatabase.build(context)
|
181
|
-
when :deregister_db_proxy_targets
|
182
|
-
Aws::RDS::Endpoints::DeregisterDBProxyTargets.build(context)
|
183
|
-
when :describe_account_attributes
|
184
|
-
Aws::RDS::Endpoints::DescribeAccountAttributes.build(context)
|
185
|
-
when :describe_blue_green_deployments
|
186
|
-
Aws::RDS::Endpoints::DescribeBlueGreenDeployments.build(context)
|
187
|
-
when :describe_certificates
|
188
|
-
Aws::RDS::Endpoints::DescribeCertificates.build(context)
|
189
|
-
when :describe_db_cluster_automated_backups
|
190
|
-
Aws::RDS::Endpoints::DescribeDBClusterAutomatedBackups.build(context)
|
191
|
-
when :describe_db_cluster_backtracks
|
192
|
-
Aws::RDS::Endpoints::DescribeDBClusterBacktracks.build(context)
|
193
|
-
when :describe_db_cluster_endpoints
|
194
|
-
Aws::RDS::Endpoints::DescribeDBClusterEndpoints.build(context)
|
195
|
-
when :describe_db_cluster_parameter_groups
|
196
|
-
Aws::RDS::Endpoints::DescribeDBClusterParameterGroups.build(context)
|
197
|
-
when :describe_db_cluster_parameters
|
198
|
-
Aws::RDS::Endpoints::DescribeDBClusterParameters.build(context)
|
199
|
-
when :describe_db_cluster_snapshot_attributes
|
200
|
-
Aws::RDS::Endpoints::DescribeDBClusterSnapshotAttributes.build(context)
|
201
|
-
when :describe_db_cluster_snapshots
|
202
|
-
Aws::RDS::Endpoints::DescribeDBClusterSnapshots.build(context)
|
203
|
-
when :describe_db_clusters
|
204
|
-
Aws::RDS::Endpoints::DescribeDBClusters.build(context)
|
205
|
-
when :describe_db_engine_versions
|
206
|
-
Aws::RDS::Endpoints::DescribeDBEngineVersions.build(context)
|
207
|
-
when :describe_db_instance_automated_backups
|
208
|
-
Aws::RDS::Endpoints::DescribeDBInstanceAutomatedBackups.build(context)
|
209
|
-
when :describe_db_instances
|
210
|
-
Aws::RDS::Endpoints::DescribeDBInstances.build(context)
|
211
|
-
when :describe_db_log_files
|
212
|
-
Aws::RDS::Endpoints::DescribeDBLogFiles.build(context)
|
213
|
-
when :describe_db_parameter_groups
|
214
|
-
Aws::RDS::Endpoints::DescribeDBParameterGroups.build(context)
|
215
|
-
when :describe_db_parameters
|
216
|
-
Aws::RDS::Endpoints::DescribeDBParameters.build(context)
|
217
|
-
when :describe_db_proxies
|
218
|
-
Aws::RDS::Endpoints::DescribeDBProxies.build(context)
|
219
|
-
when :describe_db_proxy_endpoints
|
220
|
-
Aws::RDS::Endpoints::DescribeDBProxyEndpoints.build(context)
|
221
|
-
when :describe_db_proxy_target_groups
|
222
|
-
Aws::RDS::Endpoints::DescribeDBProxyTargetGroups.build(context)
|
223
|
-
when :describe_db_proxy_targets
|
224
|
-
Aws::RDS::Endpoints::DescribeDBProxyTargets.build(context)
|
225
|
-
when :describe_db_recommendations
|
226
|
-
Aws::RDS::Endpoints::DescribeDBRecommendations.build(context)
|
227
|
-
when :describe_db_security_groups
|
228
|
-
Aws::RDS::Endpoints::DescribeDBSecurityGroups.build(context)
|
229
|
-
when :describe_db_shard_groups
|
230
|
-
Aws::RDS::Endpoints::DescribeDBShardGroups.build(context)
|
231
|
-
when :describe_db_snapshot_attributes
|
232
|
-
Aws::RDS::Endpoints::DescribeDBSnapshotAttributes.build(context)
|
233
|
-
when :describe_db_snapshot_tenant_databases
|
234
|
-
Aws::RDS::Endpoints::DescribeDBSnapshotTenantDatabases.build(context)
|
235
|
-
when :describe_db_snapshots
|
236
|
-
Aws::RDS::Endpoints::DescribeDBSnapshots.build(context)
|
237
|
-
when :describe_db_subnet_groups
|
238
|
-
Aws::RDS::Endpoints::DescribeDBSubnetGroups.build(context)
|
239
|
-
when :describe_engine_default_cluster_parameters
|
240
|
-
Aws::RDS::Endpoints::DescribeEngineDefaultClusterParameters.build(context)
|
241
|
-
when :describe_engine_default_parameters
|
242
|
-
Aws::RDS::Endpoints::DescribeEngineDefaultParameters.build(context)
|
243
|
-
when :describe_event_categories
|
244
|
-
Aws::RDS::Endpoints::DescribeEventCategories.build(context)
|
245
|
-
when :describe_event_subscriptions
|
246
|
-
Aws::RDS::Endpoints::DescribeEventSubscriptions.build(context)
|
247
|
-
when :describe_events
|
248
|
-
Aws::RDS::Endpoints::DescribeEvents.build(context)
|
249
|
-
when :describe_export_tasks
|
250
|
-
Aws::RDS::Endpoints::DescribeExportTasks.build(context)
|
251
|
-
when :describe_global_clusters
|
252
|
-
Aws::RDS::Endpoints::DescribeGlobalClusters.build(context)
|
253
|
-
when :describe_integrations
|
254
|
-
Aws::RDS::Endpoints::DescribeIntegrations.build(context)
|
255
|
-
when :describe_option_group_options
|
256
|
-
Aws::RDS::Endpoints::DescribeOptionGroupOptions.build(context)
|
257
|
-
when :describe_option_groups
|
258
|
-
Aws::RDS::Endpoints::DescribeOptionGroups.build(context)
|
259
|
-
when :describe_orderable_db_instance_options
|
260
|
-
Aws::RDS::Endpoints::DescribeOrderableDBInstanceOptions.build(context)
|
261
|
-
when :describe_pending_maintenance_actions
|
262
|
-
Aws::RDS::Endpoints::DescribePendingMaintenanceActions.build(context)
|
263
|
-
when :describe_reserved_db_instances
|
264
|
-
Aws::RDS::Endpoints::DescribeReservedDBInstances.build(context)
|
265
|
-
when :describe_reserved_db_instances_offerings
|
266
|
-
Aws::RDS::Endpoints::DescribeReservedDBInstancesOfferings.build(context)
|
267
|
-
when :describe_source_regions
|
268
|
-
Aws::RDS::Endpoints::DescribeSourceRegions.build(context)
|
269
|
-
when :describe_tenant_databases
|
270
|
-
Aws::RDS::Endpoints::DescribeTenantDatabases.build(context)
|
271
|
-
when :describe_valid_db_instance_modifications
|
272
|
-
Aws::RDS::Endpoints::DescribeValidDBInstanceModifications.build(context)
|
273
|
-
when :disable_http_endpoint
|
274
|
-
Aws::RDS::Endpoints::DisableHttpEndpoint.build(context)
|
275
|
-
when :download_db_log_file_portion
|
276
|
-
Aws::RDS::Endpoints::DownloadDBLogFilePortion.build(context)
|
277
|
-
when :enable_http_endpoint
|
278
|
-
Aws::RDS::Endpoints::EnableHttpEndpoint.build(context)
|
279
|
-
when :failover_db_cluster
|
280
|
-
Aws::RDS::Endpoints::FailoverDBCluster.build(context)
|
281
|
-
when :failover_global_cluster
|
282
|
-
Aws::RDS::Endpoints::FailoverGlobalCluster.build(context)
|
283
|
-
when :list_tags_for_resource
|
284
|
-
Aws::RDS::Endpoints::ListTagsForResource.build(context)
|
285
|
-
when :modify_activity_stream
|
286
|
-
Aws::RDS::Endpoints::ModifyActivityStream.build(context)
|
287
|
-
when :modify_certificates
|
288
|
-
Aws::RDS::Endpoints::ModifyCertificates.build(context)
|
289
|
-
when :modify_current_db_cluster_capacity
|
290
|
-
Aws::RDS::Endpoints::ModifyCurrentDBClusterCapacity.build(context)
|
291
|
-
when :modify_custom_db_engine_version
|
292
|
-
Aws::RDS::Endpoints::ModifyCustomDBEngineVersion.build(context)
|
293
|
-
when :modify_db_cluster
|
294
|
-
Aws::RDS::Endpoints::ModifyDBCluster.build(context)
|
295
|
-
when :modify_db_cluster_endpoint
|
296
|
-
Aws::RDS::Endpoints::ModifyDBClusterEndpoint.build(context)
|
297
|
-
when :modify_db_cluster_parameter_group
|
298
|
-
Aws::RDS::Endpoints::ModifyDBClusterParameterGroup.build(context)
|
299
|
-
when :modify_db_cluster_snapshot_attribute
|
300
|
-
Aws::RDS::Endpoints::ModifyDBClusterSnapshotAttribute.build(context)
|
301
|
-
when :modify_db_instance
|
302
|
-
Aws::RDS::Endpoints::ModifyDBInstance.build(context)
|
303
|
-
when :modify_db_parameter_group
|
304
|
-
Aws::RDS::Endpoints::ModifyDBParameterGroup.build(context)
|
305
|
-
when :modify_db_proxy
|
306
|
-
Aws::RDS::Endpoints::ModifyDBProxy.build(context)
|
307
|
-
when :modify_db_proxy_endpoint
|
308
|
-
Aws::RDS::Endpoints::ModifyDBProxyEndpoint.build(context)
|
309
|
-
when :modify_db_proxy_target_group
|
310
|
-
Aws::RDS::Endpoints::ModifyDBProxyTargetGroup.build(context)
|
311
|
-
when :modify_db_recommendation
|
312
|
-
Aws::RDS::Endpoints::ModifyDBRecommendation.build(context)
|
313
|
-
when :modify_db_shard_group
|
314
|
-
Aws::RDS::Endpoints::ModifyDBShardGroup.build(context)
|
315
|
-
when :modify_db_snapshot
|
316
|
-
Aws::RDS::Endpoints::ModifyDBSnapshot.build(context)
|
317
|
-
when :modify_db_snapshot_attribute
|
318
|
-
Aws::RDS::Endpoints::ModifyDBSnapshotAttribute.build(context)
|
319
|
-
when :modify_db_subnet_group
|
320
|
-
Aws::RDS::Endpoints::ModifyDBSubnetGroup.build(context)
|
321
|
-
when :modify_event_subscription
|
322
|
-
Aws::RDS::Endpoints::ModifyEventSubscription.build(context)
|
323
|
-
when :modify_global_cluster
|
324
|
-
Aws::RDS::Endpoints::ModifyGlobalCluster.build(context)
|
325
|
-
when :modify_integration
|
326
|
-
Aws::RDS::Endpoints::ModifyIntegration.build(context)
|
327
|
-
when :modify_option_group
|
328
|
-
Aws::RDS::Endpoints::ModifyOptionGroup.build(context)
|
329
|
-
when :modify_tenant_database
|
330
|
-
Aws::RDS::Endpoints::ModifyTenantDatabase.build(context)
|
331
|
-
when :promote_read_replica
|
332
|
-
Aws::RDS::Endpoints::PromoteReadReplica.build(context)
|
333
|
-
when :promote_read_replica_db_cluster
|
334
|
-
Aws::RDS::Endpoints::PromoteReadReplicaDBCluster.build(context)
|
335
|
-
when :purchase_reserved_db_instances_offering
|
336
|
-
Aws::RDS::Endpoints::PurchaseReservedDBInstancesOffering.build(context)
|
337
|
-
when :reboot_db_cluster
|
338
|
-
Aws::RDS::Endpoints::RebootDBCluster.build(context)
|
339
|
-
when :reboot_db_instance
|
340
|
-
Aws::RDS::Endpoints::RebootDBInstance.build(context)
|
341
|
-
when :reboot_db_shard_group
|
342
|
-
Aws::RDS::Endpoints::RebootDBShardGroup.build(context)
|
343
|
-
when :register_db_proxy_targets
|
344
|
-
Aws::RDS::Endpoints::RegisterDBProxyTargets.build(context)
|
345
|
-
when :remove_from_global_cluster
|
346
|
-
Aws::RDS::Endpoints::RemoveFromGlobalCluster.build(context)
|
347
|
-
when :remove_role_from_db_cluster
|
348
|
-
Aws::RDS::Endpoints::RemoveRoleFromDBCluster.build(context)
|
349
|
-
when :remove_role_from_db_instance
|
350
|
-
Aws::RDS::Endpoints::RemoveRoleFromDBInstance.build(context)
|
351
|
-
when :remove_source_identifier_from_subscription
|
352
|
-
Aws::RDS::Endpoints::RemoveSourceIdentifierFromSubscription.build(context)
|
353
|
-
when :remove_tags_from_resource
|
354
|
-
Aws::RDS::Endpoints::RemoveTagsFromResource.build(context)
|
355
|
-
when :reset_db_cluster_parameter_group
|
356
|
-
Aws::RDS::Endpoints::ResetDBClusterParameterGroup.build(context)
|
357
|
-
when :reset_db_parameter_group
|
358
|
-
Aws::RDS::Endpoints::ResetDBParameterGroup.build(context)
|
359
|
-
when :restore_db_cluster_from_s3
|
360
|
-
Aws::RDS::Endpoints::RestoreDBClusterFromS3.build(context)
|
361
|
-
when :restore_db_cluster_from_snapshot
|
362
|
-
Aws::RDS::Endpoints::RestoreDBClusterFromSnapshot.build(context)
|
363
|
-
when :restore_db_cluster_to_point_in_time
|
364
|
-
Aws::RDS::Endpoints::RestoreDBClusterToPointInTime.build(context)
|
365
|
-
when :restore_db_instance_from_db_snapshot
|
366
|
-
Aws::RDS::Endpoints::RestoreDBInstanceFromDBSnapshot.build(context)
|
367
|
-
when :restore_db_instance_from_s3
|
368
|
-
Aws::RDS::Endpoints::RestoreDBInstanceFromS3.build(context)
|
369
|
-
when :restore_db_instance_to_point_in_time
|
370
|
-
Aws::RDS::Endpoints::RestoreDBInstanceToPointInTime.build(context)
|
371
|
-
when :revoke_db_security_group_ingress
|
372
|
-
Aws::RDS::Endpoints::RevokeDBSecurityGroupIngress.build(context)
|
373
|
-
when :start_activity_stream
|
374
|
-
Aws::RDS::Endpoints::StartActivityStream.build(context)
|
375
|
-
when :start_db_cluster
|
376
|
-
Aws::RDS::Endpoints::StartDBCluster.build(context)
|
377
|
-
when :start_db_instance
|
378
|
-
Aws::RDS::Endpoints::StartDBInstance.build(context)
|
379
|
-
when :start_db_instance_automated_backups_replication
|
380
|
-
Aws::RDS::Endpoints::StartDBInstanceAutomatedBackupsReplication.build(context)
|
381
|
-
when :start_export_task
|
382
|
-
Aws::RDS::Endpoints::StartExportTask.build(context)
|
383
|
-
when :stop_activity_stream
|
384
|
-
Aws::RDS::Endpoints::StopActivityStream.build(context)
|
385
|
-
when :stop_db_cluster
|
386
|
-
Aws::RDS::Endpoints::StopDBCluster.build(context)
|
387
|
-
when :stop_db_instance
|
388
|
-
Aws::RDS::Endpoints::StopDBInstance.build(context)
|
389
|
-
when :stop_db_instance_automated_backups_replication
|
390
|
-
Aws::RDS::Endpoints::StopDBInstanceAutomatedBackupsReplication.build(context)
|
391
|
-
when :switchover_blue_green_deployment
|
392
|
-
Aws::RDS::Endpoints::SwitchoverBlueGreenDeployment.build(context)
|
393
|
-
when :switchover_global_cluster
|
394
|
-
Aws::RDS::Endpoints::SwitchoverGlobalCluster.build(context)
|
395
|
-
when :switchover_read_replica
|
396
|
-
Aws::RDS::Endpoints::SwitchoverReadReplica.build(context)
|
397
|
-
end
|
398
|
-
end
|
399
70
|
end
|
400
71
|
|
401
72
|
def add_handlers(handlers, _config)
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -96,6 +96,7 @@ module Aws::RDS
|
|
96
96
|
# auto_minor_version_upgrade: false,
|
97
97
|
# monitoring_interval: 1,
|
98
98
|
# monitoring_role_arn: "String",
|
99
|
+
# database_insights_mode: "standard", # accepts standard, advanced
|
99
100
|
# enable_performance_insights: false,
|
100
101
|
# performance_insights_kms_key_id: "String",
|
101
102
|
# performance_insights_retention_period: 1,
|
@@ -103,6 +104,7 @@ module Aws::RDS
|
|
103
104
|
# serverless_v2_scaling_configuration: {
|
104
105
|
# min_capacity: 1.0,
|
105
106
|
# max_capacity: 1.0,
|
107
|
+
# seconds_until_auto_pause: 1,
|
106
108
|
# },
|
107
109
|
# network_type: "String",
|
108
110
|
# cluster_scalability_type: "standard", # accepts standard, limitless
|
@@ -469,13 +471,15 @@ module Aws::RDS
|
|
469
471
|
# mapping isn't enabled.
|
470
472
|
#
|
471
473
|
# For more information, see [ IAM Database Authentication][1] in the
|
472
|
-
# *Amazon Aurora User Guide
|
474
|
+
# *Amazon Aurora User Guide* or [IAM database authentication for
|
475
|
+
# MariaDB, MySQL, and PostgreSQL][2] in the *Amazon RDS User Guide*.
|
473
476
|
#
|
474
|
-
# Valid for Cluster Type: Aurora DB clusters
|
477
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
475
478
|
#
|
476
479
|
#
|
477
480
|
#
|
478
481
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html
|
482
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
479
483
|
# @option options [Integer] :backtrack_window
|
480
484
|
# The target backtrack window, in seconds. To disable backtracking, set
|
481
485
|
# this value to `0`.
|
@@ -773,6 +777,8 @@ module Aws::RDS
|
|
773
777
|
#
|
774
778
|
#
|
775
779
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.OS.html#USER_Monitoring.OS.Enabling
|
780
|
+
# @option options [String] :database_insights_mode
|
781
|
+
# Specifies the mode of Database Insights to enable for the cluster.
|
776
782
|
# @option options [Boolean] :enable_performance_insights
|
777
783
|
# Specifies whether to turn on Performance Insights for the DB cluster.
|
778
784
|
#
|
@@ -821,6 +827,11 @@ module Aws::RDS
|
|
821
827
|
# Aurora Limitless Database to create a DB shard group.
|
822
828
|
#
|
823
829
|
# Valid for: Aurora DB clusters only
|
830
|
+
#
|
831
|
+
# <note markdown="1"> This setting is no longer used. Instead use the
|
832
|
+
# `ClusterScalabilityType` setting.
|
833
|
+
#
|
834
|
+
# </note>
|
824
835
|
# @option options [Types::ServerlessV2ScalingConfiguration] :serverless_v2_scaling_configuration
|
825
836
|
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
826
837
|
# cluster.
|
@@ -943,8 +954,8 @@ module Aws::RDS
|
|
943
954
|
# support for that engine version. For more information, see the
|
944
955
|
# following sections:
|
945
956
|
#
|
946
|
-
# * Amazon Aurora
|
947
|
-
#
|
957
|
+
# * Amazon Aurora - [Using Amazon RDS Extended Support][1] in the
|
958
|
+
# *Amazon Aurora User Guide*
|
948
959
|
#
|
949
960
|
# * Amazon RDS - [Using Amazon RDS Extended Support][2] in the *Amazon
|
950
961
|
# RDS User Guide*
|
@@ -1118,6 +1129,7 @@ module Aws::RDS
|
|
1118
1129
|
# promotion_tier: 1,
|
1119
1130
|
# timezone: "String",
|
1120
1131
|
# enable_iam_database_authentication: false,
|
1132
|
+
# database_insights_mode: "standard", # accepts standard, advanced
|
1121
1133
|
# enable_performance_insights: false,
|
1122
1134
|
# performance_insights_kms_key_id: "String",
|
1123
1135
|
# performance_insights_retention_period: 1,
|
@@ -1159,6 +1171,9 @@ module Aws::RDS
|
|
1159
1171
|
#
|
1160
1172
|
# * Must contain 1 to 64 alphanumeric characters.
|
1161
1173
|
#
|
1174
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
1175
|
+
# underscores, or digits (0-9).
|
1176
|
+
#
|
1162
1177
|
# * Can't be a word reserved by the database engine.
|
1163
1178
|
#
|
1164
1179
|
# Amazon Aurora PostgreSQL
|
@@ -1389,14 +1404,12 @@ module Aws::RDS
|
|
1389
1404
|
# 16384.
|
1390
1405
|
#
|
1391
1406
|
# * Web and Express editions: Must be an integer from 20 to 16384.
|
1392
|
-
#
|
1393
1407
|
# * Provisioned IOPS storage (io1, io2):
|
1394
1408
|
#
|
1395
1409
|
# * Enterprise and Standard editions: Must be an integer from 100 to
|
1396
1410
|
# 16384.
|
1397
1411
|
#
|
1398
1412
|
# * Web and Express editions: Must be an integer from 100 to 16384.
|
1399
|
-
#
|
1400
1413
|
# * Magnetic storage (standard):
|
1401
1414
|
#
|
1402
1415
|
# * Enterprise and Standard editions: Must be an integer from 20 to
|
@@ -2077,6 +2090,8 @@ module Aws::RDS
|
|
2077
2090
|
#
|
2078
2091
|
#
|
2079
2092
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
2093
|
+
# @option options [String] :database_insights_mode
|
2094
|
+
# Specifies the mode of Database Insights to enable for the instance.
|
2080
2095
|
# @option options [Boolean] :enable_performance_insights
|
2081
2096
|
# Specifies whether to enable Performance Insights for the DB instance.
|
2082
2097
|
# For more information, see [Using Amazon Performance Insights][1] in
|
@@ -3095,7 +3110,6 @@ module Aws::RDS
|
|
3095
3110
|
# * `provisioned`
|
3096
3111
|
#
|
3097
3112
|
# * `serverless`
|
3098
|
-
#
|
3099
3113
|
# * `engine-version` - Accepts engine versions. The results list only
|
3100
3114
|
# includes information about the DB engine versions for these engine
|
3101
3115
|
# versions.
|