aws-sdk-backup 1.64.0 → 1.65.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,1525 @@
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 Backup
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/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 _CancelLegalHoldResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::CancelLegalHoldOutput]
77
+ end
78
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#cancel_legal_hold-instance_method
79
+ def cancel_legal_hold: (
80
+ legal_hold_id: ::String,
81
+ cancel_description: ::String,
82
+ ?retain_record_in_days: ::Integer
83
+ ) -> _CancelLegalHoldResponseSuccess
84
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelLegalHoldResponseSuccess
85
+
86
+ interface _CreateBackupPlanResponseSuccess
87
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateBackupPlanOutput]
88
+ def backup_plan_id: () -> ::String
89
+ def backup_plan_arn: () -> ::String
90
+ def creation_date: () -> ::Time
91
+ def version_id: () -> ::String
92
+ def advanced_backup_settings: () -> ::Array[Types::AdvancedBackupSetting]
93
+ end
94
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#create_backup_plan-instance_method
95
+ def create_backup_plan: (
96
+ backup_plan: {
97
+ backup_plan_name: ::String,
98
+ rules: Array[
99
+ {
100
+ rule_name: ::String,
101
+ target_backup_vault_name: ::String,
102
+ schedule_expression: ::String?,
103
+ start_window_minutes: ::Integer?,
104
+ completion_window_minutes: ::Integer?,
105
+ lifecycle: {
106
+ move_to_cold_storage_after_days: ::Integer?,
107
+ delete_after_days: ::Integer?,
108
+ opt_in_to_archive_for_supported_resources: bool?
109
+ }?,
110
+ recovery_point_tags: Hash[::String, ::String]?,
111
+ copy_actions: Array[
112
+ {
113
+ lifecycle: {
114
+ move_to_cold_storage_after_days: ::Integer?,
115
+ delete_after_days: ::Integer?,
116
+ opt_in_to_archive_for_supported_resources: bool?
117
+ }?,
118
+ destination_backup_vault_arn: ::String
119
+ },
120
+ ]?,
121
+ enable_continuous_backup: bool?,
122
+ schedule_expression_timezone: ::String?
123
+ },
124
+ ],
125
+ advanced_backup_settings: Array[
126
+ {
127
+ resource_type: ::String?,
128
+ backup_options: Hash[::String, ::String]?
129
+ },
130
+ ]?
131
+ },
132
+ ?backup_plan_tags: Hash[::String, ::String],
133
+ ?creator_request_id: ::String
134
+ ) -> _CreateBackupPlanResponseSuccess
135
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBackupPlanResponseSuccess
136
+
137
+ interface _CreateBackupSelectionResponseSuccess
138
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateBackupSelectionOutput]
139
+ def selection_id: () -> ::String
140
+ def backup_plan_id: () -> ::String
141
+ def creation_date: () -> ::Time
142
+ end
143
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#create_backup_selection-instance_method
144
+ def create_backup_selection: (
145
+ backup_plan_id: ::String,
146
+ backup_selection: {
147
+ selection_name: ::String,
148
+ iam_role_arn: ::String,
149
+ resources: Array[::String]?,
150
+ list_of_tags: Array[
151
+ {
152
+ condition_type: ("STRINGEQUALS"),
153
+ condition_key: ::String,
154
+ condition_value: ::String
155
+ },
156
+ ]?,
157
+ not_resources: Array[::String]?,
158
+ conditions: {
159
+ string_equals: Array[
160
+ {
161
+ condition_key: ::String?,
162
+ condition_value: ::String?
163
+ },
164
+ ]?,
165
+ string_not_equals: Array[
166
+ {
167
+ condition_key: ::String?,
168
+ condition_value: ::String?
169
+ },
170
+ ]?,
171
+ string_like: Array[
172
+ {
173
+ condition_key: ::String?,
174
+ condition_value: ::String?
175
+ },
176
+ ]?,
177
+ string_not_like: Array[
178
+ {
179
+ condition_key: ::String?,
180
+ condition_value: ::String?
181
+ },
182
+ ]?
183
+ }?
184
+ },
185
+ ?creator_request_id: ::String
186
+ ) -> _CreateBackupSelectionResponseSuccess
187
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBackupSelectionResponseSuccess
188
+
189
+ interface _CreateBackupVaultResponseSuccess
190
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateBackupVaultOutput]
191
+ def backup_vault_name: () -> ::String
192
+ def backup_vault_arn: () -> ::String
193
+ def creation_date: () -> ::Time
194
+ end
195
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#create_backup_vault-instance_method
196
+ def create_backup_vault: (
197
+ backup_vault_name: ::String,
198
+ ?backup_vault_tags: Hash[::String, ::String],
199
+ ?encryption_key_arn: ::String,
200
+ ?creator_request_id: ::String
201
+ ) -> _CreateBackupVaultResponseSuccess
202
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBackupVaultResponseSuccess
203
+
204
+ interface _CreateFrameworkResponseSuccess
205
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateFrameworkOutput]
206
+ def framework_name: () -> ::String
207
+ def framework_arn: () -> ::String
208
+ end
209
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#create_framework-instance_method
210
+ def create_framework: (
211
+ framework_name: ::String,
212
+ ?framework_description: ::String,
213
+ framework_controls: Array[
214
+ {
215
+ control_name: ::String,
216
+ control_input_parameters: Array[
217
+ {
218
+ parameter_name: ::String?,
219
+ parameter_value: ::String?
220
+ },
221
+ ]?,
222
+ control_scope: {
223
+ compliance_resource_ids: Array[::String]?,
224
+ compliance_resource_types: Array[::String]?,
225
+ tags: Hash[::String, ::String]?
226
+ }?
227
+ },
228
+ ],
229
+ ?idempotency_token: ::String,
230
+ ?framework_tags: Hash[::String, ::String]
231
+ ) -> _CreateFrameworkResponseSuccess
232
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateFrameworkResponseSuccess
233
+
234
+ interface _CreateLegalHoldResponseSuccess
235
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateLegalHoldOutput]
236
+ def title: () -> ::String
237
+ def status: () -> ("CREATING" | "ACTIVE" | "CANCELING" | "CANCELED")
238
+ def description: () -> ::String
239
+ def legal_hold_id: () -> ::String
240
+ def legal_hold_arn: () -> ::String
241
+ def creation_date: () -> ::Time
242
+ def recovery_point_selection: () -> Types::RecoveryPointSelection
243
+ end
244
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#create_legal_hold-instance_method
245
+ def create_legal_hold: (
246
+ title: ::String,
247
+ description: ::String,
248
+ ?idempotency_token: ::String,
249
+ ?recovery_point_selection: {
250
+ vault_names: Array[::String]?,
251
+ resource_identifiers: Array[::String]?,
252
+ date_range: {
253
+ from_date: ::Time,
254
+ to_date: ::Time
255
+ }?
256
+ },
257
+ ?tags: Hash[::String, ::String]
258
+ ) -> _CreateLegalHoldResponseSuccess
259
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLegalHoldResponseSuccess
260
+
261
+ interface _CreateLogicallyAirGappedBackupVaultResponseSuccess
262
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateLogicallyAirGappedBackupVaultOutput]
263
+ def backup_vault_name: () -> ::String
264
+ def backup_vault_arn: () -> ::String
265
+ def creation_date: () -> ::Time
266
+ def vault_state: () -> ("CREATING" | "AVAILABLE" | "FAILED")
267
+ end
268
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#create_logically_air_gapped_backup_vault-instance_method
269
+ def create_logically_air_gapped_backup_vault: (
270
+ backup_vault_name: ::String,
271
+ ?backup_vault_tags: Hash[::String, ::String],
272
+ ?creator_request_id: ::String,
273
+ min_retention_days: ::Integer,
274
+ max_retention_days: ::Integer
275
+ ) -> _CreateLogicallyAirGappedBackupVaultResponseSuccess
276
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLogicallyAirGappedBackupVaultResponseSuccess
277
+
278
+ interface _CreateReportPlanResponseSuccess
279
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateReportPlanOutput]
280
+ def report_plan_name: () -> ::String
281
+ def report_plan_arn: () -> ::String
282
+ def creation_time: () -> ::Time
283
+ end
284
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#create_report_plan-instance_method
285
+ def create_report_plan: (
286
+ report_plan_name: ::String,
287
+ ?report_plan_description: ::String,
288
+ report_delivery_channel: {
289
+ s3_bucket_name: ::String,
290
+ s3_key_prefix: ::String?,
291
+ formats: Array[::String]?
292
+ },
293
+ report_setting: {
294
+ report_template: ::String,
295
+ framework_arns: Array[::String]?,
296
+ number_of_frameworks: ::Integer?,
297
+ accounts: Array[::String]?,
298
+ organization_units: Array[::String]?,
299
+ regions: Array[::String]?
300
+ },
301
+ ?report_plan_tags: Hash[::String, ::String],
302
+ ?idempotency_token: ::String
303
+ ) -> _CreateReportPlanResponseSuccess
304
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateReportPlanResponseSuccess
305
+
306
+ interface _CreateRestoreTestingPlanResponseSuccess
307
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateRestoreTestingPlanOutput]
308
+ def creation_time: () -> ::Time
309
+ def restore_testing_plan_arn: () -> ::String
310
+ def restore_testing_plan_name: () -> ::String
311
+ end
312
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#create_restore_testing_plan-instance_method
313
+ def create_restore_testing_plan: (
314
+ ?creator_request_id: ::String,
315
+ restore_testing_plan: {
316
+ recovery_point_selection: {
317
+ algorithm: ("LATEST_WITHIN_WINDOW" | "RANDOM_WITHIN_WINDOW")?,
318
+ exclude_vaults: Array[::String]?,
319
+ include_vaults: Array[::String]?,
320
+ recovery_point_types: Array[("CONTINUOUS" | "SNAPSHOT")]?,
321
+ selection_window_days: ::Integer?
322
+ },
323
+ restore_testing_plan_name: ::String,
324
+ schedule_expression: ::String,
325
+ schedule_expression_timezone: ::String?,
326
+ start_window_hours: ::Integer?
327
+ },
328
+ ?tags: Hash[::String, ::String]
329
+ ) -> _CreateRestoreTestingPlanResponseSuccess
330
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRestoreTestingPlanResponseSuccess
331
+
332
+ interface _CreateRestoreTestingSelectionResponseSuccess
333
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateRestoreTestingSelectionOutput]
334
+ def creation_time: () -> ::Time
335
+ def restore_testing_plan_arn: () -> ::String
336
+ def restore_testing_plan_name: () -> ::String
337
+ def restore_testing_selection_name: () -> ::String
338
+ end
339
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#create_restore_testing_selection-instance_method
340
+ def create_restore_testing_selection: (
341
+ ?creator_request_id: ::String,
342
+ restore_testing_plan_name: ::String,
343
+ restore_testing_selection: {
344
+ iam_role_arn: ::String,
345
+ protected_resource_arns: Array[::String]?,
346
+ protected_resource_conditions: {
347
+ string_equals: Array[
348
+ {
349
+ key: ::String,
350
+ value: ::String
351
+ },
352
+ ]?,
353
+ string_not_equals: Array[
354
+ {
355
+ key: ::String,
356
+ value: ::String
357
+ },
358
+ ]?
359
+ }?,
360
+ protected_resource_type: ::String,
361
+ restore_metadata_overrides: Hash[::String, ::String]?,
362
+ restore_testing_selection_name: ::String,
363
+ validation_window_hours: ::Integer?
364
+ }
365
+ ) -> _CreateRestoreTestingSelectionResponseSuccess
366
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRestoreTestingSelectionResponseSuccess
367
+
368
+ interface _DeleteBackupPlanResponseSuccess
369
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteBackupPlanOutput]
370
+ def backup_plan_id: () -> ::String
371
+ def backup_plan_arn: () -> ::String
372
+ def deletion_date: () -> ::Time
373
+ def version_id: () -> ::String
374
+ end
375
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#delete_backup_plan-instance_method
376
+ def delete_backup_plan: (
377
+ backup_plan_id: ::String
378
+ ) -> _DeleteBackupPlanResponseSuccess
379
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteBackupPlanResponseSuccess
380
+
381
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#delete_backup_selection-instance_method
382
+ def delete_backup_selection: (
383
+ backup_plan_id: ::String,
384
+ selection_id: ::String
385
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
386
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
387
+
388
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#delete_backup_vault-instance_method
389
+ def delete_backup_vault: (
390
+ backup_vault_name: ::String
391
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
392
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
393
+
394
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#delete_backup_vault_access_policy-instance_method
395
+ def delete_backup_vault_access_policy: (
396
+ backup_vault_name: ::String
397
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
398
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
399
+
400
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#delete_backup_vault_lock_configuration-instance_method
401
+ def delete_backup_vault_lock_configuration: (
402
+ backup_vault_name: ::String
403
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
404
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
405
+
406
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#delete_backup_vault_notifications-instance_method
407
+ def delete_backup_vault_notifications: (
408
+ backup_vault_name: ::String
409
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
410
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
411
+
412
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#delete_framework-instance_method
413
+ def delete_framework: (
414
+ framework_name: ::String
415
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
416
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
417
+
418
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#delete_recovery_point-instance_method
419
+ def delete_recovery_point: (
420
+ backup_vault_name: ::String,
421
+ recovery_point_arn: ::String
422
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
423
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
424
+
425
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#delete_report_plan-instance_method
426
+ def delete_report_plan: (
427
+ report_plan_name: ::String
428
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
429
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
430
+
431
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#delete_restore_testing_plan-instance_method
432
+ def delete_restore_testing_plan: (
433
+ restore_testing_plan_name: ::String
434
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
435
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
436
+
437
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#delete_restore_testing_selection-instance_method
438
+ def delete_restore_testing_selection: (
439
+ restore_testing_plan_name: ::String,
440
+ restore_testing_selection_name: ::String
441
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
442
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
443
+
444
+ interface _DescribeBackupJobResponseSuccess
445
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeBackupJobOutput]
446
+ def account_id: () -> ::String
447
+ def backup_job_id: () -> ::String
448
+ def backup_vault_name: () -> ::String
449
+ def backup_vault_arn: () -> ::String
450
+ def recovery_point_arn: () -> ::String
451
+ def resource_arn: () -> ::String
452
+ def creation_date: () -> ::Time
453
+ def completion_date: () -> ::Time
454
+ def state: () -> ("CREATED" | "PENDING" | "RUNNING" | "ABORTING" | "ABORTED" | "COMPLETED" | "FAILED" | "EXPIRED" | "PARTIAL")
455
+ def status_message: () -> ::String
456
+ def percent_done: () -> ::String
457
+ def backup_size_in_bytes: () -> ::Integer
458
+ def iam_role_arn: () -> ::String
459
+ def created_by: () -> Types::RecoveryPointCreator
460
+ def resource_type: () -> ::String
461
+ def bytes_transferred: () -> ::Integer
462
+ def expected_completion_date: () -> ::Time
463
+ def start_by: () -> ::Time
464
+ def backup_options: () -> ::Hash[::String, ::String]
465
+ def backup_type: () -> ::String
466
+ def parent_job_id: () -> ::String
467
+ def is_parent: () -> bool
468
+ def number_of_child_jobs: () -> ::Integer
469
+ def child_jobs_in_state: () -> ::Hash[("CREATED" | "PENDING" | "RUNNING" | "ABORTING" | "ABORTED" | "COMPLETED" | "FAILED" | "EXPIRED" | "PARTIAL"), ::Integer]
470
+ def resource_name: () -> ::String
471
+ def initiation_date: () -> ::Time
472
+ def message_category: () -> ::String
473
+ end
474
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#describe_backup_job-instance_method
475
+ def describe_backup_job: (
476
+ backup_job_id: ::String
477
+ ) -> _DescribeBackupJobResponseSuccess
478
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeBackupJobResponseSuccess
479
+
480
+ interface _DescribeBackupVaultResponseSuccess
481
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeBackupVaultOutput]
482
+ def backup_vault_name: () -> ::String
483
+ def backup_vault_arn: () -> ::String
484
+ def vault_type: () -> ("BACKUP_VAULT" | "LOGICALLY_AIR_GAPPED_BACKUP_VAULT")
485
+ def encryption_key_arn: () -> ::String
486
+ def creation_date: () -> ::Time
487
+ def creator_request_id: () -> ::String
488
+ def number_of_recovery_points: () -> ::Integer
489
+ def locked: () -> bool
490
+ def min_retention_days: () -> ::Integer
491
+ def max_retention_days: () -> ::Integer
492
+ def lock_date: () -> ::Time
493
+ end
494
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#describe_backup_vault-instance_method
495
+ def describe_backup_vault: (
496
+ backup_vault_name: ::String,
497
+ ?backup_vault_account_id: ::String
498
+ ) -> _DescribeBackupVaultResponseSuccess
499
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeBackupVaultResponseSuccess
500
+
501
+ interface _DescribeCopyJobResponseSuccess
502
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeCopyJobOutput]
503
+ def copy_job: () -> Types::CopyJob
504
+ end
505
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#describe_copy_job-instance_method
506
+ def describe_copy_job: (
507
+ copy_job_id: ::String
508
+ ) -> _DescribeCopyJobResponseSuccess
509
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeCopyJobResponseSuccess
510
+
511
+ interface _DescribeFrameworkResponseSuccess
512
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeFrameworkOutput]
513
+ def framework_name: () -> ::String
514
+ def framework_arn: () -> ::String
515
+ def framework_description: () -> ::String
516
+ def framework_controls: () -> ::Array[Types::FrameworkControl]
517
+ def creation_time: () -> ::Time
518
+ def deployment_status: () -> ::String
519
+ def framework_status: () -> ::String
520
+ def idempotency_token: () -> ::String
521
+ end
522
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#describe_framework-instance_method
523
+ def describe_framework: (
524
+ framework_name: ::String
525
+ ) -> _DescribeFrameworkResponseSuccess
526
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeFrameworkResponseSuccess
527
+
528
+ interface _DescribeGlobalSettingsResponseSuccess
529
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeGlobalSettingsOutput]
530
+ def global_settings: () -> ::Hash[::String, ::String]
531
+ def last_update_time: () -> ::Time
532
+ end
533
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#describe_global_settings-instance_method
534
+ def describe_global_settings: (
535
+ ) -> _DescribeGlobalSettingsResponseSuccess
536
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeGlobalSettingsResponseSuccess
537
+
538
+ interface _DescribeProtectedResourceResponseSuccess
539
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeProtectedResourceOutput]
540
+ def resource_arn: () -> ::String
541
+ def resource_type: () -> ::String
542
+ def last_backup_time: () -> ::Time
543
+ def resource_name: () -> ::String
544
+ def last_backup_vault_arn: () -> ::String
545
+ def last_recovery_point_arn: () -> ::String
546
+ def latest_restore_execution_time_minutes: () -> ::Integer
547
+ def latest_restore_job_creation_date: () -> ::Time
548
+ def latest_restore_recovery_point_creation_date: () -> ::Time
549
+ end
550
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#describe_protected_resource-instance_method
551
+ def describe_protected_resource: (
552
+ resource_arn: ::String
553
+ ) -> _DescribeProtectedResourceResponseSuccess
554
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeProtectedResourceResponseSuccess
555
+
556
+ interface _DescribeRecoveryPointResponseSuccess
557
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeRecoveryPointOutput]
558
+ def recovery_point_arn: () -> ::String
559
+ def backup_vault_name: () -> ::String
560
+ def backup_vault_arn: () -> ::String
561
+ def source_backup_vault_arn: () -> ::String
562
+ def resource_arn: () -> ::String
563
+ def resource_type: () -> ::String
564
+ def created_by: () -> Types::RecoveryPointCreator
565
+ def iam_role_arn: () -> ::String
566
+ def status: () -> ("COMPLETED" | "PARTIAL" | "DELETING" | "EXPIRED")
567
+ def status_message: () -> ::String
568
+ def creation_date: () -> ::Time
569
+ def completion_date: () -> ::Time
570
+ def backup_size_in_bytes: () -> ::Integer
571
+ def calculated_lifecycle: () -> Types::CalculatedLifecycle
572
+ def lifecycle: () -> Types::Lifecycle
573
+ def encryption_key_arn: () -> ::String
574
+ def is_encrypted: () -> bool
575
+ def storage_class: () -> ("WARM" | "COLD" | "DELETED")
576
+ def last_restore_time: () -> ::Time
577
+ def parent_recovery_point_arn: () -> ::String
578
+ def composite_member_identifier: () -> ::String
579
+ def is_parent: () -> bool
580
+ def resource_name: () -> ::String
581
+ def vault_type: () -> ("BACKUP_VAULT" | "LOGICALLY_AIR_GAPPED_BACKUP_VAULT")
582
+ end
583
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#describe_recovery_point-instance_method
584
+ def describe_recovery_point: (
585
+ backup_vault_name: ::String,
586
+ recovery_point_arn: ::String,
587
+ ?backup_vault_account_id: ::String
588
+ ) -> _DescribeRecoveryPointResponseSuccess
589
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeRecoveryPointResponseSuccess
590
+
591
+ interface _DescribeRegionSettingsResponseSuccess
592
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeRegionSettingsOutput]
593
+ def resource_type_opt_in_preference: () -> ::Hash[::String, bool]
594
+ def resource_type_management_preference: () -> ::Hash[::String, bool]
595
+ end
596
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#describe_region_settings-instance_method
597
+ def describe_region_settings: (
598
+ ) -> _DescribeRegionSettingsResponseSuccess
599
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeRegionSettingsResponseSuccess
600
+
601
+ interface _DescribeReportJobResponseSuccess
602
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeReportJobOutput]
603
+ def report_job: () -> Types::ReportJob
604
+ end
605
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#describe_report_job-instance_method
606
+ def describe_report_job: (
607
+ report_job_id: ::String
608
+ ) -> _DescribeReportJobResponseSuccess
609
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeReportJobResponseSuccess
610
+
611
+ interface _DescribeReportPlanResponseSuccess
612
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeReportPlanOutput]
613
+ def report_plan: () -> Types::ReportPlan
614
+ end
615
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#describe_report_plan-instance_method
616
+ def describe_report_plan: (
617
+ report_plan_name: ::String
618
+ ) -> _DescribeReportPlanResponseSuccess
619
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeReportPlanResponseSuccess
620
+
621
+ interface _DescribeRestoreJobResponseSuccess
622
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeRestoreJobOutput]
623
+ def account_id: () -> ::String
624
+ def restore_job_id: () -> ::String
625
+ def recovery_point_arn: () -> ::String
626
+ def creation_date: () -> ::Time
627
+ def completion_date: () -> ::Time
628
+ def status: () -> ("PENDING" | "RUNNING" | "COMPLETED" | "ABORTED" | "FAILED")
629
+ def status_message: () -> ::String
630
+ def percent_done: () -> ::String
631
+ def backup_size_in_bytes: () -> ::Integer
632
+ def iam_role_arn: () -> ::String
633
+ def expected_completion_time_minutes: () -> ::Integer
634
+ def created_resource_arn: () -> ::String
635
+ def resource_type: () -> ::String
636
+ def recovery_point_creation_date: () -> ::Time
637
+ def created_by: () -> Types::RestoreJobCreator
638
+ def validation_status: () -> ("FAILED" | "SUCCESSFUL" | "TIMED_OUT" | "VALIDATING")
639
+ def validation_status_message: () -> ::String
640
+ def deletion_status: () -> ("DELETING" | "FAILED" | "SUCCESSFUL")
641
+ def deletion_status_message: () -> ::String
642
+ end
643
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#describe_restore_job-instance_method
644
+ def describe_restore_job: (
645
+ restore_job_id: ::String
646
+ ) -> _DescribeRestoreJobResponseSuccess
647
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeRestoreJobResponseSuccess
648
+
649
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#disassociate_recovery_point-instance_method
650
+ def disassociate_recovery_point: (
651
+ backup_vault_name: ::String,
652
+ recovery_point_arn: ::String
653
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
654
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
655
+
656
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#disassociate_recovery_point_from_parent-instance_method
657
+ def disassociate_recovery_point_from_parent: (
658
+ backup_vault_name: ::String,
659
+ recovery_point_arn: ::String
660
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
661
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
662
+
663
+ interface _ExportBackupPlanTemplateResponseSuccess
664
+ include ::Seahorse::Client::_ResponseSuccess[Types::ExportBackupPlanTemplateOutput]
665
+ def backup_plan_template_json: () -> ::String
666
+ end
667
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#export_backup_plan_template-instance_method
668
+ def export_backup_plan_template: (
669
+ backup_plan_id: ::String
670
+ ) -> _ExportBackupPlanTemplateResponseSuccess
671
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ExportBackupPlanTemplateResponseSuccess
672
+
673
+ interface _GetBackupPlanResponseSuccess
674
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetBackupPlanOutput]
675
+ def backup_plan: () -> Types::BackupPlan
676
+ def backup_plan_id: () -> ::String
677
+ def backup_plan_arn: () -> ::String
678
+ def version_id: () -> ::String
679
+ def creator_request_id: () -> ::String
680
+ def creation_date: () -> ::Time
681
+ def deletion_date: () -> ::Time
682
+ def last_execution_date: () -> ::Time
683
+ def advanced_backup_settings: () -> ::Array[Types::AdvancedBackupSetting]
684
+ end
685
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#get_backup_plan-instance_method
686
+ def get_backup_plan: (
687
+ backup_plan_id: ::String,
688
+ ?version_id: ::String
689
+ ) -> _GetBackupPlanResponseSuccess
690
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBackupPlanResponseSuccess
691
+
692
+ interface _GetBackupPlanFromJSONResponseSuccess
693
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetBackupPlanFromJSONOutput]
694
+ def backup_plan: () -> Types::BackupPlan
695
+ end
696
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#get_backup_plan_from_json-instance_method
697
+ def get_backup_plan_from_json: (
698
+ backup_plan_template_json: ::String
699
+ ) -> _GetBackupPlanFromJSONResponseSuccess
700
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBackupPlanFromJSONResponseSuccess
701
+
702
+ interface _GetBackupPlanFromTemplateResponseSuccess
703
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetBackupPlanFromTemplateOutput]
704
+ def backup_plan_document: () -> Types::BackupPlan
705
+ end
706
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#get_backup_plan_from_template-instance_method
707
+ def get_backup_plan_from_template: (
708
+ backup_plan_template_id: ::String
709
+ ) -> _GetBackupPlanFromTemplateResponseSuccess
710
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBackupPlanFromTemplateResponseSuccess
711
+
712
+ interface _GetBackupSelectionResponseSuccess
713
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetBackupSelectionOutput]
714
+ def backup_selection: () -> Types::BackupSelection
715
+ def selection_id: () -> ::String
716
+ def backup_plan_id: () -> ::String
717
+ def creation_date: () -> ::Time
718
+ def creator_request_id: () -> ::String
719
+ end
720
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#get_backup_selection-instance_method
721
+ def get_backup_selection: (
722
+ backup_plan_id: ::String,
723
+ selection_id: ::String
724
+ ) -> _GetBackupSelectionResponseSuccess
725
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBackupSelectionResponseSuccess
726
+
727
+ interface _GetBackupVaultAccessPolicyResponseSuccess
728
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetBackupVaultAccessPolicyOutput]
729
+ def backup_vault_name: () -> ::String
730
+ def backup_vault_arn: () -> ::String
731
+ def policy: () -> ::String
732
+ end
733
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#get_backup_vault_access_policy-instance_method
734
+ def get_backup_vault_access_policy: (
735
+ backup_vault_name: ::String
736
+ ) -> _GetBackupVaultAccessPolicyResponseSuccess
737
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBackupVaultAccessPolicyResponseSuccess
738
+
739
+ interface _GetBackupVaultNotificationsResponseSuccess
740
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetBackupVaultNotificationsOutput]
741
+ def backup_vault_name: () -> ::String
742
+ def backup_vault_arn: () -> ::String
743
+ def sns_topic_arn: () -> ::String
744
+ def backup_vault_events: () -> ::Array[("BACKUP_JOB_STARTED" | "BACKUP_JOB_COMPLETED" | "BACKUP_JOB_SUCCESSFUL" | "BACKUP_JOB_FAILED" | "BACKUP_JOB_EXPIRED" | "RESTORE_JOB_STARTED" | "RESTORE_JOB_COMPLETED" | "RESTORE_JOB_SUCCESSFUL" | "RESTORE_JOB_FAILED" | "COPY_JOB_STARTED" | "COPY_JOB_SUCCESSFUL" | "COPY_JOB_FAILED" | "RECOVERY_POINT_MODIFIED" | "BACKUP_PLAN_CREATED" | "BACKUP_PLAN_MODIFIED" | "S3_BACKUP_OBJECT_FAILED" | "S3_RESTORE_OBJECT_FAILED")]
745
+ end
746
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#get_backup_vault_notifications-instance_method
747
+ def get_backup_vault_notifications: (
748
+ backup_vault_name: ::String
749
+ ) -> _GetBackupVaultNotificationsResponseSuccess
750
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBackupVaultNotificationsResponseSuccess
751
+
752
+ interface _GetLegalHoldResponseSuccess
753
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetLegalHoldOutput]
754
+ def title: () -> ::String
755
+ def status: () -> ("CREATING" | "ACTIVE" | "CANCELING" | "CANCELED")
756
+ def description: () -> ::String
757
+ def cancel_description: () -> ::String
758
+ def legal_hold_id: () -> ::String
759
+ def legal_hold_arn: () -> ::String
760
+ def creation_date: () -> ::Time
761
+ def cancellation_date: () -> ::Time
762
+ def retain_record_until: () -> ::Time
763
+ def recovery_point_selection: () -> Types::RecoveryPointSelection
764
+ end
765
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#get_legal_hold-instance_method
766
+ def get_legal_hold: (
767
+ legal_hold_id: ::String
768
+ ) -> _GetLegalHoldResponseSuccess
769
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLegalHoldResponseSuccess
770
+
771
+ interface _GetRecoveryPointRestoreMetadataResponseSuccess
772
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetRecoveryPointRestoreMetadataOutput]
773
+ def backup_vault_arn: () -> ::String
774
+ def recovery_point_arn: () -> ::String
775
+ def restore_metadata: () -> ::Hash[::String, ::String]
776
+ def resource_type: () -> ::String
777
+ end
778
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#get_recovery_point_restore_metadata-instance_method
779
+ def get_recovery_point_restore_metadata: (
780
+ backup_vault_name: ::String,
781
+ recovery_point_arn: ::String,
782
+ ?backup_vault_account_id: ::String
783
+ ) -> _GetRecoveryPointRestoreMetadataResponseSuccess
784
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRecoveryPointRestoreMetadataResponseSuccess
785
+
786
+ interface _GetRestoreJobMetadataResponseSuccess
787
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetRestoreJobMetadataOutput]
788
+ def restore_job_id: () -> ::String
789
+ def metadata: () -> ::Hash[::String, ::String]
790
+ end
791
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#get_restore_job_metadata-instance_method
792
+ def get_restore_job_metadata: (
793
+ restore_job_id: ::String
794
+ ) -> _GetRestoreJobMetadataResponseSuccess
795
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRestoreJobMetadataResponseSuccess
796
+
797
+ interface _GetRestoreTestingInferredMetadataResponseSuccess
798
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetRestoreTestingInferredMetadataOutput]
799
+ def inferred_metadata: () -> ::Hash[::String, ::String]
800
+ end
801
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#get_restore_testing_inferred_metadata-instance_method
802
+ def get_restore_testing_inferred_metadata: (
803
+ ?backup_vault_account_id: ::String,
804
+ backup_vault_name: ::String,
805
+ recovery_point_arn: ::String
806
+ ) -> _GetRestoreTestingInferredMetadataResponseSuccess
807
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRestoreTestingInferredMetadataResponseSuccess
808
+
809
+ interface _GetRestoreTestingPlanResponseSuccess
810
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetRestoreTestingPlanOutput]
811
+ def restore_testing_plan: () -> Types::RestoreTestingPlanForGet
812
+ end
813
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#get_restore_testing_plan-instance_method
814
+ def get_restore_testing_plan: (
815
+ restore_testing_plan_name: ::String
816
+ ) -> _GetRestoreTestingPlanResponseSuccess
817
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRestoreTestingPlanResponseSuccess
818
+
819
+ interface _GetRestoreTestingSelectionResponseSuccess
820
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetRestoreTestingSelectionOutput]
821
+ def restore_testing_selection: () -> Types::RestoreTestingSelectionForGet
822
+ end
823
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#get_restore_testing_selection-instance_method
824
+ def get_restore_testing_selection: (
825
+ restore_testing_plan_name: ::String,
826
+ restore_testing_selection_name: ::String
827
+ ) -> _GetRestoreTestingSelectionResponseSuccess
828
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRestoreTestingSelectionResponseSuccess
829
+
830
+ interface _GetSupportedResourceTypesResponseSuccess
831
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetSupportedResourceTypesOutput]
832
+ def resource_types: () -> ::Array[::String]
833
+ end
834
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#get_supported_resource_types-instance_method
835
+ def get_supported_resource_types: () -> _GetSupportedResourceTypesResponseSuccess
836
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSupportedResourceTypesResponseSuccess
837
+
838
+ interface _ListBackupJobSummariesResponseSuccess
839
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListBackupJobSummariesOutput]
840
+ def backup_job_summaries: () -> ::Array[Types::BackupJobSummary]
841
+ def aggregation_period: () -> ::String
842
+ def next_token: () -> ::String
843
+ end
844
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#list_backup_job_summaries-instance_method
845
+ def list_backup_job_summaries: (
846
+ ?account_id: ::String,
847
+ ?state: ("CREATED" | "PENDING" | "RUNNING" | "ABORTING" | "ABORTED" | "COMPLETED" | "FAILED" | "EXPIRED" | "PARTIAL" | "AGGREGATE_ALL" | "ANY"),
848
+ ?resource_type: ::String,
849
+ ?message_category: ::String,
850
+ ?aggregation_period: ("ONE_DAY" | "SEVEN_DAYS" | "FOURTEEN_DAYS"),
851
+ ?max_results: ::Integer,
852
+ ?next_token: ::String
853
+ ) -> _ListBackupJobSummariesResponseSuccess
854
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBackupJobSummariesResponseSuccess
855
+
856
+ interface _ListBackupJobsResponseSuccess
857
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListBackupJobsOutput]
858
+ def backup_jobs: () -> ::Array[Types::BackupJob]
859
+ def next_token: () -> ::String
860
+ end
861
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#list_backup_jobs-instance_method
862
+ def list_backup_jobs: (
863
+ ?next_token: ::String,
864
+ ?max_results: ::Integer,
865
+ ?by_resource_arn: ::String,
866
+ ?by_state: ("CREATED" | "PENDING" | "RUNNING" | "ABORTING" | "ABORTED" | "COMPLETED" | "FAILED" | "EXPIRED" | "PARTIAL"),
867
+ ?by_backup_vault_name: ::String,
868
+ ?by_created_before: ::Time,
869
+ ?by_created_after: ::Time,
870
+ ?by_resource_type: ::String,
871
+ ?by_account_id: ::String,
872
+ ?by_complete_after: ::Time,
873
+ ?by_complete_before: ::Time,
874
+ ?by_parent_job_id: ::String,
875
+ ?by_message_category: ::String
876
+ ) -> _ListBackupJobsResponseSuccess
877
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBackupJobsResponseSuccess
878
+
879
+ interface _ListBackupPlanTemplatesResponseSuccess
880
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListBackupPlanTemplatesOutput]
881
+ def next_token: () -> ::String
882
+ def backup_plan_templates_list: () -> ::Array[Types::BackupPlanTemplatesListMember]
883
+ end
884
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#list_backup_plan_templates-instance_method
885
+ def list_backup_plan_templates: (
886
+ ?next_token: ::String,
887
+ ?max_results: ::Integer
888
+ ) -> _ListBackupPlanTemplatesResponseSuccess
889
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBackupPlanTemplatesResponseSuccess
890
+
891
+ interface _ListBackupPlanVersionsResponseSuccess
892
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListBackupPlanVersionsOutput]
893
+ def next_token: () -> ::String
894
+ def backup_plan_versions_list: () -> ::Array[Types::BackupPlansListMember]
895
+ end
896
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#list_backup_plan_versions-instance_method
897
+ def list_backup_plan_versions: (
898
+ backup_plan_id: ::String,
899
+ ?next_token: ::String,
900
+ ?max_results: ::Integer
901
+ ) -> _ListBackupPlanVersionsResponseSuccess
902
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBackupPlanVersionsResponseSuccess
903
+
904
+ interface _ListBackupPlansResponseSuccess
905
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListBackupPlansOutput]
906
+ def next_token: () -> ::String
907
+ def backup_plans_list: () -> ::Array[Types::BackupPlansListMember]
908
+ end
909
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#list_backup_plans-instance_method
910
+ def list_backup_plans: (
911
+ ?next_token: ::String,
912
+ ?max_results: ::Integer,
913
+ ?include_deleted: bool
914
+ ) -> _ListBackupPlansResponseSuccess
915
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBackupPlansResponseSuccess
916
+
917
+ interface _ListBackupSelectionsResponseSuccess
918
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListBackupSelectionsOutput]
919
+ def next_token: () -> ::String
920
+ def backup_selections_list: () -> ::Array[Types::BackupSelectionsListMember]
921
+ end
922
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#list_backup_selections-instance_method
923
+ def list_backup_selections: (
924
+ backup_plan_id: ::String,
925
+ ?next_token: ::String,
926
+ ?max_results: ::Integer
927
+ ) -> _ListBackupSelectionsResponseSuccess
928
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBackupSelectionsResponseSuccess
929
+
930
+ interface _ListBackupVaultsResponseSuccess
931
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListBackupVaultsOutput]
932
+ def backup_vault_list: () -> ::Array[Types::BackupVaultListMember]
933
+ def next_token: () -> ::String
934
+ end
935
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#list_backup_vaults-instance_method
936
+ def list_backup_vaults: (
937
+ ?by_vault_type: ("BACKUP_VAULT" | "LOGICALLY_AIR_GAPPED_BACKUP_VAULT"),
938
+ ?by_shared: bool,
939
+ ?next_token: ::String,
940
+ ?max_results: ::Integer
941
+ ) -> _ListBackupVaultsResponseSuccess
942
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBackupVaultsResponseSuccess
943
+
944
+ interface _ListCopyJobSummariesResponseSuccess
945
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListCopyJobSummariesOutput]
946
+ def copy_job_summaries: () -> ::Array[Types::CopyJobSummary]
947
+ def aggregation_period: () -> ::String
948
+ def next_token: () -> ::String
949
+ end
950
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#list_copy_job_summaries-instance_method
951
+ def list_copy_job_summaries: (
952
+ ?account_id: ::String,
953
+ ?state: ("CREATED" | "RUNNING" | "ABORTING" | "ABORTED" | "COMPLETING" | "COMPLETED" | "FAILING" | "FAILED" | "PARTIAL" | "AGGREGATE_ALL" | "ANY"),
954
+ ?resource_type: ::String,
955
+ ?message_category: ::String,
956
+ ?aggregation_period: ("ONE_DAY" | "SEVEN_DAYS" | "FOURTEEN_DAYS"),
957
+ ?max_results: ::Integer,
958
+ ?next_token: ::String
959
+ ) -> _ListCopyJobSummariesResponseSuccess
960
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCopyJobSummariesResponseSuccess
961
+
962
+ interface _ListCopyJobsResponseSuccess
963
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListCopyJobsOutput]
964
+ def copy_jobs: () -> ::Array[Types::CopyJob]
965
+ def next_token: () -> ::String
966
+ end
967
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#list_copy_jobs-instance_method
968
+ def list_copy_jobs: (
969
+ ?next_token: ::String,
970
+ ?max_results: ::Integer,
971
+ ?by_resource_arn: ::String,
972
+ ?by_state: ("CREATED" | "RUNNING" | "COMPLETED" | "FAILED" | "PARTIAL"),
973
+ ?by_created_before: ::Time,
974
+ ?by_created_after: ::Time,
975
+ ?by_resource_type: ::String,
976
+ ?by_destination_vault_arn: ::String,
977
+ ?by_account_id: ::String,
978
+ ?by_complete_before: ::Time,
979
+ ?by_complete_after: ::Time,
980
+ ?by_parent_job_id: ::String,
981
+ ?by_message_category: ::String
982
+ ) -> _ListCopyJobsResponseSuccess
983
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCopyJobsResponseSuccess
984
+
985
+ interface _ListFrameworksResponseSuccess
986
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListFrameworksOutput]
987
+ def frameworks: () -> ::Array[Types::Framework]
988
+ def next_token: () -> ::String
989
+ end
990
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#list_frameworks-instance_method
991
+ def list_frameworks: (
992
+ ?max_results: ::Integer,
993
+ ?next_token: ::String
994
+ ) -> _ListFrameworksResponseSuccess
995
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListFrameworksResponseSuccess
996
+
997
+ interface _ListLegalHoldsResponseSuccess
998
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListLegalHoldsOutput]
999
+ def next_token: () -> ::String
1000
+ def legal_holds: () -> ::Array[Types::LegalHold]
1001
+ end
1002
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#list_legal_holds-instance_method
1003
+ def list_legal_holds: (
1004
+ ?next_token: ::String,
1005
+ ?max_results: ::Integer
1006
+ ) -> _ListLegalHoldsResponseSuccess
1007
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLegalHoldsResponseSuccess
1008
+
1009
+ interface _ListProtectedResourcesResponseSuccess
1010
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListProtectedResourcesOutput]
1011
+ def results: () -> ::Array[Types::ProtectedResource]
1012
+ def next_token: () -> ::String
1013
+ end
1014
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#list_protected_resources-instance_method
1015
+ def list_protected_resources: (
1016
+ ?next_token: ::String,
1017
+ ?max_results: ::Integer
1018
+ ) -> _ListProtectedResourcesResponseSuccess
1019
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListProtectedResourcesResponseSuccess
1020
+
1021
+ interface _ListProtectedResourcesByBackupVaultResponseSuccess
1022
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListProtectedResourcesByBackupVaultOutput]
1023
+ def results: () -> ::Array[Types::ProtectedResource]
1024
+ def next_token: () -> ::String
1025
+ end
1026
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#list_protected_resources_by_backup_vault-instance_method
1027
+ def list_protected_resources_by_backup_vault: (
1028
+ backup_vault_name: ::String,
1029
+ ?backup_vault_account_id: ::String,
1030
+ ?next_token: ::String,
1031
+ ?max_results: ::Integer
1032
+ ) -> _ListProtectedResourcesByBackupVaultResponseSuccess
1033
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListProtectedResourcesByBackupVaultResponseSuccess
1034
+
1035
+ interface _ListRecoveryPointsByBackupVaultResponseSuccess
1036
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRecoveryPointsByBackupVaultOutput]
1037
+ def next_token: () -> ::String
1038
+ def recovery_points: () -> ::Array[Types::RecoveryPointByBackupVault]
1039
+ end
1040
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#list_recovery_points_by_backup_vault-instance_method
1041
+ def list_recovery_points_by_backup_vault: (
1042
+ backup_vault_name: ::String,
1043
+ ?backup_vault_account_id: ::String,
1044
+ ?next_token: ::String,
1045
+ ?max_results: ::Integer,
1046
+ ?by_resource_arn: ::String,
1047
+ ?by_resource_type: ::String,
1048
+ ?by_backup_plan_id: ::String,
1049
+ ?by_created_before: ::Time,
1050
+ ?by_created_after: ::Time,
1051
+ ?by_parent_recovery_point_arn: ::String
1052
+ ) -> _ListRecoveryPointsByBackupVaultResponseSuccess
1053
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRecoveryPointsByBackupVaultResponseSuccess
1054
+
1055
+ interface _ListRecoveryPointsByLegalHoldResponseSuccess
1056
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRecoveryPointsByLegalHoldOutput]
1057
+ def recovery_points: () -> ::Array[Types::RecoveryPointMember]
1058
+ def next_token: () -> ::String
1059
+ end
1060
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#list_recovery_points_by_legal_hold-instance_method
1061
+ def list_recovery_points_by_legal_hold: (
1062
+ legal_hold_id: ::String,
1063
+ ?next_token: ::String,
1064
+ ?max_results: ::Integer
1065
+ ) -> _ListRecoveryPointsByLegalHoldResponseSuccess
1066
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRecoveryPointsByLegalHoldResponseSuccess
1067
+
1068
+ interface _ListRecoveryPointsByResourceResponseSuccess
1069
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRecoveryPointsByResourceOutput]
1070
+ def next_token: () -> ::String
1071
+ def recovery_points: () -> ::Array[Types::RecoveryPointByResource]
1072
+ end
1073
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#list_recovery_points_by_resource-instance_method
1074
+ def list_recovery_points_by_resource: (
1075
+ resource_arn: ::String,
1076
+ ?next_token: ::String,
1077
+ ?max_results: ::Integer
1078
+ ) -> _ListRecoveryPointsByResourceResponseSuccess
1079
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRecoveryPointsByResourceResponseSuccess
1080
+
1081
+ interface _ListReportJobsResponseSuccess
1082
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListReportJobsOutput]
1083
+ def report_jobs: () -> ::Array[Types::ReportJob]
1084
+ def next_token: () -> ::String
1085
+ end
1086
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#list_report_jobs-instance_method
1087
+ def list_report_jobs: (
1088
+ ?by_report_plan_name: ::String,
1089
+ ?by_creation_before: ::Time,
1090
+ ?by_creation_after: ::Time,
1091
+ ?by_status: ::String,
1092
+ ?max_results: ::Integer,
1093
+ ?next_token: ::String
1094
+ ) -> _ListReportJobsResponseSuccess
1095
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReportJobsResponseSuccess
1096
+
1097
+ interface _ListReportPlansResponseSuccess
1098
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListReportPlansOutput]
1099
+ def report_plans: () -> ::Array[Types::ReportPlan]
1100
+ def next_token: () -> ::String
1101
+ end
1102
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#list_report_plans-instance_method
1103
+ def list_report_plans: (
1104
+ ?max_results: ::Integer,
1105
+ ?next_token: ::String
1106
+ ) -> _ListReportPlansResponseSuccess
1107
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReportPlansResponseSuccess
1108
+
1109
+ interface _ListRestoreJobSummariesResponseSuccess
1110
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRestoreJobSummariesOutput]
1111
+ def restore_job_summaries: () -> ::Array[Types::RestoreJobSummary]
1112
+ def aggregation_period: () -> ::String
1113
+ def next_token: () -> ::String
1114
+ end
1115
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#list_restore_job_summaries-instance_method
1116
+ def list_restore_job_summaries: (
1117
+ ?account_id: ::String,
1118
+ ?state: ("CREATED" | "PENDING" | "RUNNING" | "ABORTED" | "COMPLETED" | "FAILED" | "AGGREGATE_ALL" | "ANY"),
1119
+ ?resource_type: ::String,
1120
+ ?aggregation_period: ("ONE_DAY" | "SEVEN_DAYS" | "FOURTEEN_DAYS"),
1121
+ ?max_results: ::Integer,
1122
+ ?next_token: ::String
1123
+ ) -> _ListRestoreJobSummariesResponseSuccess
1124
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRestoreJobSummariesResponseSuccess
1125
+
1126
+ interface _ListRestoreJobsResponseSuccess
1127
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRestoreJobsOutput]
1128
+ def restore_jobs: () -> ::Array[Types::RestoreJobsListMember]
1129
+ def next_token: () -> ::String
1130
+ end
1131
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#list_restore_jobs-instance_method
1132
+ def list_restore_jobs: (
1133
+ ?next_token: ::String,
1134
+ ?max_results: ::Integer,
1135
+ ?by_account_id: ::String,
1136
+ ?by_resource_type: ::String,
1137
+ ?by_created_before: ::Time,
1138
+ ?by_created_after: ::Time,
1139
+ ?by_status: ("PENDING" | "RUNNING" | "COMPLETED" | "ABORTED" | "FAILED"),
1140
+ ?by_complete_before: ::Time,
1141
+ ?by_complete_after: ::Time,
1142
+ ?by_restore_testing_plan_arn: ::String
1143
+ ) -> _ListRestoreJobsResponseSuccess
1144
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRestoreJobsResponseSuccess
1145
+
1146
+ interface _ListRestoreJobsByProtectedResourceResponseSuccess
1147
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRestoreJobsByProtectedResourceOutput]
1148
+ def restore_jobs: () -> ::Array[Types::RestoreJobsListMember]
1149
+ def next_token: () -> ::String
1150
+ end
1151
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#list_restore_jobs_by_protected_resource-instance_method
1152
+ def list_restore_jobs_by_protected_resource: (
1153
+ resource_arn: ::String,
1154
+ ?by_status: ("PENDING" | "RUNNING" | "COMPLETED" | "ABORTED" | "FAILED"),
1155
+ ?by_recovery_point_creation_date_after: ::Time,
1156
+ ?by_recovery_point_creation_date_before: ::Time,
1157
+ ?next_token: ::String,
1158
+ ?max_results: ::Integer
1159
+ ) -> _ListRestoreJobsByProtectedResourceResponseSuccess
1160
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRestoreJobsByProtectedResourceResponseSuccess
1161
+
1162
+ interface _ListRestoreTestingPlansResponseSuccess
1163
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRestoreTestingPlansOutput]
1164
+ def next_token: () -> ::String
1165
+ def restore_testing_plans: () -> ::Array[Types::RestoreTestingPlanForList]
1166
+ end
1167
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#list_restore_testing_plans-instance_method
1168
+ def list_restore_testing_plans: (
1169
+ ?max_results: ::Integer,
1170
+ ?next_token: ::String
1171
+ ) -> _ListRestoreTestingPlansResponseSuccess
1172
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRestoreTestingPlansResponseSuccess
1173
+
1174
+ interface _ListRestoreTestingSelectionsResponseSuccess
1175
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRestoreTestingSelectionsOutput]
1176
+ def next_token: () -> ::String
1177
+ def restore_testing_selections: () -> ::Array[Types::RestoreTestingSelectionForList]
1178
+ end
1179
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#list_restore_testing_selections-instance_method
1180
+ def list_restore_testing_selections: (
1181
+ ?max_results: ::Integer,
1182
+ ?next_token: ::String,
1183
+ restore_testing_plan_name: ::String
1184
+ ) -> _ListRestoreTestingSelectionsResponseSuccess
1185
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRestoreTestingSelectionsResponseSuccess
1186
+
1187
+ interface _ListTagsResponseSuccess
1188
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsOutput]
1189
+ def next_token: () -> ::String
1190
+ def tags: () -> ::Hash[::String, ::String]
1191
+ end
1192
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#list_tags-instance_method
1193
+ def list_tags: (
1194
+ resource_arn: ::String,
1195
+ ?next_token: ::String,
1196
+ ?max_results: ::Integer
1197
+ ) -> _ListTagsResponseSuccess
1198
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsResponseSuccess
1199
+
1200
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#put_backup_vault_access_policy-instance_method
1201
+ def put_backup_vault_access_policy: (
1202
+ backup_vault_name: ::String,
1203
+ ?policy: ::String
1204
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1205
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1206
+
1207
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#put_backup_vault_lock_configuration-instance_method
1208
+ def put_backup_vault_lock_configuration: (
1209
+ backup_vault_name: ::String,
1210
+ ?min_retention_days: ::Integer,
1211
+ ?max_retention_days: ::Integer,
1212
+ ?changeable_for_days: ::Integer
1213
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1214
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1215
+
1216
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#put_backup_vault_notifications-instance_method
1217
+ def put_backup_vault_notifications: (
1218
+ backup_vault_name: ::String,
1219
+ sns_topic_arn: ::String,
1220
+ backup_vault_events: Array[("BACKUP_JOB_STARTED" | "BACKUP_JOB_COMPLETED" | "BACKUP_JOB_SUCCESSFUL" | "BACKUP_JOB_FAILED" | "BACKUP_JOB_EXPIRED" | "RESTORE_JOB_STARTED" | "RESTORE_JOB_COMPLETED" | "RESTORE_JOB_SUCCESSFUL" | "RESTORE_JOB_FAILED" | "COPY_JOB_STARTED" | "COPY_JOB_SUCCESSFUL" | "COPY_JOB_FAILED" | "RECOVERY_POINT_MODIFIED" | "BACKUP_PLAN_CREATED" | "BACKUP_PLAN_MODIFIED" | "S3_BACKUP_OBJECT_FAILED" | "S3_RESTORE_OBJECT_FAILED")]
1221
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1222
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1223
+
1224
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#put_restore_validation_result-instance_method
1225
+ def put_restore_validation_result: (
1226
+ restore_job_id: ::String,
1227
+ validation_status: ("FAILED" | "SUCCESSFUL" | "TIMED_OUT" | "VALIDATING"),
1228
+ ?validation_status_message: ::String
1229
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1230
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1231
+
1232
+ interface _StartBackupJobResponseSuccess
1233
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartBackupJobOutput]
1234
+ def backup_job_id: () -> ::String
1235
+ def recovery_point_arn: () -> ::String
1236
+ def creation_date: () -> ::Time
1237
+ def is_parent: () -> bool
1238
+ end
1239
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#start_backup_job-instance_method
1240
+ def start_backup_job: (
1241
+ backup_vault_name: ::String,
1242
+ resource_arn: ::String,
1243
+ iam_role_arn: ::String,
1244
+ ?idempotency_token: ::String,
1245
+ ?start_window_minutes: ::Integer,
1246
+ ?complete_window_minutes: ::Integer,
1247
+ ?lifecycle: {
1248
+ move_to_cold_storage_after_days: ::Integer?,
1249
+ delete_after_days: ::Integer?,
1250
+ opt_in_to_archive_for_supported_resources: bool?
1251
+ },
1252
+ ?recovery_point_tags: Hash[::String, ::String],
1253
+ ?backup_options: Hash[::String, ::String]
1254
+ ) -> _StartBackupJobResponseSuccess
1255
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartBackupJobResponseSuccess
1256
+
1257
+ interface _StartCopyJobResponseSuccess
1258
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartCopyJobOutput]
1259
+ def copy_job_id: () -> ::String
1260
+ def creation_date: () -> ::Time
1261
+ def is_parent: () -> bool
1262
+ end
1263
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#start_copy_job-instance_method
1264
+ def start_copy_job: (
1265
+ recovery_point_arn: ::String,
1266
+ source_backup_vault_name: ::String,
1267
+ destination_backup_vault_arn: ::String,
1268
+ iam_role_arn: ::String,
1269
+ ?idempotency_token: ::String,
1270
+ ?lifecycle: {
1271
+ move_to_cold_storage_after_days: ::Integer?,
1272
+ delete_after_days: ::Integer?,
1273
+ opt_in_to_archive_for_supported_resources: bool?
1274
+ }
1275
+ ) -> _StartCopyJobResponseSuccess
1276
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartCopyJobResponseSuccess
1277
+
1278
+ interface _StartReportJobResponseSuccess
1279
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartReportJobOutput]
1280
+ def report_job_id: () -> ::String
1281
+ end
1282
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#start_report_job-instance_method
1283
+ def start_report_job: (
1284
+ report_plan_name: ::String,
1285
+ ?idempotency_token: ::String
1286
+ ) -> _StartReportJobResponseSuccess
1287
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartReportJobResponseSuccess
1288
+
1289
+ interface _StartRestoreJobResponseSuccess
1290
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartRestoreJobOutput]
1291
+ def restore_job_id: () -> ::String
1292
+ end
1293
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#start_restore_job-instance_method
1294
+ def start_restore_job: (
1295
+ recovery_point_arn: ::String,
1296
+ metadata: Hash[::String, ::String],
1297
+ ?iam_role_arn: ::String,
1298
+ ?idempotency_token: ::String,
1299
+ ?resource_type: ::String,
1300
+ ?copy_source_tags_to_restored_resource: bool
1301
+ ) -> _StartRestoreJobResponseSuccess
1302
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartRestoreJobResponseSuccess
1303
+
1304
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#stop_backup_job-instance_method
1305
+ def stop_backup_job: (
1306
+ backup_job_id: ::String
1307
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1308
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1309
+
1310
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#tag_resource-instance_method
1311
+ def tag_resource: (
1312
+ resource_arn: ::String,
1313
+ tags: Hash[::String, ::String]
1314
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1315
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1316
+
1317
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#untag_resource-instance_method
1318
+ def untag_resource: (
1319
+ resource_arn: ::String,
1320
+ tag_key_list: Array[::String]
1321
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1322
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1323
+
1324
+ interface _UpdateBackupPlanResponseSuccess
1325
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateBackupPlanOutput]
1326
+ def backup_plan_id: () -> ::String
1327
+ def backup_plan_arn: () -> ::String
1328
+ def creation_date: () -> ::Time
1329
+ def version_id: () -> ::String
1330
+ def advanced_backup_settings: () -> ::Array[Types::AdvancedBackupSetting]
1331
+ end
1332
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#update_backup_plan-instance_method
1333
+ def update_backup_plan: (
1334
+ backup_plan_id: ::String,
1335
+ backup_plan: {
1336
+ backup_plan_name: ::String,
1337
+ rules: Array[
1338
+ {
1339
+ rule_name: ::String,
1340
+ target_backup_vault_name: ::String,
1341
+ schedule_expression: ::String?,
1342
+ start_window_minutes: ::Integer?,
1343
+ completion_window_minutes: ::Integer?,
1344
+ lifecycle: {
1345
+ move_to_cold_storage_after_days: ::Integer?,
1346
+ delete_after_days: ::Integer?,
1347
+ opt_in_to_archive_for_supported_resources: bool?
1348
+ }?,
1349
+ recovery_point_tags: Hash[::String, ::String]?,
1350
+ copy_actions: Array[
1351
+ {
1352
+ lifecycle: {
1353
+ move_to_cold_storage_after_days: ::Integer?,
1354
+ delete_after_days: ::Integer?,
1355
+ opt_in_to_archive_for_supported_resources: bool?
1356
+ }?,
1357
+ destination_backup_vault_arn: ::String
1358
+ },
1359
+ ]?,
1360
+ enable_continuous_backup: bool?,
1361
+ schedule_expression_timezone: ::String?
1362
+ },
1363
+ ],
1364
+ advanced_backup_settings: Array[
1365
+ {
1366
+ resource_type: ::String?,
1367
+ backup_options: Hash[::String, ::String]?
1368
+ },
1369
+ ]?
1370
+ }
1371
+ ) -> _UpdateBackupPlanResponseSuccess
1372
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateBackupPlanResponseSuccess
1373
+
1374
+ interface _UpdateFrameworkResponseSuccess
1375
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateFrameworkOutput]
1376
+ def framework_name: () -> ::String
1377
+ def framework_arn: () -> ::String
1378
+ def creation_time: () -> ::Time
1379
+ end
1380
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#update_framework-instance_method
1381
+ def update_framework: (
1382
+ framework_name: ::String,
1383
+ ?framework_description: ::String,
1384
+ ?framework_controls: Array[
1385
+ {
1386
+ control_name: ::String,
1387
+ control_input_parameters: Array[
1388
+ {
1389
+ parameter_name: ::String?,
1390
+ parameter_value: ::String?
1391
+ },
1392
+ ]?,
1393
+ control_scope: {
1394
+ compliance_resource_ids: Array[::String]?,
1395
+ compliance_resource_types: Array[::String]?,
1396
+ tags: Hash[::String, ::String]?
1397
+ }?
1398
+ },
1399
+ ],
1400
+ ?idempotency_token: ::String
1401
+ ) -> _UpdateFrameworkResponseSuccess
1402
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateFrameworkResponseSuccess
1403
+
1404
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#update_global_settings-instance_method
1405
+ def update_global_settings: (
1406
+ ?global_settings: Hash[::String, ::String]
1407
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1408
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1409
+
1410
+ interface _UpdateRecoveryPointLifecycleResponseSuccess
1411
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRecoveryPointLifecycleOutput]
1412
+ def backup_vault_arn: () -> ::String
1413
+ def recovery_point_arn: () -> ::String
1414
+ def lifecycle: () -> Types::Lifecycle
1415
+ def calculated_lifecycle: () -> Types::CalculatedLifecycle
1416
+ end
1417
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#update_recovery_point_lifecycle-instance_method
1418
+ def update_recovery_point_lifecycle: (
1419
+ backup_vault_name: ::String,
1420
+ recovery_point_arn: ::String,
1421
+ ?lifecycle: {
1422
+ move_to_cold_storage_after_days: ::Integer?,
1423
+ delete_after_days: ::Integer?,
1424
+ opt_in_to_archive_for_supported_resources: bool?
1425
+ }
1426
+ ) -> _UpdateRecoveryPointLifecycleResponseSuccess
1427
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRecoveryPointLifecycleResponseSuccess
1428
+
1429
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#update_region_settings-instance_method
1430
+ def update_region_settings: (
1431
+ ?resource_type_opt_in_preference: Hash[::String, bool],
1432
+ ?resource_type_management_preference: Hash[::String, bool]
1433
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1434
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1435
+
1436
+ interface _UpdateReportPlanResponseSuccess
1437
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateReportPlanOutput]
1438
+ def report_plan_name: () -> ::String
1439
+ def report_plan_arn: () -> ::String
1440
+ def creation_time: () -> ::Time
1441
+ end
1442
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#update_report_plan-instance_method
1443
+ def update_report_plan: (
1444
+ report_plan_name: ::String,
1445
+ ?report_plan_description: ::String,
1446
+ ?report_delivery_channel: {
1447
+ s3_bucket_name: ::String,
1448
+ s3_key_prefix: ::String?,
1449
+ formats: Array[::String]?
1450
+ },
1451
+ ?report_setting: {
1452
+ report_template: ::String,
1453
+ framework_arns: Array[::String]?,
1454
+ number_of_frameworks: ::Integer?,
1455
+ accounts: Array[::String]?,
1456
+ organization_units: Array[::String]?,
1457
+ regions: Array[::String]?
1458
+ },
1459
+ ?idempotency_token: ::String
1460
+ ) -> _UpdateReportPlanResponseSuccess
1461
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateReportPlanResponseSuccess
1462
+
1463
+ interface _UpdateRestoreTestingPlanResponseSuccess
1464
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRestoreTestingPlanOutput]
1465
+ def creation_time: () -> ::Time
1466
+ def restore_testing_plan_arn: () -> ::String
1467
+ def restore_testing_plan_name: () -> ::String
1468
+ def update_time: () -> ::Time
1469
+ end
1470
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#update_restore_testing_plan-instance_method
1471
+ def update_restore_testing_plan: (
1472
+ restore_testing_plan: {
1473
+ recovery_point_selection: {
1474
+ algorithm: ("LATEST_WITHIN_WINDOW" | "RANDOM_WITHIN_WINDOW")?,
1475
+ exclude_vaults: Array[::String]?,
1476
+ include_vaults: Array[::String]?,
1477
+ recovery_point_types: Array[("CONTINUOUS" | "SNAPSHOT")]?,
1478
+ selection_window_days: ::Integer?
1479
+ }?,
1480
+ schedule_expression: ::String?,
1481
+ schedule_expression_timezone: ::String?,
1482
+ start_window_hours: ::Integer?
1483
+ },
1484
+ restore_testing_plan_name: ::String
1485
+ ) -> _UpdateRestoreTestingPlanResponseSuccess
1486
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRestoreTestingPlanResponseSuccess
1487
+
1488
+ interface _UpdateRestoreTestingSelectionResponseSuccess
1489
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRestoreTestingSelectionOutput]
1490
+ def creation_time: () -> ::Time
1491
+ def restore_testing_plan_arn: () -> ::String
1492
+ def restore_testing_plan_name: () -> ::String
1493
+ def restore_testing_selection_name: () -> ::String
1494
+ def update_time: () -> ::Time
1495
+ end
1496
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#update_restore_testing_selection-instance_method
1497
+ def update_restore_testing_selection: (
1498
+ restore_testing_plan_name: ::String,
1499
+ restore_testing_selection: {
1500
+ iam_role_arn: ::String?,
1501
+ protected_resource_arns: Array[::String]?,
1502
+ protected_resource_conditions: {
1503
+ string_equals: Array[
1504
+ {
1505
+ key: ::String,
1506
+ value: ::String
1507
+ },
1508
+ ]?,
1509
+ string_not_equals: Array[
1510
+ {
1511
+ key: ::String,
1512
+ value: ::String
1513
+ },
1514
+ ]?
1515
+ }?,
1516
+ restore_metadata_overrides: Hash[::String, ::String]?,
1517
+ validation_window_hours: ::Integer?
1518
+ },
1519
+ restore_testing_selection_name: ::String
1520
+ ) -> _UpdateRestoreTestingSelectionResponseSuccess
1521
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRestoreTestingSelectionResponseSuccess
1522
+ end
1523
+ end
1524
+ end
1525
+