aws-sdk-backup 1.64.0 → 1.66.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,1526 @@
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
+ ?managed_by_aws_backup_only: bool
1079
+ ) -> _ListRecoveryPointsByResourceResponseSuccess
1080
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRecoveryPointsByResourceResponseSuccess
1081
+
1082
+ interface _ListReportJobsResponseSuccess
1083
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListReportJobsOutput]
1084
+ def report_jobs: () -> ::Array[Types::ReportJob]
1085
+ def next_token: () -> ::String
1086
+ end
1087
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#list_report_jobs-instance_method
1088
+ def list_report_jobs: (
1089
+ ?by_report_plan_name: ::String,
1090
+ ?by_creation_before: ::Time,
1091
+ ?by_creation_after: ::Time,
1092
+ ?by_status: ::String,
1093
+ ?max_results: ::Integer,
1094
+ ?next_token: ::String
1095
+ ) -> _ListReportJobsResponseSuccess
1096
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReportJobsResponseSuccess
1097
+
1098
+ interface _ListReportPlansResponseSuccess
1099
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListReportPlansOutput]
1100
+ def report_plans: () -> ::Array[Types::ReportPlan]
1101
+ def next_token: () -> ::String
1102
+ end
1103
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#list_report_plans-instance_method
1104
+ def list_report_plans: (
1105
+ ?max_results: ::Integer,
1106
+ ?next_token: ::String
1107
+ ) -> _ListReportPlansResponseSuccess
1108
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReportPlansResponseSuccess
1109
+
1110
+ interface _ListRestoreJobSummariesResponseSuccess
1111
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRestoreJobSummariesOutput]
1112
+ def restore_job_summaries: () -> ::Array[Types::RestoreJobSummary]
1113
+ def aggregation_period: () -> ::String
1114
+ def next_token: () -> ::String
1115
+ end
1116
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#list_restore_job_summaries-instance_method
1117
+ def list_restore_job_summaries: (
1118
+ ?account_id: ::String,
1119
+ ?state: ("CREATED" | "PENDING" | "RUNNING" | "ABORTED" | "COMPLETED" | "FAILED" | "AGGREGATE_ALL" | "ANY"),
1120
+ ?resource_type: ::String,
1121
+ ?aggregation_period: ("ONE_DAY" | "SEVEN_DAYS" | "FOURTEEN_DAYS"),
1122
+ ?max_results: ::Integer,
1123
+ ?next_token: ::String
1124
+ ) -> _ListRestoreJobSummariesResponseSuccess
1125
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRestoreJobSummariesResponseSuccess
1126
+
1127
+ interface _ListRestoreJobsResponseSuccess
1128
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRestoreJobsOutput]
1129
+ def restore_jobs: () -> ::Array[Types::RestoreJobsListMember]
1130
+ def next_token: () -> ::String
1131
+ end
1132
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#list_restore_jobs-instance_method
1133
+ def list_restore_jobs: (
1134
+ ?next_token: ::String,
1135
+ ?max_results: ::Integer,
1136
+ ?by_account_id: ::String,
1137
+ ?by_resource_type: ::String,
1138
+ ?by_created_before: ::Time,
1139
+ ?by_created_after: ::Time,
1140
+ ?by_status: ("PENDING" | "RUNNING" | "COMPLETED" | "ABORTED" | "FAILED"),
1141
+ ?by_complete_before: ::Time,
1142
+ ?by_complete_after: ::Time,
1143
+ ?by_restore_testing_plan_arn: ::String
1144
+ ) -> _ListRestoreJobsResponseSuccess
1145
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRestoreJobsResponseSuccess
1146
+
1147
+ interface _ListRestoreJobsByProtectedResourceResponseSuccess
1148
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRestoreJobsByProtectedResourceOutput]
1149
+ def restore_jobs: () -> ::Array[Types::RestoreJobsListMember]
1150
+ def next_token: () -> ::String
1151
+ end
1152
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#list_restore_jobs_by_protected_resource-instance_method
1153
+ def list_restore_jobs_by_protected_resource: (
1154
+ resource_arn: ::String,
1155
+ ?by_status: ("PENDING" | "RUNNING" | "COMPLETED" | "ABORTED" | "FAILED"),
1156
+ ?by_recovery_point_creation_date_after: ::Time,
1157
+ ?by_recovery_point_creation_date_before: ::Time,
1158
+ ?next_token: ::String,
1159
+ ?max_results: ::Integer
1160
+ ) -> _ListRestoreJobsByProtectedResourceResponseSuccess
1161
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRestoreJobsByProtectedResourceResponseSuccess
1162
+
1163
+ interface _ListRestoreTestingPlansResponseSuccess
1164
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRestoreTestingPlansOutput]
1165
+ def next_token: () -> ::String
1166
+ def restore_testing_plans: () -> ::Array[Types::RestoreTestingPlanForList]
1167
+ end
1168
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#list_restore_testing_plans-instance_method
1169
+ def list_restore_testing_plans: (
1170
+ ?max_results: ::Integer,
1171
+ ?next_token: ::String
1172
+ ) -> _ListRestoreTestingPlansResponseSuccess
1173
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRestoreTestingPlansResponseSuccess
1174
+
1175
+ interface _ListRestoreTestingSelectionsResponseSuccess
1176
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRestoreTestingSelectionsOutput]
1177
+ def next_token: () -> ::String
1178
+ def restore_testing_selections: () -> ::Array[Types::RestoreTestingSelectionForList]
1179
+ end
1180
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#list_restore_testing_selections-instance_method
1181
+ def list_restore_testing_selections: (
1182
+ ?max_results: ::Integer,
1183
+ ?next_token: ::String,
1184
+ restore_testing_plan_name: ::String
1185
+ ) -> _ListRestoreTestingSelectionsResponseSuccess
1186
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRestoreTestingSelectionsResponseSuccess
1187
+
1188
+ interface _ListTagsResponseSuccess
1189
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsOutput]
1190
+ def next_token: () -> ::String
1191
+ def tags: () -> ::Hash[::String, ::String]
1192
+ end
1193
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#list_tags-instance_method
1194
+ def list_tags: (
1195
+ resource_arn: ::String,
1196
+ ?next_token: ::String,
1197
+ ?max_results: ::Integer
1198
+ ) -> _ListTagsResponseSuccess
1199
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsResponseSuccess
1200
+
1201
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#put_backup_vault_access_policy-instance_method
1202
+ def put_backup_vault_access_policy: (
1203
+ backup_vault_name: ::String,
1204
+ ?policy: ::String
1205
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1206
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1207
+
1208
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#put_backup_vault_lock_configuration-instance_method
1209
+ def put_backup_vault_lock_configuration: (
1210
+ backup_vault_name: ::String,
1211
+ ?min_retention_days: ::Integer,
1212
+ ?max_retention_days: ::Integer,
1213
+ ?changeable_for_days: ::Integer
1214
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1215
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1216
+
1217
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#put_backup_vault_notifications-instance_method
1218
+ def put_backup_vault_notifications: (
1219
+ backup_vault_name: ::String,
1220
+ sns_topic_arn: ::String,
1221
+ 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")]
1222
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1223
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1224
+
1225
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#put_restore_validation_result-instance_method
1226
+ def put_restore_validation_result: (
1227
+ restore_job_id: ::String,
1228
+ validation_status: ("FAILED" | "SUCCESSFUL" | "TIMED_OUT" | "VALIDATING"),
1229
+ ?validation_status_message: ::String
1230
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1231
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1232
+
1233
+ interface _StartBackupJobResponseSuccess
1234
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartBackupJobOutput]
1235
+ def backup_job_id: () -> ::String
1236
+ def recovery_point_arn: () -> ::String
1237
+ def creation_date: () -> ::Time
1238
+ def is_parent: () -> bool
1239
+ end
1240
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#start_backup_job-instance_method
1241
+ def start_backup_job: (
1242
+ backup_vault_name: ::String,
1243
+ resource_arn: ::String,
1244
+ iam_role_arn: ::String,
1245
+ ?idempotency_token: ::String,
1246
+ ?start_window_minutes: ::Integer,
1247
+ ?complete_window_minutes: ::Integer,
1248
+ ?lifecycle: {
1249
+ move_to_cold_storage_after_days: ::Integer?,
1250
+ delete_after_days: ::Integer?,
1251
+ opt_in_to_archive_for_supported_resources: bool?
1252
+ },
1253
+ ?recovery_point_tags: Hash[::String, ::String],
1254
+ ?backup_options: Hash[::String, ::String]
1255
+ ) -> _StartBackupJobResponseSuccess
1256
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartBackupJobResponseSuccess
1257
+
1258
+ interface _StartCopyJobResponseSuccess
1259
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartCopyJobOutput]
1260
+ def copy_job_id: () -> ::String
1261
+ def creation_date: () -> ::Time
1262
+ def is_parent: () -> bool
1263
+ end
1264
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#start_copy_job-instance_method
1265
+ def start_copy_job: (
1266
+ recovery_point_arn: ::String,
1267
+ source_backup_vault_name: ::String,
1268
+ destination_backup_vault_arn: ::String,
1269
+ iam_role_arn: ::String,
1270
+ ?idempotency_token: ::String,
1271
+ ?lifecycle: {
1272
+ move_to_cold_storage_after_days: ::Integer?,
1273
+ delete_after_days: ::Integer?,
1274
+ opt_in_to_archive_for_supported_resources: bool?
1275
+ }
1276
+ ) -> _StartCopyJobResponseSuccess
1277
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartCopyJobResponseSuccess
1278
+
1279
+ interface _StartReportJobResponseSuccess
1280
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartReportJobOutput]
1281
+ def report_job_id: () -> ::String
1282
+ end
1283
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#start_report_job-instance_method
1284
+ def start_report_job: (
1285
+ report_plan_name: ::String,
1286
+ ?idempotency_token: ::String
1287
+ ) -> _StartReportJobResponseSuccess
1288
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartReportJobResponseSuccess
1289
+
1290
+ interface _StartRestoreJobResponseSuccess
1291
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartRestoreJobOutput]
1292
+ def restore_job_id: () -> ::String
1293
+ end
1294
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#start_restore_job-instance_method
1295
+ def start_restore_job: (
1296
+ recovery_point_arn: ::String,
1297
+ metadata: Hash[::String, ::String],
1298
+ ?iam_role_arn: ::String,
1299
+ ?idempotency_token: ::String,
1300
+ ?resource_type: ::String,
1301
+ ?copy_source_tags_to_restored_resource: bool
1302
+ ) -> _StartRestoreJobResponseSuccess
1303
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartRestoreJobResponseSuccess
1304
+
1305
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#stop_backup_job-instance_method
1306
+ def stop_backup_job: (
1307
+ backup_job_id: ::String
1308
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1309
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1310
+
1311
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#tag_resource-instance_method
1312
+ def tag_resource: (
1313
+ resource_arn: ::String,
1314
+ tags: Hash[::String, ::String]
1315
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1316
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1317
+
1318
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#untag_resource-instance_method
1319
+ def untag_resource: (
1320
+ resource_arn: ::String,
1321
+ tag_key_list: Array[::String]
1322
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1323
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1324
+
1325
+ interface _UpdateBackupPlanResponseSuccess
1326
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateBackupPlanOutput]
1327
+ def backup_plan_id: () -> ::String
1328
+ def backup_plan_arn: () -> ::String
1329
+ def creation_date: () -> ::Time
1330
+ def version_id: () -> ::String
1331
+ def advanced_backup_settings: () -> ::Array[Types::AdvancedBackupSetting]
1332
+ end
1333
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#update_backup_plan-instance_method
1334
+ def update_backup_plan: (
1335
+ backup_plan_id: ::String,
1336
+ backup_plan: {
1337
+ backup_plan_name: ::String,
1338
+ rules: Array[
1339
+ {
1340
+ rule_name: ::String,
1341
+ target_backup_vault_name: ::String,
1342
+ schedule_expression: ::String?,
1343
+ start_window_minutes: ::Integer?,
1344
+ completion_window_minutes: ::Integer?,
1345
+ lifecycle: {
1346
+ move_to_cold_storage_after_days: ::Integer?,
1347
+ delete_after_days: ::Integer?,
1348
+ opt_in_to_archive_for_supported_resources: bool?
1349
+ }?,
1350
+ recovery_point_tags: Hash[::String, ::String]?,
1351
+ copy_actions: Array[
1352
+ {
1353
+ lifecycle: {
1354
+ move_to_cold_storage_after_days: ::Integer?,
1355
+ delete_after_days: ::Integer?,
1356
+ opt_in_to_archive_for_supported_resources: bool?
1357
+ }?,
1358
+ destination_backup_vault_arn: ::String
1359
+ },
1360
+ ]?,
1361
+ enable_continuous_backup: bool?,
1362
+ schedule_expression_timezone: ::String?
1363
+ },
1364
+ ],
1365
+ advanced_backup_settings: Array[
1366
+ {
1367
+ resource_type: ::String?,
1368
+ backup_options: Hash[::String, ::String]?
1369
+ },
1370
+ ]?
1371
+ }
1372
+ ) -> _UpdateBackupPlanResponseSuccess
1373
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateBackupPlanResponseSuccess
1374
+
1375
+ interface _UpdateFrameworkResponseSuccess
1376
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateFrameworkOutput]
1377
+ def framework_name: () -> ::String
1378
+ def framework_arn: () -> ::String
1379
+ def creation_time: () -> ::Time
1380
+ end
1381
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#update_framework-instance_method
1382
+ def update_framework: (
1383
+ framework_name: ::String,
1384
+ ?framework_description: ::String,
1385
+ ?framework_controls: Array[
1386
+ {
1387
+ control_name: ::String,
1388
+ control_input_parameters: Array[
1389
+ {
1390
+ parameter_name: ::String?,
1391
+ parameter_value: ::String?
1392
+ },
1393
+ ]?,
1394
+ control_scope: {
1395
+ compliance_resource_ids: Array[::String]?,
1396
+ compliance_resource_types: Array[::String]?,
1397
+ tags: Hash[::String, ::String]?
1398
+ }?
1399
+ },
1400
+ ],
1401
+ ?idempotency_token: ::String
1402
+ ) -> _UpdateFrameworkResponseSuccess
1403
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateFrameworkResponseSuccess
1404
+
1405
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#update_global_settings-instance_method
1406
+ def update_global_settings: (
1407
+ ?global_settings: Hash[::String, ::String]
1408
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1409
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1410
+
1411
+ interface _UpdateRecoveryPointLifecycleResponseSuccess
1412
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRecoveryPointLifecycleOutput]
1413
+ def backup_vault_arn: () -> ::String
1414
+ def recovery_point_arn: () -> ::String
1415
+ def lifecycle: () -> Types::Lifecycle
1416
+ def calculated_lifecycle: () -> Types::CalculatedLifecycle
1417
+ end
1418
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#update_recovery_point_lifecycle-instance_method
1419
+ def update_recovery_point_lifecycle: (
1420
+ backup_vault_name: ::String,
1421
+ recovery_point_arn: ::String,
1422
+ ?lifecycle: {
1423
+ move_to_cold_storage_after_days: ::Integer?,
1424
+ delete_after_days: ::Integer?,
1425
+ opt_in_to_archive_for_supported_resources: bool?
1426
+ }
1427
+ ) -> _UpdateRecoveryPointLifecycleResponseSuccess
1428
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRecoveryPointLifecycleResponseSuccess
1429
+
1430
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#update_region_settings-instance_method
1431
+ def update_region_settings: (
1432
+ ?resource_type_opt_in_preference: Hash[::String, bool],
1433
+ ?resource_type_management_preference: Hash[::String, bool]
1434
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1435
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1436
+
1437
+ interface _UpdateReportPlanResponseSuccess
1438
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateReportPlanOutput]
1439
+ def report_plan_name: () -> ::String
1440
+ def report_plan_arn: () -> ::String
1441
+ def creation_time: () -> ::Time
1442
+ end
1443
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#update_report_plan-instance_method
1444
+ def update_report_plan: (
1445
+ report_plan_name: ::String,
1446
+ ?report_plan_description: ::String,
1447
+ ?report_delivery_channel: {
1448
+ s3_bucket_name: ::String,
1449
+ s3_key_prefix: ::String?,
1450
+ formats: Array[::String]?
1451
+ },
1452
+ ?report_setting: {
1453
+ report_template: ::String,
1454
+ framework_arns: Array[::String]?,
1455
+ number_of_frameworks: ::Integer?,
1456
+ accounts: Array[::String]?,
1457
+ organization_units: Array[::String]?,
1458
+ regions: Array[::String]?
1459
+ },
1460
+ ?idempotency_token: ::String
1461
+ ) -> _UpdateReportPlanResponseSuccess
1462
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateReportPlanResponseSuccess
1463
+
1464
+ interface _UpdateRestoreTestingPlanResponseSuccess
1465
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRestoreTestingPlanOutput]
1466
+ def creation_time: () -> ::Time
1467
+ def restore_testing_plan_arn: () -> ::String
1468
+ def restore_testing_plan_name: () -> ::String
1469
+ def update_time: () -> ::Time
1470
+ end
1471
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#update_restore_testing_plan-instance_method
1472
+ def update_restore_testing_plan: (
1473
+ restore_testing_plan: {
1474
+ recovery_point_selection: {
1475
+ algorithm: ("LATEST_WITHIN_WINDOW" | "RANDOM_WITHIN_WINDOW")?,
1476
+ exclude_vaults: Array[::String]?,
1477
+ include_vaults: Array[::String]?,
1478
+ recovery_point_types: Array[("CONTINUOUS" | "SNAPSHOT")]?,
1479
+ selection_window_days: ::Integer?
1480
+ }?,
1481
+ schedule_expression: ::String?,
1482
+ schedule_expression_timezone: ::String?,
1483
+ start_window_hours: ::Integer?
1484
+ },
1485
+ restore_testing_plan_name: ::String
1486
+ ) -> _UpdateRestoreTestingPlanResponseSuccess
1487
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRestoreTestingPlanResponseSuccess
1488
+
1489
+ interface _UpdateRestoreTestingSelectionResponseSuccess
1490
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRestoreTestingSelectionOutput]
1491
+ def creation_time: () -> ::Time
1492
+ def restore_testing_plan_arn: () -> ::String
1493
+ def restore_testing_plan_name: () -> ::String
1494
+ def restore_testing_selection_name: () -> ::String
1495
+ def update_time: () -> ::Time
1496
+ end
1497
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#update_restore_testing_selection-instance_method
1498
+ def update_restore_testing_selection: (
1499
+ restore_testing_plan_name: ::String,
1500
+ restore_testing_selection: {
1501
+ iam_role_arn: ::String?,
1502
+ protected_resource_arns: Array[::String]?,
1503
+ protected_resource_conditions: {
1504
+ string_equals: Array[
1505
+ {
1506
+ key: ::String,
1507
+ value: ::String
1508
+ },
1509
+ ]?,
1510
+ string_not_equals: Array[
1511
+ {
1512
+ key: ::String,
1513
+ value: ::String
1514
+ },
1515
+ ]?
1516
+ }?,
1517
+ restore_metadata_overrides: Hash[::String, ::String]?,
1518
+ validation_window_hours: ::Integer?
1519
+ },
1520
+ restore_testing_selection_name: ::String
1521
+ ) -> _UpdateRestoreTestingSelectionResponseSuccess
1522
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRestoreTestingSelectionResponseSuccess
1523
+ end
1524
+ end
1525
+ end
1526
+