aws-sdk-docdb 1.58.0 → 1.60.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.
data/sig/client.rbs ADDED
@@ -0,0 +1,994 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module DocDB
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> instance
72
+ | (?Hash[Symbol, untyped]) -> instance
73
+
74
+
75
+ interface _AddSourceIdentifierToSubscriptionResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::AddSourceIdentifierToSubscriptionResult]
77
+ def event_subscription: () -> Types::EventSubscription
78
+ end
79
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#add_source_identifier_to_subscription-instance_method
80
+ def add_source_identifier_to_subscription: (
81
+ subscription_name: ::String,
82
+ source_identifier: ::String
83
+ ) -> _AddSourceIdentifierToSubscriptionResponseSuccess
84
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddSourceIdentifierToSubscriptionResponseSuccess
85
+
86
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#add_tags_to_resource-instance_method
87
+ def add_tags_to_resource: (
88
+ resource_name: ::String,
89
+ tags: Array[
90
+ {
91
+ key: ::String?,
92
+ value: ::String?
93
+ },
94
+ ]
95
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
96
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
97
+
98
+ interface _ApplyPendingMaintenanceActionResponseSuccess
99
+ include ::Seahorse::Client::_ResponseSuccess[Types::ApplyPendingMaintenanceActionResult]
100
+ def resource_pending_maintenance_actions: () -> Types::ResourcePendingMaintenanceActions
101
+ end
102
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#apply_pending_maintenance_action-instance_method
103
+ def apply_pending_maintenance_action: (
104
+ resource_identifier: ::String,
105
+ apply_action: ::String,
106
+ opt_in_type: ::String
107
+ ) -> _ApplyPendingMaintenanceActionResponseSuccess
108
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ApplyPendingMaintenanceActionResponseSuccess
109
+
110
+ interface _CopyDBClusterParameterGroupResponseSuccess
111
+ include ::Seahorse::Client::_ResponseSuccess[Types::CopyDBClusterParameterGroupResult]
112
+ def db_cluster_parameter_group: () -> Types::DBClusterParameterGroup
113
+ end
114
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#copy_db_cluster_parameter_group-instance_method
115
+ def copy_db_cluster_parameter_group: (
116
+ source_db_cluster_parameter_group_identifier: ::String,
117
+ target_db_cluster_parameter_group_identifier: ::String,
118
+ target_db_cluster_parameter_group_description: ::String,
119
+ ?tags: Array[
120
+ {
121
+ key: ::String?,
122
+ value: ::String?
123
+ },
124
+ ]
125
+ ) -> _CopyDBClusterParameterGroupResponseSuccess
126
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CopyDBClusterParameterGroupResponseSuccess
127
+
128
+ interface _CopyDBClusterSnapshotResponseSuccess
129
+ include ::Seahorse::Client::_ResponseSuccess[Types::CopyDBClusterSnapshotResult]
130
+ def db_cluster_snapshot: () -> Types::DBClusterSnapshot
131
+ end
132
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#copy_db_cluster_snapshot-instance_method
133
+ def copy_db_cluster_snapshot: (
134
+ source_db_cluster_snapshot_identifier: ::String,
135
+ target_db_cluster_snapshot_identifier: ::String,
136
+ ?kms_key_id: ::String,
137
+ ?pre_signed_url: ::String,
138
+ ?copy_tags: bool,
139
+ ?tags: Array[
140
+ {
141
+ key: ::String?,
142
+ value: ::String?
143
+ },
144
+ ],
145
+ ?source_region: ::String
146
+ ) -> _CopyDBClusterSnapshotResponseSuccess
147
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CopyDBClusterSnapshotResponseSuccess
148
+
149
+ interface _CreateDBClusterResponseSuccess
150
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDBClusterResult]
151
+ def db_cluster: () -> Types::DBCluster
152
+ end
153
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#create_db_cluster-instance_method
154
+ def create_db_cluster: (
155
+ ?availability_zones: Array[::String],
156
+ ?backup_retention_period: ::Integer,
157
+ db_cluster_identifier: ::String,
158
+ ?db_cluster_parameter_group_name: ::String,
159
+ ?vpc_security_group_ids: Array[::String],
160
+ ?db_subnet_group_name: ::String,
161
+ engine: ::String,
162
+ ?engine_version: ::String,
163
+ ?port: ::Integer,
164
+ ?master_username: ::String,
165
+ ?master_user_password: ::String,
166
+ ?preferred_backup_window: ::String,
167
+ ?preferred_maintenance_window: ::String,
168
+ ?tags: Array[
169
+ {
170
+ key: ::String?,
171
+ value: ::String?
172
+ },
173
+ ],
174
+ ?storage_encrypted: bool,
175
+ ?kms_key_id: ::String,
176
+ ?pre_signed_url: ::String,
177
+ ?enable_cloudwatch_logs_exports: Array[::String],
178
+ ?deletion_protection: bool,
179
+ ?global_cluster_identifier: ::String,
180
+ ?storage_type: ::String,
181
+ ?source_region: ::String
182
+ ) -> _CreateDBClusterResponseSuccess
183
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDBClusterResponseSuccess
184
+
185
+ interface _CreateDBClusterParameterGroupResponseSuccess
186
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDBClusterParameterGroupResult]
187
+ def db_cluster_parameter_group: () -> Types::DBClusterParameterGroup
188
+ end
189
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#create_db_cluster_parameter_group-instance_method
190
+ def create_db_cluster_parameter_group: (
191
+ db_cluster_parameter_group_name: ::String,
192
+ db_parameter_group_family: ::String,
193
+ description: ::String,
194
+ ?tags: Array[
195
+ {
196
+ key: ::String?,
197
+ value: ::String?
198
+ },
199
+ ]
200
+ ) -> _CreateDBClusterParameterGroupResponseSuccess
201
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDBClusterParameterGroupResponseSuccess
202
+
203
+ interface _CreateDBClusterSnapshotResponseSuccess
204
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDBClusterSnapshotResult]
205
+ def db_cluster_snapshot: () -> Types::DBClusterSnapshot
206
+ end
207
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#create_db_cluster_snapshot-instance_method
208
+ def create_db_cluster_snapshot: (
209
+ db_cluster_snapshot_identifier: ::String,
210
+ db_cluster_identifier: ::String,
211
+ ?tags: Array[
212
+ {
213
+ key: ::String?,
214
+ value: ::String?
215
+ },
216
+ ]
217
+ ) -> _CreateDBClusterSnapshotResponseSuccess
218
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDBClusterSnapshotResponseSuccess
219
+
220
+ interface _CreateDBInstanceResponseSuccess
221
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDBInstanceResult]
222
+ def db_instance: () -> Types::DBInstance
223
+ end
224
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#create_db_instance-instance_method
225
+ def create_db_instance: (
226
+ db_instance_identifier: ::String,
227
+ db_instance_class: ::String,
228
+ engine: ::String,
229
+ ?availability_zone: ::String,
230
+ ?preferred_maintenance_window: ::String,
231
+ ?auto_minor_version_upgrade: bool,
232
+ ?tags: Array[
233
+ {
234
+ key: ::String?,
235
+ value: ::String?
236
+ },
237
+ ],
238
+ db_cluster_identifier: ::String,
239
+ ?copy_tags_to_snapshot: bool,
240
+ ?promotion_tier: ::Integer,
241
+ ?enable_performance_insights: bool,
242
+ ?performance_insights_kms_key_id: ::String,
243
+ ?ca_certificate_identifier: ::String
244
+ ) -> _CreateDBInstanceResponseSuccess
245
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDBInstanceResponseSuccess
246
+
247
+ interface _CreateDBSubnetGroupResponseSuccess
248
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDBSubnetGroupResult]
249
+ def db_subnet_group: () -> Types::DBSubnetGroup
250
+ end
251
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#create_db_subnet_group-instance_method
252
+ def create_db_subnet_group: (
253
+ db_subnet_group_name: ::String,
254
+ db_subnet_group_description: ::String,
255
+ subnet_ids: Array[::String],
256
+ ?tags: Array[
257
+ {
258
+ key: ::String?,
259
+ value: ::String?
260
+ },
261
+ ]
262
+ ) -> _CreateDBSubnetGroupResponseSuccess
263
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDBSubnetGroupResponseSuccess
264
+
265
+ interface _CreateEventSubscriptionResponseSuccess
266
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateEventSubscriptionResult]
267
+ def event_subscription: () -> Types::EventSubscription
268
+ end
269
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#create_event_subscription-instance_method
270
+ def create_event_subscription: (
271
+ subscription_name: ::String,
272
+ sns_topic_arn: ::String,
273
+ ?source_type: ::String,
274
+ ?event_categories: Array[::String],
275
+ ?source_ids: Array[::String],
276
+ ?enabled: bool,
277
+ ?tags: Array[
278
+ {
279
+ key: ::String?,
280
+ value: ::String?
281
+ },
282
+ ]
283
+ ) -> _CreateEventSubscriptionResponseSuccess
284
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEventSubscriptionResponseSuccess
285
+
286
+ interface _CreateGlobalClusterResponseSuccess
287
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateGlobalClusterResult]
288
+ def global_cluster: () -> Types::GlobalCluster
289
+ end
290
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#create_global_cluster-instance_method
291
+ def create_global_cluster: (
292
+ global_cluster_identifier: ::String,
293
+ ?source_db_cluster_identifier: ::String,
294
+ ?engine: ::String,
295
+ ?engine_version: ::String,
296
+ ?deletion_protection: bool,
297
+ ?database_name: ::String,
298
+ ?storage_encrypted: bool
299
+ ) -> _CreateGlobalClusterResponseSuccess
300
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGlobalClusterResponseSuccess
301
+
302
+ interface _DeleteDBClusterResponseSuccess
303
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDBClusterResult]
304
+ def db_cluster: () -> Types::DBCluster
305
+ end
306
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#delete_db_cluster-instance_method
307
+ def delete_db_cluster: (
308
+ db_cluster_identifier: ::String,
309
+ ?skip_final_snapshot: bool,
310
+ ?final_db_snapshot_identifier: ::String
311
+ ) -> _DeleteDBClusterResponseSuccess
312
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDBClusterResponseSuccess
313
+
314
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#delete_db_cluster_parameter_group-instance_method
315
+ def delete_db_cluster_parameter_group: (
316
+ db_cluster_parameter_group_name: ::String
317
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
318
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
319
+
320
+ interface _DeleteDBClusterSnapshotResponseSuccess
321
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDBClusterSnapshotResult]
322
+ def db_cluster_snapshot: () -> Types::DBClusterSnapshot
323
+ end
324
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#delete_db_cluster_snapshot-instance_method
325
+ def delete_db_cluster_snapshot: (
326
+ db_cluster_snapshot_identifier: ::String
327
+ ) -> _DeleteDBClusterSnapshotResponseSuccess
328
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDBClusterSnapshotResponseSuccess
329
+
330
+ interface _DeleteDBInstanceResponseSuccess
331
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDBInstanceResult]
332
+ def db_instance: () -> Types::DBInstance
333
+ end
334
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#delete_db_instance-instance_method
335
+ def delete_db_instance: (
336
+ db_instance_identifier: ::String
337
+ ) -> _DeleteDBInstanceResponseSuccess
338
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDBInstanceResponseSuccess
339
+
340
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#delete_db_subnet_group-instance_method
341
+ def delete_db_subnet_group: (
342
+ db_subnet_group_name: ::String
343
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
344
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
345
+
346
+ interface _DeleteEventSubscriptionResponseSuccess
347
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteEventSubscriptionResult]
348
+ def event_subscription: () -> Types::EventSubscription
349
+ end
350
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#delete_event_subscription-instance_method
351
+ def delete_event_subscription: (
352
+ subscription_name: ::String
353
+ ) -> _DeleteEventSubscriptionResponseSuccess
354
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteEventSubscriptionResponseSuccess
355
+
356
+ interface _DeleteGlobalClusterResponseSuccess
357
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteGlobalClusterResult]
358
+ def global_cluster: () -> Types::GlobalCluster
359
+ end
360
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#delete_global_cluster-instance_method
361
+ def delete_global_cluster: (
362
+ global_cluster_identifier: ::String
363
+ ) -> _DeleteGlobalClusterResponseSuccess
364
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteGlobalClusterResponseSuccess
365
+
366
+ interface _DescribeCertificatesResponseSuccess
367
+ include ::Seahorse::Client::_ResponseSuccess[Types::CertificateMessage]
368
+ def certificates: () -> ::Array[Types::Certificate]
369
+ def marker: () -> ::String
370
+ end
371
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#describe_certificates-instance_method
372
+ def describe_certificates: (
373
+ ?certificate_identifier: ::String,
374
+ ?filters: Array[
375
+ {
376
+ name: ::String,
377
+ values: Array[::String]
378
+ },
379
+ ],
380
+ ?max_records: ::Integer,
381
+ ?marker: ::String
382
+ ) -> _DescribeCertificatesResponseSuccess
383
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeCertificatesResponseSuccess
384
+
385
+ interface _DescribeDBClusterParameterGroupsResponseSuccess
386
+ include ::Seahorse::Client::_ResponseSuccess[Types::DBClusterParameterGroupsMessage]
387
+ def marker: () -> ::String
388
+ def db_cluster_parameter_groups: () -> ::Array[Types::DBClusterParameterGroup]
389
+ end
390
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#describe_db_cluster_parameter_groups-instance_method
391
+ def describe_db_cluster_parameter_groups: (
392
+ ?db_cluster_parameter_group_name: ::String,
393
+ ?filters: Array[
394
+ {
395
+ name: ::String,
396
+ values: Array[::String]
397
+ },
398
+ ],
399
+ ?max_records: ::Integer,
400
+ ?marker: ::String
401
+ ) -> _DescribeDBClusterParameterGroupsResponseSuccess
402
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDBClusterParameterGroupsResponseSuccess
403
+
404
+ interface _DescribeDBClusterParametersResponseSuccess
405
+ include ::Seahorse::Client::_ResponseSuccess[Types::DBClusterParameterGroupDetails]
406
+ def parameters: () -> ::Array[Types::Parameter]
407
+ def marker: () -> ::String
408
+ end
409
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#describe_db_cluster_parameters-instance_method
410
+ def describe_db_cluster_parameters: (
411
+ db_cluster_parameter_group_name: ::String,
412
+ ?source: ::String,
413
+ ?filters: Array[
414
+ {
415
+ name: ::String,
416
+ values: Array[::String]
417
+ },
418
+ ],
419
+ ?max_records: ::Integer,
420
+ ?marker: ::String
421
+ ) -> _DescribeDBClusterParametersResponseSuccess
422
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDBClusterParametersResponseSuccess
423
+
424
+ interface _DescribeDBClusterSnapshotAttributesResponseSuccess
425
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeDBClusterSnapshotAttributesResult]
426
+ def db_cluster_snapshot_attributes_result: () -> Types::DBClusterSnapshotAttributesResult
427
+ end
428
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#describe_db_cluster_snapshot_attributes-instance_method
429
+ def describe_db_cluster_snapshot_attributes: (
430
+ db_cluster_snapshot_identifier: ::String
431
+ ) -> _DescribeDBClusterSnapshotAttributesResponseSuccess
432
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDBClusterSnapshotAttributesResponseSuccess
433
+
434
+ interface _DescribeDBClusterSnapshotsResponseSuccess
435
+ include ::Seahorse::Client::_ResponseSuccess[Types::DBClusterSnapshotMessage]
436
+ def marker: () -> ::String
437
+ def db_cluster_snapshots: () -> ::Array[Types::DBClusterSnapshot]
438
+ end
439
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#describe_db_cluster_snapshots-instance_method
440
+ def describe_db_cluster_snapshots: (
441
+ ?db_cluster_identifier: ::String,
442
+ ?db_cluster_snapshot_identifier: ::String,
443
+ ?snapshot_type: ::String,
444
+ ?filters: Array[
445
+ {
446
+ name: ::String,
447
+ values: Array[::String]
448
+ },
449
+ ],
450
+ ?max_records: ::Integer,
451
+ ?marker: ::String,
452
+ ?include_shared: bool,
453
+ ?include_public: bool
454
+ ) -> _DescribeDBClusterSnapshotsResponseSuccess
455
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDBClusterSnapshotsResponseSuccess
456
+
457
+ interface _DescribeDBClustersResponseSuccess
458
+ include ::Seahorse::Client::_ResponseSuccess[Types::DBClusterMessage]
459
+ def marker: () -> ::String
460
+ def db_clusters: () -> ::Array[Types::DBCluster]
461
+ end
462
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#describe_db_clusters-instance_method
463
+ def describe_db_clusters: (
464
+ ?db_cluster_identifier: ::String,
465
+ ?filters: Array[
466
+ {
467
+ name: ::String,
468
+ values: Array[::String]
469
+ },
470
+ ],
471
+ ?max_records: ::Integer,
472
+ ?marker: ::String
473
+ ) -> _DescribeDBClustersResponseSuccess
474
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDBClustersResponseSuccess
475
+
476
+ interface _DescribeDBEngineVersionsResponseSuccess
477
+ include ::Seahorse::Client::_ResponseSuccess[Types::DBEngineVersionMessage]
478
+ def marker: () -> ::String
479
+ def db_engine_versions: () -> ::Array[Types::DBEngineVersion]
480
+ end
481
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#describe_db_engine_versions-instance_method
482
+ def describe_db_engine_versions: (
483
+ ?engine: ::String,
484
+ ?engine_version: ::String,
485
+ ?db_parameter_group_family: ::String,
486
+ ?filters: Array[
487
+ {
488
+ name: ::String,
489
+ values: Array[::String]
490
+ },
491
+ ],
492
+ ?max_records: ::Integer,
493
+ ?marker: ::String,
494
+ ?default_only: bool,
495
+ ?list_supported_character_sets: bool,
496
+ ?list_supported_timezones: bool
497
+ ) -> _DescribeDBEngineVersionsResponseSuccess
498
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDBEngineVersionsResponseSuccess
499
+
500
+ interface _DescribeDBInstancesResponseSuccess
501
+ include ::Seahorse::Client::_ResponseSuccess[Types::DBInstanceMessage]
502
+ def marker: () -> ::String
503
+ def db_instances: () -> ::Array[Types::DBInstance]
504
+ end
505
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#describe_db_instances-instance_method
506
+ def describe_db_instances: (
507
+ ?db_instance_identifier: ::String,
508
+ ?filters: Array[
509
+ {
510
+ name: ::String,
511
+ values: Array[::String]
512
+ },
513
+ ],
514
+ ?max_records: ::Integer,
515
+ ?marker: ::String
516
+ ) -> _DescribeDBInstancesResponseSuccess
517
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDBInstancesResponseSuccess
518
+
519
+ interface _DescribeDBSubnetGroupsResponseSuccess
520
+ include ::Seahorse::Client::_ResponseSuccess[Types::DBSubnetGroupMessage]
521
+ def marker: () -> ::String
522
+ def db_subnet_groups: () -> ::Array[Types::DBSubnetGroup]
523
+ end
524
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#describe_db_subnet_groups-instance_method
525
+ def describe_db_subnet_groups: (
526
+ ?db_subnet_group_name: ::String,
527
+ ?filters: Array[
528
+ {
529
+ name: ::String,
530
+ values: Array[::String]
531
+ },
532
+ ],
533
+ ?max_records: ::Integer,
534
+ ?marker: ::String
535
+ ) -> _DescribeDBSubnetGroupsResponseSuccess
536
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDBSubnetGroupsResponseSuccess
537
+
538
+ interface _DescribeEngineDefaultClusterParametersResponseSuccess
539
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEngineDefaultClusterParametersResult]
540
+ def engine_defaults: () -> Types::EngineDefaults
541
+ end
542
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#describe_engine_default_cluster_parameters-instance_method
543
+ def describe_engine_default_cluster_parameters: (
544
+ db_parameter_group_family: ::String,
545
+ ?filters: Array[
546
+ {
547
+ name: ::String,
548
+ values: Array[::String]
549
+ },
550
+ ],
551
+ ?max_records: ::Integer,
552
+ ?marker: ::String
553
+ ) -> _DescribeEngineDefaultClusterParametersResponseSuccess
554
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEngineDefaultClusterParametersResponseSuccess
555
+
556
+ interface _DescribeEventCategoriesResponseSuccess
557
+ include ::Seahorse::Client::_ResponseSuccess[Types::EventCategoriesMessage]
558
+ def event_categories_map_list: () -> ::Array[Types::EventCategoriesMap]
559
+ end
560
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#describe_event_categories-instance_method
561
+ def describe_event_categories: (
562
+ ?source_type: ::String,
563
+ ?filters: Array[
564
+ {
565
+ name: ::String,
566
+ values: Array[::String]
567
+ },
568
+ ]
569
+ ) -> _DescribeEventCategoriesResponseSuccess
570
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEventCategoriesResponseSuccess
571
+
572
+ interface _DescribeEventSubscriptionsResponseSuccess
573
+ include ::Seahorse::Client::_ResponseSuccess[Types::EventSubscriptionsMessage]
574
+ def marker: () -> ::String
575
+ def event_subscriptions_list: () -> ::Array[Types::EventSubscription]
576
+ end
577
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#describe_event_subscriptions-instance_method
578
+ def describe_event_subscriptions: (
579
+ ?subscription_name: ::String,
580
+ ?filters: Array[
581
+ {
582
+ name: ::String,
583
+ values: Array[::String]
584
+ },
585
+ ],
586
+ ?max_records: ::Integer,
587
+ ?marker: ::String
588
+ ) -> _DescribeEventSubscriptionsResponseSuccess
589
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEventSubscriptionsResponseSuccess
590
+
591
+ interface _DescribeEventsResponseSuccess
592
+ include ::Seahorse::Client::_ResponseSuccess[Types::EventsMessage]
593
+ def marker: () -> ::String
594
+ def events: () -> ::Array[Types::Event]
595
+ end
596
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#describe_events-instance_method
597
+ def describe_events: (
598
+ ?source_identifier: ::String,
599
+ ?source_type: ("db-instance" | "db-parameter-group" | "db-security-group" | "db-snapshot" | "db-cluster" | "db-cluster-snapshot"),
600
+ ?start_time: ::Time,
601
+ ?end_time: ::Time,
602
+ ?duration: ::Integer,
603
+ ?event_categories: Array[::String],
604
+ ?filters: Array[
605
+ {
606
+ name: ::String,
607
+ values: Array[::String]
608
+ },
609
+ ],
610
+ ?max_records: ::Integer,
611
+ ?marker: ::String
612
+ ) -> _DescribeEventsResponseSuccess
613
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEventsResponseSuccess
614
+
615
+ interface _DescribeGlobalClustersResponseSuccess
616
+ include ::Seahorse::Client::_ResponseSuccess[Types::GlobalClustersMessage]
617
+ def marker: () -> ::String
618
+ def global_clusters: () -> ::Array[Types::GlobalCluster]
619
+ end
620
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#describe_global_clusters-instance_method
621
+ def describe_global_clusters: (
622
+ ?global_cluster_identifier: ::String,
623
+ ?filters: Array[
624
+ {
625
+ name: ::String,
626
+ values: Array[::String]
627
+ },
628
+ ],
629
+ ?max_records: ::Integer,
630
+ ?marker: ::String
631
+ ) -> _DescribeGlobalClustersResponseSuccess
632
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeGlobalClustersResponseSuccess
633
+
634
+ interface _DescribeOrderableDBInstanceOptionsResponseSuccess
635
+ include ::Seahorse::Client::_ResponseSuccess[Types::OrderableDBInstanceOptionsMessage]
636
+ def orderable_db_instance_options: () -> ::Array[Types::OrderableDBInstanceOption]
637
+ def marker: () -> ::String
638
+ end
639
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#describe_orderable_db_instance_options-instance_method
640
+ def describe_orderable_db_instance_options: (
641
+ engine: ::String,
642
+ ?engine_version: ::String,
643
+ ?db_instance_class: ::String,
644
+ ?license_model: ::String,
645
+ ?vpc: bool,
646
+ ?filters: Array[
647
+ {
648
+ name: ::String,
649
+ values: Array[::String]
650
+ },
651
+ ],
652
+ ?max_records: ::Integer,
653
+ ?marker: ::String
654
+ ) -> _DescribeOrderableDBInstanceOptionsResponseSuccess
655
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeOrderableDBInstanceOptionsResponseSuccess
656
+
657
+ interface _DescribePendingMaintenanceActionsResponseSuccess
658
+ include ::Seahorse::Client::_ResponseSuccess[Types::PendingMaintenanceActionsMessage]
659
+ def pending_maintenance_actions: () -> ::Array[Types::ResourcePendingMaintenanceActions]
660
+ def marker: () -> ::String
661
+ end
662
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#describe_pending_maintenance_actions-instance_method
663
+ def describe_pending_maintenance_actions: (
664
+ ?resource_identifier: ::String,
665
+ ?filters: Array[
666
+ {
667
+ name: ::String,
668
+ values: Array[::String]
669
+ },
670
+ ],
671
+ ?marker: ::String,
672
+ ?max_records: ::Integer
673
+ ) -> _DescribePendingMaintenanceActionsResponseSuccess
674
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribePendingMaintenanceActionsResponseSuccess
675
+
676
+ interface _FailoverDBClusterResponseSuccess
677
+ include ::Seahorse::Client::_ResponseSuccess[Types::FailoverDBClusterResult]
678
+ def db_cluster: () -> Types::DBCluster
679
+ end
680
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#failover_db_cluster-instance_method
681
+ def failover_db_cluster: (
682
+ ?db_cluster_identifier: ::String,
683
+ ?target_db_instance_identifier: ::String
684
+ ) -> _FailoverDBClusterResponseSuccess
685
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _FailoverDBClusterResponseSuccess
686
+
687
+ interface _ListTagsForResourceResponseSuccess
688
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagListMessage]
689
+ def tag_list: () -> ::Array[Types::Tag]
690
+ end
691
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#list_tags_for_resource-instance_method
692
+ def list_tags_for_resource: (
693
+ resource_name: ::String,
694
+ ?filters: Array[
695
+ {
696
+ name: ::String,
697
+ values: Array[::String]
698
+ },
699
+ ]
700
+ ) -> _ListTagsForResourceResponseSuccess
701
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
702
+
703
+ interface _ModifyDBClusterResponseSuccess
704
+ include ::Seahorse::Client::_ResponseSuccess[Types::ModifyDBClusterResult]
705
+ def db_cluster: () -> Types::DBCluster
706
+ end
707
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#modify_db_cluster-instance_method
708
+ def modify_db_cluster: (
709
+ db_cluster_identifier: ::String,
710
+ ?new_db_cluster_identifier: ::String,
711
+ ?apply_immediately: bool,
712
+ ?backup_retention_period: ::Integer,
713
+ ?db_cluster_parameter_group_name: ::String,
714
+ ?vpc_security_group_ids: Array[::String],
715
+ ?port: ::Integer,
716
+ ?master_user_password: ::String,
717
+ ?preferred_backup_window: ::String,
718
+ ?preferred_maintenance_window: ::String,
719
+ ?cloudwatch_logs_export_configuration: {
720
+ enable_log_types: Array[::String]?,
721
+ disable_log_types: Array[::String]?
722
+ },
723
+ ?engine_version: ::String,
724
+ ?allow_major_version_upgrade: bool,
725
+ ?deletion_protection: bool,
726
+ ?storage_type: ::String
727
+ ) -> _ModifyDBClusterResponseSuccess
728
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyDBClusterResponseSuccess
729
+
730
+ interface _ModifyDBClusterParameterGroupResponseSuccess
731
+ include ::Seahorse::Client::_ResponseSuccess[Types::DBClusterParameterGroupNameMessage]
732
+ def db_cluster_parameter_group_name: () -> ::String
733
+ end
734
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#modify_db_cluster_parameter_group-instance_method
735
+ def modify_db_cluster_parameter_group: (
736
+ db_cluster_parameter_group_name: ::String,
737
+ parameters: Array[
738
+ {
739
+ parameter_name: ::String?,
740
+ parameter_value: ::String?,
741
+ description: ::String?,
742
+ source: ::String?,
743
+ apply_type: ::String?,
744
+ data_type: ::String?,
745
+ allowed_values: ::String?,
746
+ is_modifiable: bool?,
747
+ minimum_engine_version: ::String?,
748
+ apply_method: ("immediate" | "pending-reboot")?
749
+ },
750
+ ]
751
+ ) -> _ModifyDBClusterParameterGroupResponseSuccess
752
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyDBClusterParameterGroupResponseSuccess
753
+
754
+ interface _ModifyDBClusterSnapshotAttributeResponseSuccess
755
+ include ::Seahorse::Client::_ResponseSuccess[Types::ModifyDBClusterSnapshotAttributeResult]
756
+ def db_cluster_snapshot_attributes_result: () -> Types::DBClusterSnapshotAttributesResult
757
+ end
758
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#modify_db_cluster_snapshot_attribute-instance_method
759
+ def modify_db_cluster_snapshot_attribute: (
760
+ db_cluster_snapshot_identifier: ::String,
761
+ attribute_name: ::String,
762
+ ?values_to_add: Array[::String],
763
+ ?values_to_remove: Array[::String]
764
+ ) -> _ModifyDBClusterSnapshotAttributeResponseSuccess
765
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyDBClusterSnapshotAttributeResponseSuccess
766
+
767
+ interface _ModifyDBInstanceResponseSuccess
768
+ include ::Seahorse::Client::_ResponseSuccess[Types::ModifyDBInstanceResult]
769
+ def db_instance: () -> Types::DBInstance
770
+ end
771
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#modify_db_instance-instance_method
772
+ def modify_db_instance: (
773
+ db_instance_identifier: ::String,
774
+ ?db_instance_class: ::String,
775
+ ?apply_immediately: bool,
776
+ ?preferred_maintenance_window: ::String,
777
+ ?auto_minor_version_upgrade: bool,
778
+ ?new_db_instance_identifier: ::String,
779
+ ?ca_certificate_identifier: ::String,
780
+ ?copy_tags_to_snapshot: bool,
781
+ ?promotion_tier: ::Integer,
782
+ ?enable_performance_insights: bool,
783
+ ?performance_insights_kms_key_id: ::String,
784
+ ?certificate_rotation_restart: bool
785
+ ) -> _ModifyDBInstanceResponseSuccess
786
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyDBInstanceResponseSuccess
787
+
788
+ interface _ModifyDBSubnetGroupResponseSuccess
789
+ include ::Seahorse::Client::_ResponseSuccess[Types::ModifyDBSubnetGroupResult]
790
+ def db_subnet_group: () -> Types::DBSubnetGroup
791
+ end
792
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#modify_db_subnet_group-instance_method
793
+ def modify_db_subnet_group: (
794
+ db_subnet_group_name: ::String,
795
+ ?db_subnet_group_description: ::String,
796
+ subnet_ids: Array[::String]
797
+ ) -> _ModifyDBSubnetGroupResponseSuccess
798
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyDBSubnetGroupResponseSuccess
799
+
800
+ interface _ModifyEventSubscriptionResponseSuccess
801
+ include ::Seahorse::Client::_ResponseSuccess[Types::ModifyEventSubscriptionResult]
802
+ def event_subscription: () -> Types::EventSubscription
803
+ end
804
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#modify_event_subscription-instance_method
805
+ def modify_event_subscription: (
806
+ subscription_name: ::String,
807
+ ?sns_topic_arn: ::String,
808
+ ?source_type: ::String,
809
+ ?event_categories: Array[::String],
810
+ ?enabled: bool
811
+ ) -> _ModifyEventSubscriptionResponseSuccess
812
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyEventSubscriptionResponseSuccess
813
+
814
+ interface _ModifyGlobalClusterResponseSuccess
815
+ include ::Seahorse::Client::_ResponseSuccess[Types::ModifyGlobalClusterResult]
816
+ def global_cluster: () -> Types::GlobalCluster
817
+ end
818
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#modify_global_cluster-instance_method
819
+ def modify_global_cluster: (
820
+ global_cluster_identifier: ::String,
821
+ ?new_global_cluster_identifier: ::String,
822
+ ?deletion_protection: bool
823
+ ) -> _ModifyGlobalClusterResponseSuccess
824
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyGlobalClusterResponseSuccess
825
+
826
+ interface _RebootDBInstanceResponseSuccess
827
+ include ::Seahorse::Client::_ResponseSuccess[Types::RebootDBInstanceResult]
828
+ def db_instance: () -> Types::DBInstance
829
+ end
830
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#reboot_db_instance-instance_method
831
+ def reboot_db_instance: (
832
+ db_instance_identifier: ::String,
833
+ ?force_failover: bool
834
+ ) -> _RebootDBInstanceResponseSuccess
835
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RebootDBInstanceResponseSuccess
836
+
837
+ interface _RemoveFromGlobalClusterResponseSuccess
838
+ include ::Seahorse::Client::_ResponseSuccess[Types::RemoveFromGlobalClusterResult]
839
+ def global_cluster: () -> Types::GlobalCluster
840
+ end
841
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#remove_from_global_cluster-instance_method
842
+ def remove_from_global_cluster: (
843
+ global_cluster_identifier: ::String,
844
+ db_cluster_identifier: ::String
845
+ ) -> _RemoveFromGlobalClusterResponseSuccess
846
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RemoveFromGlobalClusterResponseSuccess
847
+
848
+ interface _RemoveSourceIdentifierFromSubscriptionResponseSuccess
849
+ include ::Seahorse::Client::_ResponseSuccess[Types::RemoveSourceIdentifierFromSubscriptionResult]
850
+ def event_subscription: () -> Types::EventSubscription
851
+ end
852
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#remove_source_identifier_from_subscription-instance_method
853
+ def remove_source_identifier_from_subscription: (
854
+ subscription_name: ::String,
855
+ source_identifier: ::String
856
+ ) -> _RemoveSourceIdentifierFromSubscriptionResponseSuccess
857
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RemoveSourceIdentifierFromSubscriptionResponseSuccess
858
+
859
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#remove_tags_from_resource-instance_method
860
+ def remove_tags_from_resource: (
861
+ resource_name: ::String,
862
+ tag_keys: Array[::String]
863
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
864
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
865
+
866
+ interface _ResetDBClusterParameterGroupResponseSuccess
867
+ include ::Seahorse::Client::_ResponseSuccess[Types::DBClusterParameterGroupNameMessage]
868
+ def db_cluster_parameter_group_name: () -> ::String
869
+ end
870
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#reset_db_cluster_parameter_group-instance_method
871
+ def reset_db_cluster_parameter_group: (
872
+ db_cluster_parameter_group_name: ::String,
873
+ ?reset_all_parameters: bool,
874
+ ?parameters: Array[
875
+ {
876
+ parameter_name: ::String?,
877
+ parameter_value: ::String?,
878
+ description: ::String?,
879
+ source: ::String?,
880
+ apply_type: ::String?,
881
+ data_type: ::String?,
882
+ allowed_values: ::String?,
883
+ is_modifiable: bool?,
884
+ minimum_engine_version: ::String?,
885
+ apply_method: ("immediate" | "pending-reboot")?
886
+ },
887
+ ]
888
+ ) -> _ResetDBClusterParameterGroupResponseSuccess
889
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ResetDBClusterParameterGroupResponseSuccess
890
+
891
+ interface _RestoreDBClusterFromSnapshotResponseSuccess
892
+ include ::Seahorse::Client::_ResponseSuccess[Types::RestoreDBClusterFromSnapshotResult]
893
+ def db_cluster: () -> Types::DBCluster
894
+ end
895
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#restore_db_cluster_from_snapshot-instance_method
896
+ def restore_db_cluster_from_snapshot: (
897
+ ?availability_zones: Array[::String],
898
+ db_cluster_identifier: ::String,
899
+ snapshot_identifier: ::String,
900
+ engine: ::String,
901
+ ?engine_version: ::String,
902
+ ?port: ::Integer,
903
+ ?db_subnet_group_name: ::String,
904
+ ?vpc_security_group_ids: Array[::String],
905
+ ?tags: Array[
906
+ {
907
+ key: ::String?,
908
+ value: ::String?
909
+ },
910
+ ],
911
+ ?kms_key_id: ::String,
912
+ ?enable_cloudwatch_logs_exports: Array[::String],
913
+ ?deletion_protection: bool,
914
+ ?db_cluster_parameter_group_name: ::String,
915
+ ?storage_type: ::String
916
+ ) -> _RestoreDBClusterFromSnapshotResponseSuccess
917
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreDBClusterFromSnapshotResponseSuccess
918
+
919
+ interface _RestoreDBClusterToPointInTimeResponseSuccess
920
+ include ::Seahorse::Client::_ResponseSuccess[Types::RestoreDBClusterToPointInTimeResult]
921
+ def db_cluster: () -> Types::DBCluster
922
+ end
923
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#restore_db_cluster_to_point_in_time-instance_method
924
+ def restore_db_cluster_to_point_in_time: (
925
+ db_cluster_identifier: ::String,
926
+ ?restore_type: ::String,
927
+ source_db_cluster_identifier: ::String,
928
+ ?restore_to_time: ::Time,
929
+ ?use_latest_restorable_time: bool,
930
+ ?port: ::Integer,
931
+ ?db_subnet_group_name: ::String,
932
+ ?vpc_security_group_ids: Array[::String],
933
+ ?tags: Array[
934
+ {
935
+ key: ::String?,
936
+ value: ::String?
937
+ },
938
+ ],
939
+ ?kms_key_id: ::String,
940
+ ?enable_cloudwatch_logs_exports: Array[::String],
941
+ ?deletion_protection: bool,
942
+ ?storage_type: ::String
943
+ ) -> _RestoreDBClusterToPointInTimeResponseSuccess
944
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreDBClusterToPointInTimeResponseSuccess
945
+
946
+ interface _StartDBClusterResponseSuccess
947
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartDBClusterResult]
948
+ def db_cluster: () -> Types::DBCluster
949
+ end
950
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#start_db_cluster-instance_method
951
+ def start_db_cluster: (
952
+ db_cluster_identifier: ::String
953
+ ) -> _StartDBClusterResponseSuccess
954
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartDBClusterResponseSuccess
955
+
956
+ interface _StopDBClusterResponseSuccess
957
+ include ::Seahorse::Client::_ResponseSuccess[Types::StopDBClusterResult]
958
+ def db_cluster: () -> Types::DBCluster
959
+ end
960
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#stop_db_cluster-instance_method
961
+ def stop_db_cluster: (
962
+ db_cluster_identifier: ::String
963
+ ) -> _StopDBClusterResponseSuccess
964
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopDBClusterResponseSuccess
965
+
966
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DocDB/Client.html#wait_until-instance_method
967
+ def wait_until: (:db_instance_available waiter_name,
968
+ ?db_instance_identifier: ::String,
969
+ ?filters: Array[
970
+ {
971
+ name: ::String,
972
+ values: Array[::String]
973
+ },
974
+ ],
975
+ ?max_records: ::Integer,
976
+ ?marker: ::String
977
+ ) -> Client::_DescribeDBInstancesResponseSuccess
978
+ | (:db_instance_available waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeDBInstancesResponseSuccess
979
+ | (:db_instance_deleted waiter_name,
980
+ ?db_instance_identifier: ::String,
981
+ ?filters: Array[
982
+ {
983
+ name: ::String,
984
+ values: Array[::String]
985
+ },
986
+ ],
987
+ ?max_records: ::Integer,
988
+ ?marker: ::String
989
+ ) -> Client::_DescribeDBInstancesResponseSuccess
990
+ | (:db_instance_deleted waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeDBInstancesResponseSuccess
991
+ end
992
+ end
993
+ end
994
+