aws-sdk-backup 1.100.0 → 1.101.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-backup/client.rb +46 -1
- data/lib/aws-sdk-backup/client_api.rb +7 -0
- data/lib/aws-sdk-backup/types.rb +59 -4
- data/lib/aws-sdk-backup.rb +1 -1
- data/sig/client.rbs +19 -8
- data/sig/types.rbs +6 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eda06adfa129cd2e06cc15e6badda7b77bb08402e345f8662b5a6b70c6bbfb95
|
|
4
|
+
data.tar.gz: 6ff4808f47e8602072b195458217344c60974d369b879534669ca8268c1340c4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ad12b2f8e9431bd94d0f9f7879044272942d281634281c611e941e2b1b544f950f3bd034a0919c06ade31ba718477ac3f16bfe9ccc6022b247379da7438d056c
|
|
7
|
+
data.tar.gz: 6f3533be05cff4819d4a3765ddae9b3912be01b84459730776276557705e544463c454790a92eb4590e923dbef08f7eb669c6846ec6a37b8997ab7e989b393d4
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.101.0 (2025-11-17)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - AWS Backup now supports specifying a logically air-gapped backup vault as a primary backup target in backup plans and on-demand backup jobs.
|
|
8
|
+
|
|
4
9
|
1.100.0 (2025-11-10)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.101.0
|
|
@@ -582,6 +582,7 @@ module Aws::Backup
|
|
|
582
582
|
# {
|
|
583
583
|
# rule_name: "BackupRuleName", # required
|
|
584
584
|
# target_backup_vault_name: "BackupVaultName", # required
|
|
585
|
+
# target_logically_air_gapped_backup_vault_arn: "ARN",
|
|
585
586
|
# schedule_expression: "CronExpression",
|
|
586
587
|
# start_window_minutes: 1,
|
|
587
588
|
# completion_window_minutes: 1,
|
|
@@ -589,6 +590,7 @@ module Aws::Backup
|
|
|
589
590
|
# move_to_cold_storage_after_days: 1,
|
|
590
591
|
# delete_after_days: 1,
|
|
591
592
|
# opt_in_to_archive_for_supported_resources: false,
|
|
593
|
+
# delete_after_event: "DELETE_AFTER_COPY", # accepts DELETE_AFTER_COPY
|
|
592
594
|
# },
|
|
593
595
|
# recovery_point_tags: {
|
|
594
596
|
# "TagKey" => "TagValue",
|
|
@@ -599,6 +601,7 @@ module Aws::Backup
|
|
|
599
601
|
# move_to_cold_storage_after_days: 1,
|
|
600
602
|
# delete_after_days: 1,
|
|
601
603
|
# opt_in_to_archive_for_supported_resources: false,
|
|
604
|
+
# delete_after_event: "DELETE_AFTER_COPY", # accepts DELETE_AFTER_COPY
|
|
602
605
|
# },
|
|
603
606
|
# destination_backup_vault_arn: "ARN", # required
|
|
604
607
|
# },
|
|
@@ -1742,6 +1745,7 @@ module Aws::Backup
|
|
|
1742
1745
|
# resp.recovery_point_lifecycle.move_to_cold_storage_after_days #=> Integer
|
|
1743
1746
|
# resp.recovery_point_lifecycle.delete_after_days #=> Integer
|
|
1744
1747
|
# resp.recovery_point_lifecycle.opt_in_to_archive_for_supported_resources #=> Boolean
|
|
1748
|
+
# resp.recovery_point_lifecycle.delete_after_event #=> String, one of "DELETE_AFTER_COPY"
|
|
1745
1749
|
# resp.backup_vault_arn #=> String
|
|
1746
1750
|
# resp.vault_type #=> String
|
|
1747
1751
|
# resp.vault_lock_state #=> String
|
|
@@ -1888,6 +1892,7 @@ module Aws::Backup
|
|
|
1888
1892
|
# resp.copy_job.destination_recovery_point_lifecycle.move_to_cold_storage_after_days #=> Integer
|
|
1889
1893
|
# resp.copy_job.destination_recovery_point_lifecycle.delete_after_days #=> Integer
|
|
1890
1894
|
# resp.copy_job.destination_recovery_point_lifecycle.opt_in_to_archive_for_supported_resources #=> Boolean
|
|
1895
|
+
# resp.copy_job.destination_recovery_point_lifecycle.delete_after_event #=> String, one of "DELETE_AFTER_COPY"
|
|
1891
1896
|
# resp.copy_job.resource_arn #=> String
|
|
1892
1897
|
# resp.copy_job.creation_date #=> Time
|
|
1893
1898
|
# resp.copy_job.completion_date #=> Time
|
|
@@ -1903,6 +1908,7 @@ module Aws::Backup
|
|
|
1903
1908
|
# resp.copy_job.created_by.backup_rule_name #=> String
|
|
1904
1909
|
# resp.copy_job.created_by.backup_rule_cron #=> String
|
|
1905
1910
|
# resp.copy_job.created_by.backup_rule_timezone #=> String
|
|
1911
|
+
# resp.copy_job.created_by_backup_job_id #=> String
|
|
1906
1912
|
# resp.copy_job.resource_type #=> String
|
|
1907
1913
|
# resp.copy_job.parent_job_id #=> String
|
|
1908
1914
|
# resp.copy_job.is_parent #=> Boolean
|
|
@@ -2129,6 +2135,7 @@ module Aws::Backup
|
|
|
2129
2135
|
# resp.lifecycle.move_to_cold_storage_after_days #=> Integer
|
|
2130
2136
|
# resp.lifecycle.delete_after_days #=> Integer
|
|
2131
2137
|
# resp.lifecycle.opt_in_to_archive_for_supported_resources #=> Boolean
|
|
2138
|
+
# resp.lifecycle.delete_after_event #=> String, one of "DELETE_AFTER_COPY"
|
|
2132
2139
|
# resp.encryption_key_arn #=> String
|
|
2133
2140
|
# resp.is_encrypted #=> Boolean
|
|
2134
2141
|
# resp.storage_class #=> String, one of "WARM", "COLD", "DELETED"
|
|
@@ -2507,12 +2514,14 @@ module Aws::Backup
|
|
|
2507
2514
|
# resp.backup_plan.rules #=> Array
|
|
2508
2515
|
# resp.backup_plan.rules[0].rule_name #=> String
|
|
2509
2516
|
# resp.backup_plan.rules[0].target_backup_vault_name #=> String
|
|
2517
|
+
# resp.backup_plan.rules[0].target_logically_air_gapped_backup_vault_arn #=> String
|
|
2510
2518
|
# resp.backup_plan.rules[0].schedule_expression #=> String
|
|
2511
2519
|
# resp.backup_plan.rules[0].start_window_minutes #=> Integer
|
|
2512
2520
|
# resp.backup_plan.rules[0].completion_window_minutes #=> Integer
|
|
2513
2521
|
# resp.backup_plan.rules[0].lifecycle.move_to_cold_storage_after_days #=> Integer
|
|
2514
2522
|
# resp.backup_plan.rules[0].lifecycle.delete_after_days #=> Integer
|
|
2515
2523
|
# resp.backup_plan.rules[0].lifecycle.opt_in_to_archive_for_supported_resources #=> Boolean
|
|
2524
|
+
# resp.backup_plan.rules[0].lifecycle.delete_after_event #=> String, one of "DELETE_AFTER_COPY"
|
|
2516
2525
|
# resp.backup_plan.rules[0].recovery_point_tags #=> Hash
|
|
2517
2526
|
# resp.backup_plan.rules[0].recovery_point_tags["TagKey"] #=> String
|
|
2518
2527
|
# resp.backup_plan.rules[0].rule_id #=> String
|
|
@@ -2520,6 +2529,7 @@ module Aws::Backup
|
|
|
2520
2529
|
# resp.backup_plan.rules[0].copy_actions[0].lifecycle.move_to_cold_storage_after_days #=> Integer
|
|
2521
2530
|
# resp.backup_plan.rules[0].copy_actions[0].lifecycle.delete_after_days #=> Integer
|
|
2522
2531
|
# resp.backup_plan.rules[0].copy_actions[0].lifecycle.opt_in_to_archive_for_supported_resources #=> Boolean
|
|
2532
|
+
# resp.backup_plan.rules[0].copy_actions[0].lifecycle.delete_after_event #=> String, one of "DELETE_AFTER_COPY"
|
|
2523
2533
|
# resp.backup_plan.rules[0].copy_actions[0].destination_backup_vault_arn #=> String
|
|
2524
2534
|
# resp.backup_plan.rules[0].enable_continuous_backup #=> Boolean
|
|
2525
2535
|
# resp.backup_plan.rules[0].schedule_expression_timezone #=> String
|
|
@@ -2576,12 +2586,14 @@ module Aws::Backup
|
|
|
2576
2586
|
# resp.backup_plan.rules #=> Array
|
|
2577
2587
|
# resp.backup_plan.rules[0].rule_name #=> String
|
|
2578
2588
|
# resp.backup_plan.rules[0].target_backup_vault_name #=> String
|
|
2589
|
+
# resp.backup_plan.rules[0].target_logically_air_gapped_backup_vault_arn #=> String
|
|
2579
2590
|
# resp.backup_plan.rules[0].schedule_expression #=> String
|
|
2580
2591
|
# resp.backup_plan.rules[0].start_window_minutes #=> Integer
|
|
2581
2592
|
# resp.backup_plan.rules[0].completion_window_minutes #=> Integer
|
|
2582
2593
|
# resp.backup_plan.rules[0].lifecycle.move_to_cold_storage_after_days #=> Integer
|
|
2583
2594
|
# resp.backup_plan.rules[0].lifecycle.delete_after_days #=> Integer
|
|
2584
2595
|
# resp.backup_plan.rules[0].lifecycle.opt_in_to_archive_for_supported_resources #=> Boolean
|
|
2596
|
+
# resp.backup_plan.rules[0].lifecycle.delete_after_event #=> String, one of "DELETE_AFTER_COPY"
|
|
2585
2597
|
# resp.backup_plan.rules[0].recovery_point_tags #=> Hash
|
|
2586
2598
|
# resp.backup_plan.rules[0].recovery_point_tags["TagKey"] #=> String
|
|
2587
2599
|
# resp.backup_plan.rules[0].rule_id #=> String
|
|
@@ -2589,6 +2601,7 @@ module Aws::Backup
|
|
|
2589
2601
|
# resp.backup_plan.rules[0].copy_actions[0].lifecycle.move_to_cold_storage_after_days #=> Integer
|
|
2590
2602
|
# resp.backup_plan.rules[0].copy_actions[0].lifecycle.delete_after_days #=> Integer
|
|
2591
2603
|
# resp.backup_plan.rules[0].copy_actions[0].lifecycle.opt_in_to_archive_for_supported_resources #=> Boolean
|
|
2604
|
+
# resp.backup_plan.rules[0].copy_actions[0].lifecycle.delete_after_event #=> String, one of "DELETE_AFTER_COPY"
|
|
2592
2605
|
# resp.backup_plan.rules[0].copy_actions[0].destination_backup_vault_arn #=> String
|
|
2593
2606
|
# resp.backup_plan.rules[0].enable_continuous_backup #=> Boolean
|
|
2594
2607
|
# resp.backup_plan.rules[0].schedule_expression_timezone #=> String
|
|
@@ -2630,12 +2643,14 @@ module Aws::Backup
|
|
|
2630
2643
|
# resp.backup_plan_document.rules #=> Array
|
|
2631
2644
|
# resp.backup_plan_document.rules[0].rule_name #=> String
|
|
2632
2645
|
# resp.backup_plan_document.rules[0].target_backup_vault_name #=> String
|
|
2646
|
+
# resp.backup_plan_document.rules[0].target_logically_air_gapped_backup_vault_arn #=> String
|
|
2633
2647
|
# resp.backup_plan_document.rules[0].schedule_expression #=> String
|
|
2634
2648
|
# resp.backup_plan_document.rules[0].start_window_minutes #=> Integer
|
|
2635
2649
|
# resp.backup_plan_document.rules[0].completion_window_minutes #=> Integer
|
|
2636
2650
|
# resp.backup_plan_document.rules[0].lifecycle.move_to_cold_storage_after_days #=> Integer
|
|
2637
2651
|
# resp.backup_plan_document.rules[0].lifecycle.delete_after_days #=> Integer
|
|
2638
2652
|
# resp.backup_plan_document.rules[0].lifecycle.opt_in_to_archive_for_supported_resources #=> Boolean
|
|
2653
|
+
# resp.backup_plan_document.rules[0].lifecycle.delete_after_event #=> String, one of "DELETE_AFTER_COPY"
|
|
2639
2654
|
# resp.backup_plan_document.rules[0].recovery_point_tags #=> Hash
|
|
2640
2655
|
# resp.backup_plan_document.rules[0].recovery_point_tags["TagKey"] #=> String
|
|
2641
2656
|
# resp.backup_plan_document.rules[0].rule_id #=> String
|
|
@@ -2643,6 +2658,7 @@ module Aws::Backup
|
|
|
2643
2658
|
# resp.backup_plan_document.rules[0].copy_actions[0].lifecycle.move_to_cold_storage_after_days #=> Integer
|
|
2644
2659
|
# resp.backup_plan_document.rules[0].copy_actions[0].lifecycle.delete_after_days #=> Integer
|
|
2645
2660
|
# resp.backup_plan_document.rules[0].copy_actions[0].lifecycle.opt_in_to_archive_for_supported_resources #=> Boolean
|
|
2661
|
+
# resp.backup_plan_document.rules[0].copy_actions[0].lifecycle.delete_after_event #=> String, one of "DELETE_AFTER_COPY"
|
|
2646
2662
|
# resp.backup_plan_document.rules[0].copy_actions[0].destination_backup_vault_arn #=> String
|
|
2647
2663
|
# resp.backup_plan_document.rules[0].enable_continuous_backup #=> Boolean
|
|
2648
2664
|
# resp.backup_plan_document.rules[0].schedule_expression_timezone #=> String
|
|
@@ -3439,6 +3455,7 @@ module Aws::Backup
|
|
|
3439
3455
|
# resp.backup_jobs[0].recovery_point_lifecycle.move_to_cold_storage_after_days #=> Integer
|
|
3440
3456
|
# resp.backup_jobs[0].recovery_point_lifecycle.delete_after_days #=> Integer
|
|
3441
3457
|
# resp.backup_jobs[0].recovery_point_lifecycle.opt_in_to_archive_for_supported_resources #=> Boolean
|
|
3458
|
+
# resp.backup_jobs[0].recovery_point_lifecycle.delete_after_event #=> String, one of "DELETE_AFTER_COPY"
|
|
3442
3459
|
# resp.backup_jobs[0].encryption_key_arn #=> String
|
|
3443
3460
|
# resp.backup_jobs[0].is_encrypted #=> Boolean
|
|
3444
3461
|
# resp.backup_jobs[0].resource_arn #=> String
|
|
@@ -3968,6 +3985,9 @@ module Aws::Backup
|
|
|
3968
3985
|
#
|
|
3969
3986
|
# [1]: https://docs.aws.amazon.com/aws-backup/latest/devguide/monitoring.html
|
|
3970
3987
|
#
|
|
3988
|
+
# @option params [String] :by_source_recovery_point_arn
|
|
3989
|
+
# Filters copy jobs by the specified source recovery point ARN.
|
|
3990
|
+
#
|
|
3971
3991
|
# @return [Types::ListCopyJobsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3972
3992
|
#
|
|
3973
3993
|
# * {Types::ListCopyJobsOutput#copy_jobs #copy_jobs} => Array<Types::CopyJob>
|
|
@@ -3991,6 +4011,7 @@ module Aws::Backup
|
|
|
3991
4011
|
# by_complete_after: Time.now,
|
|
3992
4012
|
# by_parent_job_id: "string",
|
|
3993
4013
|
# by_message_category: "string",
|
|
4014
|
+
# by_source_recovery_point_arn: "string",
|
|
3994
4015
|
# })
|
|
3995
4016
|
#
|
|
3996
4017
|
# @example Response structure
|
|
@@ -4008,6 +4029,7 @@ module Aws::Backup
|
|
|
4008
4029
|
# resp.copy_jobs[0].destination_recovery_point_lifecycle.move_to_cold_storage_after_days #=> Integer
|
|
4009
4030
|
# resp.copy_jobs[0].destination_recovery_point_lifecycle.delete_after_days #=> Integer
|
|
4010
4031
|
# resp.copy_jobs[0].destination_recovery_point_lifecycle.opt_in_to_archive_for_supported_resources #=> Boolean
|
|
4032
|
+
# resp.copy_jobs[0].destination_recovery_point_lifecycle.delete_after_event #=> String, one of "DELETE_AFTER_COPY"
|
|
4011
4033
|
# resp.copy_jobs[0].resource_arn #=> String
|
|
4012
4034
|
# resp.copy_jobs[0].creation_date #=> Time
|
|
4013
4035
|
# resp.copy_jobs[0].completion_date #=> Time
|
|
@@ -4023,6 +4045,7 @@ module Aws::Backup
|
|
|
4023
4045
|
# resp.copy_jobs[0].created_by.backup_rule_name #=> String
|
|
4024
4046
|
# resp.copy_jobs[0].created_by.backup_rule_cron #=> String
|
|
4025
4047
|
# resp.copy_jobs[0].created_by.backup_rule_timezone #=> String
|
|
4048
|
+
# resp.copy_jobs[0].created_by_backup_job_id #=> String
|
|
4026
4049
|
# resp.copy_jobs[0].resource_type #=> String
|
|
4027
4050
|
# resp.copy_jobs[0].parent_job_id #=> String
|
|
4028
4051
|
# resp.copy_jobs[0].is_parent #=> Boolean
|
|
@@ -4460,6 +4483,7 @@ module Aws::Backup
|
|
|
4460
4483
|
# resp.recovery_points[0].lifecycle.move_to_cold_storage_after_days #=> Integer
|
|
4461
4484
|
# resp.recovery_points[0].lifecycle.delete_after_days #=> Integer
|
|
4462
4485
|
# resp.recovery_points[0].lifecycle.opt_in_to_archive_for_supported_resources #=> Boolean
|
|
4486
|
+
# resp.recovery_points[0].lifecycle.delete_after_event #=> String, one of "DELETE_AFTER_COPY"
|
|
4463
4487
|
# resp.recovery_points[0].encryption_key_arn #=> String
|
|
4464
4488
|
# resp.recovery_points[0].is_encrypted #=> Boolean
|
|
4465
4489
|
# resp.recovery_points[0].last_restore_time #=> Time
|
|
@@ -5547,6 +5571,14 @@ module Aws::Backup
|
|
|
5547
5571
|
# vaults are identified by names that are unique to the account used to
|
|
5548
5572
|
# create them and the Amazon Web Services Region where they are created.
|
|
5549
5573
|
#
|
|
5574
|
+
# @option params [String] :logically_air_gapped_backup_vault_arn
|
|
5575
|
+
# The ARN of a logically air-gapped vault. ARN must be in the same
|
|
5576
|
+
# account and Region. If provided, supported fully managed resources
|
|
5577
|
+
# back up directly to logically air-gapped vault, while other supported
|
|
5578
|
+
# resources create a temporary (billable) snapshot in backup vault, then
|
|
5579
|
+
# copy it to logically air-gapped vault. Unsupported resources only back
|
|
5580
|
+
# up to the specified backup vault.
|
|
5581
|
+
#
|
|
5550
5582
|
# @option params [required, String] :resource_arn
|
|
5551
5583
|
# An Amazon Resource Name (ARN) that uniquely identifies a resource. The
|
|
5552
5584
|
# format of the ARN depends on the resource type.
|
|
@@ -5652,6 +5684,7 @@ module Aws::Backup
|
|
|
5652
5684
|
#
|
|
5653
5685
|
# resp = client.start_backup_job({
|
|
5654
5686
|
# backup_vault_name: "BackupVaultName", # required
|
|
5687
|
+
# logically_air_gapped_backup_vault_arn: "ARN",
|
|
5655
5688
|
# resource_arn: "ARN", # required
|
|
5656
5689
|
# iam_role_arn: "IAMRoleArn", # required
|
|
5657
5690
|
# idempotency_token: "string",
|
|
@@ -5661,6 +5694,7 @@ module Aws::Backup
|
|
|
5661
5694
|
# move_to_cold_storage_after_days: 1,
|
|
5662
5695
|
# delete_after_days: 1,
|
|
5663
5696
|
# opt_in_to_archive_for_supported_resources: false,
|
|
5697
|
+
# delete_after_event: "DELETE_AFTER_COPY", # accepts DELETE_AFTER_COPY
|
|
5664
5698
|
# },
|
|
5665
5699
|
# recovery_point_tags: {
|
|
5666
5700
|
# "TagKey" => "TagValue",
|
|
@@ -5767,6 +5801,7 @@ module Aws::Backup
|
|
|
5767
5801
|
# move_to_cold_storage_after_days: 1,
|
|
5768
5802
|
# delete_after_days: 1,
|
|
5769
5803
|
# opt_in_to_archive_for_supported_resources: false,
|
|
5804
|
+
# delete_after_event: "DELETE_AFTER_COPY", # accepts DELETE_AFTER_COPY
|
|
5770
5805
|
# },
|
|
5771
5806
|
# })
|
|
5772
5807
|
#
|
|
@@ -6113,6 +6148,7 @@ module Aws::Backup
|
|
|
6113
6148
|
# {
|
|
6114
6149
|
# rule_name: "BackupRuleName", # required
|
|
6115
6150
|
# target_backup_vault_name: "BackupVaultName", # required
|
|
6151
|
+
# target_logically_air_gapped_backup_vault_arn: "ARN",
|
|
6116
6152
|
# schedule_expression: "CronExpression",
|
|
6117
6153
|
# start_window_minutes: 1,
|
|
6118
6154
|
# completion_window_minutes: 1,
|
|
@@ -6120,6 +6156,7 @@ module Aws::Backup
|
|
|
6120
6156
|
# move_to_cold_storage_after_days: 1,
|
|
6121
6157
|
# delete_after_days: 1,
|
|
6122
6158
|
# opt_in_to_archive_for_supported_resources: false,
|
|
6159
|
+
# delete_after_event: "DELETE_AFTER_COPY", # accepts DELETE_AFTER_COPY
|
|
6123
6160
|
# },
|
|
6124
6161
|
# recovery_point_tags: {
|
|
6125
6162
|
# "TagKey" => "TagValue",
|
|
@@ -6130,6 +6167,7 @@ module Aws::Backup
|
|
|
6130
6167
|
# move_to_cold_storage_after_days: 1,
|
|
6131
6168
|
# delete_after_days: 1,
|
|
6132
6169
|
# opt_in_to_archive_for_supported_resources: false,
|
|
6170
|
+
# delete_after_event: "DELETE_AFTER_COPY", # accepts DELETE_AFTER_COPY
|
|
6133
6171
|
# },
|
|
6134
6172
|
# destination_backup_vault_arn: "ARN", # required
|
|
6135
6173
|
# },
|
|
@@ -6261,6 +6299,11 @@ module Aws::Backup
|
|
|
6261
6299
|
# Values can be true or false. Example: `update-global-settings
|
|
6262
6300
|
# --global-settings isMpaEnabled=false --region us-west-2`.
|
|
6263
6301
|
#
|
|
6302
|
+
# A value for Backup Service-Linked Role creation, styled
|
|
6303
|
+
# as`isDelegatedAdministratorEnabled`. Values can be true or false.
|
|
6304
|
+
# Example: `update-global-settings --global-settings
|
|
6305
|
+
# isDelegatedAdministratorEnabled=false --region us-west-2`.
|
|
6306
|
+
#
|
|
6264
6307
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
6265
6308
|
#
|
|
6266
6309
|
# @example Request syntax with placeholder values
|
|
@@ -6404,6 +6447,7 @@ module Aws::Backup
|
|
|
6404
6447
|
# move_to_cold_storage_after_days: 1,
|
|
6405
6448
|
# delete_after_days: 1,
|
|
6406
6449
|
# opt_in_to_archive_for_supported_resources: false,
|
|
6450
|
+
# delete_after_event: "DELETE_AFTER_COPY", # accepts DELETE_AFTER_COPY
|
|
6407
6451
|
# },
|
|
6408
6452
|
# })
|
|
6409
6453
|
#
|
|
@@ -6414,6 +6458,7 @@ module Aws::Backup
|
|
|
6414
6458
|
# resp.lifecycle.move_to_cold_storage_after_days #=> Integer
|
|
6415
6459
|
# resp.lifecycle.delete_after_days #=> Integer
|
|
6416
6460
|
# resp.lifecycle.opt_in_to_archive_for_supported_resources #=> Boolean
|
|
6461
|
+
# resp.lifecycle.delete_after_event #=> String, one of "DELETE_AFTER_COPY"
|
|
6417
6462
|
# resp.calculated_lifecycle.move_to_cold_storage_at #=> Time
|
|
6418
6463
|
# resp.calculated_lifecycle.delete_at #=> Time
|
|
6419
6464
|
#
|
|
@@ -6710,7 +6755,7 @@ module Aws::Backup
|
|
|
6710
6755
|
tracer: tracer
|
|
6711
6756
|
)
|
|
6712
6757
|
context[:gem_name] = 'aws-sdk-backup'
|
|
6713
|
-
context[:gem_version] = '1.
|
|
6758
|
+
context[:gem_version] = '1.101.0'
|
|
6714
6759
|
Seahorse::Client::Request.new(handlers, context)
|
|
6715
6760
|
end
|
|
6716
6761
|
|
|
@@ -199,6 +199,7 @@ module Aws::Backup
|
|
|
199
199
|
LegalHoldStatus = Shapes::StringShape.new(name: 'LegalHoldStatus')
|
|
200
200
|
LegalHoldsList = Shapes::ListShape.new(name: 'LegalHoldsList')
|
|
201
201
|
Lifecycle = Shapes::StructureShape.new(name: 'Lifecycle')
|
|
202
|
+
LifecycleDeleteAfterEvent = Shapes::StringShape.new(name: 'LifecycleDeleteAfterEvent')
|
|
202
203
|
LimitExceededException = Shapes::StructureShape.new(name: 'LimitExceededException')
|
|
203
204
|
ListBackupJobSummariesInput = Shapes::StructureShape.new(name: 'ListBackupJobSummariesInput')
|
|
204
205
|
ListBackupJobSummariesOutput = Shapes::StructureShape.new(name: 'ListBackupJobSummariesOutput')
|
|
@@ -487,6 +488,7 @@ module Aws::Backup
|
|
|
487
488
|
|
|
488
489
|
BackupRule.add_member(:rule_name, Shapes::ShapeRef.new(shape: BackupRuleName, required: true, location_name: "RuleName"))
|
|
489
490
|
BackupRule.add_member(:target_backup_vault_name, Shapes::ShapeRef.new(shape: BackupVaultName, required: true, location_name: "TargetBackupVaultName"))
|
|
491
|
+
BackupRule.add_member(:target_logically_air_gapped_backup_vault_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "TargetLogicallyAirGappedBackupVaultArn"))
|
|
490
492
|
BackupRule.add_member(:schedule_expression, Shapes::ShapeRef.new(shape: CronExpression, location_name: "ScheduleExpression"))
|
|
491
493
|
BackupRule.add_member(:start_window_minutes, Shapes::ShapeRef.new(shape: WindowMinutes, location_name: "StartWindowMinutes"))
|
|
492
494
|
BackupRule.add_member(:completion_window_minutes, Shapes::ShapeRef.new(shape: WindowMinutes, location_name: "CompletionWindowMinutes"))
|
|
@@ -501,6 +503,7 @@ module Aws::Backup
|
|
|
501
503
|
|
|
502
504
|
BackupRuleInput.add_member(:rule_name, Shapes::ShapeRef.new(shape: BackupRuleName, required: true, location_name: "RuleName"))
|
|
503
505
|
BackupRuleInput.add_member(:target_backup_vault_name, Shapes::ShapeRef.new(shape: BackupVaultName, required: true, location_name: "TargetBackupVaultName"))
|
|
506
|
+
BackupRuleInput.add_member(:target_logically_air_gapped_backup_vault_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "TargetLogicallyAirGappedBackupVaultArn"))
|
|
504
507
|
BackupRuleInput.add_member(:schedule_expression, Shapes::ShapeRef.new(shape: CronExpression, location_name: "ScheduleExpression"))
|
|
505
508
|
BackupRuleInput.add_member(:start_window_minutes, Shapes::ShapeRef.new(shape: WindowMinutes, location_name: "StartWindowMinutes"))
|
|
506
509
|
BackupRuleInput.add_member(:completion_window_minutes, Shapes::ShapeRef.new(shape: WindowMinutes, location_name: "CompletionWindowMinutes"))
|
|
@@ -624,6 +627,7 @@ module Aws::Backup
|
|
|
624
627
|
CopyJob.add_member(:backup_size_in_bytes, Shapes::ShapeRef.new(shape: Long, location_name: "BackupSizeInBytes"))
|
|
625
628
|
CopyJob.add_member(:iam_role_arn, Shapes::ShapeRef.new(shape: IAMRoleArn, location_name: "IamRoleArn"))
|
|
626
629
|
CopyJob.add_member(:created_by, Shapes::ShapeRef.new(shape: RecoveryPointCreator, location_name: "CreatedBy"))
|
|
630
|
+
CopyJob.add_member(:created_by_backup_job_id, Shapes::ShapeRef.new(shape: string, location_name: "CreatedByBackupJobId"))
|
|
627
631
|
CopyJob.add_member(:resource_type, Shapes::ShapeRef.new(shape: ResourceType, location_name: "ResourceType"))
|
|
628
632
|
CopyJob.add_member(:parent_job_id, Shapes::ShapeRef.new(shape: string, location_name: "ParentJobId"))
|
|
629
633
|
CopyJob.add_member(:is_parent, Shapes::ShapeRef.new(shape: boolean, location_name: "IsParent"))
|
|
@@ -1243,6 +1247,7 @@ module Aws::Backup
|
|
|
1243
1247
|
Lifecycle.add_member(:move_to_cold_storage_after_days, Shapes::ShapeRef.new(shape: Long, location_name: "MoveToColdStorageAfterDays"))
|
|
1244
1248
|
Lifecycle.add_member(:delete_after_days, Shapes::ShapeRef.new(shape: Long, location_name: "DeleteAfterDays"))
|
|
1245
1249
|
Lifecycle.add_member(:opt_in_to_archive_for_supported_resources, Shapes::ShapeRef.new(shape: Boolean, location_name: "OptInToArchiveForSupportedResources"))
|
|
1250
|
+
Lifecycle.add_member(:delete_after_event, Shapes::ShapeRef.new(shape: LifecycleDeleteAfterEvent, location_name: "DeleteAfterEvent"))
|
|
1246
1251
|
Lifecycle.struct_class = Types::Lifecycle
|
|
1247
1252
|
|
|
1248
1253
|
LimitExceededException.add_member(:code, Shapes::ShapeRef.new(shape: string, location_name: "Code"))
|
|
@@ -1356,6 +1361,7 @@ module Aws::Backup
|
|
|
1356
1361
|
ListCopyJobsInput.add_member(:by_complete_after, Shapes::ShapeRef.new(shape: timestamp, location: "querystring", location_name: "completeAfter"))
|
|
1357
1362
|
ListCopyJobsInput.add_member(:by_parent_job_id, Shapes::ShapeRef.new(shape: string, location: "querystring", location_name: "parentJobId"))
|
|
1358
1363
|
ListCopyJobsInput.add_member(:by_message_category, Shapes::ShapeRef.new(shape: string, location: "querystring", location_name: "messageCategory"))
|
|
1364
|
+
ListCopyJobsInput.add_member(:by_source_recovery_point_arn, Shapes::ShapeRef.new(shape: string, location: "querystring", location_name: "sourceRecoveryPointArn"))
|
|
1359
1365
|
ListCopyJobsInput.struct_class = Types::ListCopyJobsInput
|
|
1360
1366
|
|
|
1361
1367
|
ListCopyJobsOutput.add_member(:copy_jobs, Shapes::ShapeRef.new(shape: CopyJobsList, location_name: "CopyJobs"))
|
|
@@ -1876,6 +1882,7 @@ module Aws::Backup
|
|
|
1876
1882
|
ServiceUnavailableException.struct_class = Types::ServiceUnavailableException
|
|
1877
1883
|
|
|
1878
1884
|
StartBackupJobInput.add_member(:backup_vault_name, Shapes::ShapeRef.new(shape: BackupVaultName, required: true, location_name: "BackupVaultName"))
|
|
1885
|
+
StartBackupJobInput.add_member(:logically_air_gapped_backup_vault_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "LogicallyAirGappedBackupVaultArn"))
|
|
1879
1886
|
StartBackupJobInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "ResourceArn"))
|
|
1880
1887
|
StartBackupJobInput.add_member(:iam_role_arn, Shapes::ShapeRef.new(shape: IAMRoleArn, required: true, location_name: "IamRoleArn"))
|
|
1881
1888
|
StartBackupJobInput.add_member(:idempotency_token, Shapes::ShapeRef.new(shape: string, location_name: "IdempotencyToken", metadata: {"idempotencyToken" => true}))
|
data/lib/aws-sdk-backup/types.rb
CHANGED
|
@@ -643,6 +643,15 @@ module Aws::Backup
|
|
|
643
643
|
# created.
|
|
644
644
|
# @return [String]
|
|
645
645
|
#
|
|
646
|
+
# @!attribute [rw] target_logically_air_gapped_backup_vault_arn
|
|
647
|
+
# The ARN of a logically air-gapped vault. ARN must be in the same
|
|
648
|
+
# account and Region. If provided, supported fully managed resources
|
|
649
|
+
# back up directly to logically air-gapped vault, while other
|
|
650
|
+
# supported resources create a temporary (billable) snapshot in backup
|
|
651
|
+
# vault, then copy it to logically air-gapped vault. Unsupported
|
|
652
|
+
# resources only back up to the specified backup vault.
|
|
653
|
+
# @return [String]
|
|
654
|
+
#
|
|
646
655
|
# @!attribute [rw] schedule_expression
|
|
647
656
|
# A cron expression in UTC specifying when Backup initiates a backup
|
|
648
657
|
# job. When no CRON expression is provided, Backup will use the
|
|
@@ -750,6 +759,7 @@ module Aws::Backup
|
|
|
750
759
|
class BackupRule < Struct.new(
|
|
751
760
|
:rule_name,
|
|
752
761
|
:target_backup_vault_name,
|
|
762
|
+
:target_logically_air_gapped_backup_vault_arn,
|
|
753
763
|
:schedule_expression,
|
|
754
764
|
:start_window_minutes,
|
|
755
765
|
:completion_window_minutes,
|
|
@@ -778,6 +788,15 @@ module Aws::Backup
|
|
|
778
788
|
# created.
|
|
779
789
|
# @return [String]
|
|
780
790
|
#
|
|
791
|
+
# @!attribute [rw] target_logically_air_gapped_backup_vault_arn
|
|
792
|
+
# The ARN of a logically air-gapped vault. ARN must be in the same
|
|
793
|
+
# account and Region. If provided, supported fully managed resources
|
|
794
|
+
# back up directly to logically air-gapped vault, while other
|
|
795
|
+
# supported resources create a temporary (billable) snapshot in backup
|
|
796
|
+
# vault, then copy it to logically air-gapped vault. Unsupported
|
|
797
|
+
# resources only back up to the specified backup vault.
|
|
798
|
+
# @return [String]
|
|
799
|
+
#
|
|
781
800
|
# @!attribute [rw] schedule_expression
|
|
782
801
|
# A CRON expression in UTC specifying when Backup initiates a backup
|
|
783
802
|
# job. When no CRON expression is provided, Backup will use the
|
|
@@ -870,6 +889,7 @@ module Aws::Backup
|
|
|
870
889
|
class BackupRuleInput < Struct.new(
|
|
871
890
|
:rule_name,
|
|
872
891
|
:target_backup_vault_name,
|
|
892
|
+
:target_logically_air_gapped_backup_vault_arn,
|
|
873
893
|
:schedule_expression,
|
|
874
894
|
:start_window_minutes,
|
|
875
895
|
:completion_window_minutes,
|
|
@@ -1572,6 +1592,12 @@ module Aws::Backup
|
|
|
1572
1592
|
# to initiate the recovery point backup.
|
|
1573
1593
|
# @return [Types::RecoveryPointCreator]
|
|
1574
1594
|
#
|
|
1595
|
+
# @!attribute [rw] created_by_backup_job_id
|
|
1596
|
+
# The backup job ID that initiated this copy job. Only applicable to
|
|
1597
|
+
# scheduled copy jobs and automatic copy jobs to logically air-gapped
|
|
1598
|
+
# vault.
|
|
1599
|
+
# @return [String]
|
|
1600
|
+
#
|
|
1575
1601
|
# @!attribute [rw] resource_type
|
|
1576
1602
|
# The type of Amazon Web Services resource to be copied; for example,
|
|
1577
1603
|
# an Amazon Elastic Block Store (Amazon EBS) volume or an Amazon
|
|
@@ -1651,6 +1677,7 @@ module Aws::Backup
|
|
|
1651
1677
|
:backup_size_in_bytes,
|
|
1652
1678
|
:iam_role_arn,
|
|
1653
1679
|
:created_by,
|
|
1680
|
+
:created_by_backup_job_id,
|
|
1654
1681
|
:resource_type,
|
|
1655
1682
|
:parent_job_id,
|
|
1656
1683
|
:is_parent,
|
|
@@ -3281,8 +3308,9 @@ module Aws::Backup
|
|
|
3281
3308
|
class DescribeGlobalSettingsInput < Aws::EmptyStructure; end
|
|
3282
3309
|
|
|
3283
3310
|
# @!attribute [rw] global_settings
|
|
3284
|
-
# The status of the flags `isCrossAccountBackupEnabled
|
|
3285
|
-
# `isMpaEnabled` ('Mpa' refers to multi-party approval)
|
|
3311
|
+
# The status of the flags `isCrossAccountBackupEnabled`,
|
|
3312
|
+
# `isMpaEnabled` ('Mpa' refers to multi-party approval), and
|
|
3313
|
+
# `isDelegatedAdministratorEnabled`.
|
|
3286
3314
|
# @return [Hash<String,String>]
|
|
3287
3315
|
#
|
|
3288
3316
|
# @!attribute [rw] last_update_time
|
|
@@ -5155,12 +5183,19 @@ module Aws::Backup
|
|
|
5155
5183
|
# lifecycle settings.
|
|
5156
5184
|
# @return [Boolean]
|
|
5157
5185
|
#
|
|
5186
|
+
# @!attribute [rw] delete_after_event
|
|
5187
|
+
# The event after which a recovery point is deleted. A recovery point
|
|
5188
|
+
# with both `DeleteAfterDays` and `DeleteAfterEvent` will delete after
|
|
5189
|
+
# whichever condition is satisfied first. Not valid as an input.
|
|
5190
|
+
# @return [String]
|
|
5191
|
+
#
|
|
5158
5192
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/Lifecycle AWS API Documentation
|
|
5159
5193
|
#
|
|
5160
5194
|
class Lifecycle < Struct.new(
|
|
5161
5195
|
:move_to_cold_storage_after_days,
|
|
5162
5196
|
:delete_after_days,
|
|
5163
|
-
:opt_in_to_archive_for_supported_resources
|
|
5197
|
+
:opt_in_to_archive_for_supported_resources,
|
|
5198
|
+
:delete_after_event)
|
|
5164
5199
|
SENSITIVE = []
|
|
5165
5200
|
include Aws::Structure
|
|
5166
5201
|
end
|
|
@@ -5965,6 +6000,10 @@ module Aws::Backup
|
|
|
5965
6000
|
# [1]: https://docs.aws.amazon.com/aws-backup/latest/devguide/monitoring.html
|
|
5966
6001
|
# @return [String]
|
|
5967
6002
|
#
|
|
6003
|
+
# @!attribute [rw] by_source_recovery_point_arn
|
|
6004
|
+
# Filters copy jobs by the specified source recovery point ARN.
|
|
6005
|
+
# @return [String]
|
|
6006
|
+
#
|
|
5968
6007
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/ListCopyJobsInput AWS API Documentation
|
|
5969
6008
|
#
|
|
5970
6009
|
class ListCopyJobsInput < Struct.new(
|
|
@@ -5980,7 +6019,8 @@ module Aws::Backup
|
|
|
5980
6019
|
:by_complete_before,
|
|
5981
6020
|
:by_complete_after,
|
|
5982
6021
|
:by_parent_job_id,
|
|
5983
|
-
:by_message_category
|
|
6022
|
+
:by_message_category,
|
|
6023
|
+
:by_source_recovery_point_arn)
|
|
5984
6024
|
SENSITIVE = []
|
|
5985
6025
|
include Aws::Structure
|
|
5986
6026
|
end
|
|
@@ -9067,6 +9107,15 @@ module Aws::Backup
|
|
|
9067
9107
|
# created.
|
|
9068
9108
|
# @return [String]
|
|
9069
9109
|
#
|
|
9110
|
+
# @!attribute [rw] logically_air_gapped_backup_vault_arn
|
|
9111
|
+
# The ARN of a logically air-gapped vault. ARN must be in the same
|
|
9112
|
+
# account and Region. If provided, supported fully managed resources
|
|
9113
|
+
# back up directly to logically air-gapped vault, while other
|
|
9114
|
+
# supported resources create a temporary (billable) snapshot in backup
|
|
9115
|
+
# vault, then copy it to logically air-gapped vault. Unsupported
|
|
9116
|
+
# resources only back up to the specified backup vault.
|
|
9117
|
+
# @return [String]
|
|
9118
|
+
#
|
|
9070
9119
|
# @!attribute [rw] resource_arn
|
|
9071
9120
|
# An Amazon Resource Name (ARN) that uniquely identifies a resource.
|
|
9072
9121
|
# The format of the ARN depends on the resource type.
|
|
@@ -9176,6 +9225,7 @@ module Aws::Backup
|
|
|
9176
9225
|
#
|
|
9177
9226
|
class StartBackupJobInput < Struct.new(
|
|
9178
9227
|
:backup_vault_name,
|
|
9228
|
+
:logically_air_gapped_backup_vault_arn,
|
|
9179
9229
|
:resource_arn,
|
|
9180
9230
|
:iam_role_arn,
|
|
9181
9231
|
:idempotency_token,
|
|
@@ -9694,6 +9744,11 @@ module Aws::Backup
|
|
|
9694
9744
|
# A value for Multi-party approval, styled as "Mpa": `isMpaEnabled`.
|
|
9695
9745
|
# Values can be true or false. Example: `update-global-settings
|
|
9696
9746
|
# --global-settings isMpaEnabled=false --region us-west-2`.
|
|
9747
|
+
#
|
|
9748
|
+
# A value for Backup Service-Linked Role creation, styled
|
|
9749
|
+
# as`isDelegatedAdministratorEnabled`. Values can be true or false.
|
|
9750
|
+
# Example: `update-global-settings --global-settings
|
|
9751
|
+
# isDelegatedAdministratorEnabled=false --region us-west-2`.
|
|
9697
9752
|
# @return [Hash<String,String>]
|
|
9698
9753
|
#
|
|
9699
9754
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/UpdateGlobalSettingsInput AWS API Documentation
|
data/lib/aws-sdk-backup.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -113,13 +113,15 @@ module Aws
|
|
|
113
113
|
{
|
|
114
114
|
rule_name: ::String,
|
|
115
115
|
target_backup_vault_name: ::String,
|
|
116
|
+
target_logically_air_gapped_backup_vault_arn: ::String?,
|
|
116
117
|
schedule_expression: ::String?,
|
|
117
118
|
start_window_minutes: ::Integer?,
|
|
118
119
|
completion_window_minutes: ::Integer?,
|
|
119
120
|
lifecycle: {
|
|
120
121
|
move_to_cold_storage_after_days: ::Integer?,
|
|
121
122
|
delete_after_days: ::Integer?,
|
|
122
|
-
opt_in_to_archive_for_supported_resources: bool
|
|
123
|
+
opt_in_to_archive_for_supported_resources: bool?,
|
|
124
|
+
delete_after_event: ("DELETE_AFTER_COPY")?
|
|
123
125
|
}?,
|
|
124
126
|
recovery_point_tags: Hash[::String, ::String]?,
|
|
125
127
|
copy_actions: Array[
|
|
@@ -127,7 +129,8 @@ module Aws
|
|
|
127
129
|
lifecycle: {
|
|
128
130
|
move_to_cold_storage_after_days: ::Integer?,
|
|
129
131
|
delete_after_days: ::Integer?,
|
|
130
|
-
opt_in_to_archive_for_supported_resources: bool
|
|
132
|
+
opt_in_to_archive_for_supported_resources: bool?,
|
|
133
|
+
delete_after_event: ("DELETE_AFTER_COPY")?
|
|
131
134
|
}?,
|
|
132
135
|
destination_backup_vault_arn: ::String
|
|
133
136
|
},
|
|
@@ -1062,7 +1065,8 @@ module Aws
|
|
|
1062
1065
|
?by_complete_before: ::Time,
|
|
1063
1066
|
?by_complete_after: ::Time,
|
|
1064
1067
|
?by_parent_job_id: ::String,
|
|
1065
|
-
?by_message_category: ::String
|
|
1068
|
+
?by_message_category: ::String,
|
|
1069
|
+
?by_source_recovery_point_arn: ::String
|
|
1066
1070
|
) -> _ListCopyJobsResponseSuccess
|
|
1067
1071
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCopyJobsResponseSuccess
|
|
1068
1072
|
|
|
@@ -1363,6 +1367,7 @@ module Aws
|
|
|
1363
1367
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#start_backup_job-instance_method
|
|
1364
1368
|
def start_backup_job: (
|
|
1365
1369
|
backup_vault_name: ::String,
|
|
1370
|
+
?logically_air_gapped_backup_vault_arn: ::String,
|
|
1366
1371
|
resource_arn: ::String,
|
|
1367
1372
|
iam_role_arn: ::String,
|
|
1368
1373
|
?idempotency_token: ::String,
|
|
@@ -1371,7 +1376,8 @@ module Aws
|
|
|
1371
1376
|
?lifecycle: {
|
|
1372
1377
|
move_to_cold_storage_after_days: ::Integer?,
|
|
1373
1378
|
delete_after_days: ::Integer?,
|
|
1374
|
-
opt_in_to_archive_for_supported_resources: bool
|
|
1379
|
+
opt_in_to_archive_for_supported_resources: bool?,
|
|
1380
|
+
delete_after_event: ("DELETE_AFTER_COPY")?
|
|
1375
1381
|
},
|
|
1376
1382
|
?recovery_point_tags: Hash[::String, ::String],
|
|
1377
1383
|
?backup_options: Hash[::String, ::String],
|
|
@@ -1395,7 +1401,8 @@ module Aws
|
|
|
1395
1401
|
?lifecycle: {
|
|
1396
1402
|
move_to_cold_storage_after_days: ::Integer?,
|
|
1397
1403
|
delete_after_days: ::Integer?,
|
|
1398
|
-
opt_in_to_archive_for_supported_resources: bool
|
|
1404
|
+
opt_in_to_archive_for_supported_resources: bool?,
|
|
1405
|
+
delete_after_event: ("DELETE_AFTER_COPY")?
|
|
1399
1406
|
}
|
|
1400
1407
|
) -> _StartCopyJobResponseSuccess
|
|
1401
1408
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartCopyJobResponseSuccess
|
|
@@ -1463,13 +1470,15 @@ module Aws
|
|
|
1463
1470
|
{
|
|
1464
1471
|
rule_name: ::String,
|
|
1465
1472
|
target_backup_vault_name: ::String,
|
|
1473
|
+
target_logically_air_gapped_backup_vault_arn: ::String?,
|
|
1466
1474
|
schedule_expression: ::String?,
|
|
1467
1475
|
start_window_minutes: ::Integer?,
|
|
1468
1476
|
completion_window_minutes: ::Integer?,
|
|
1469
1477
|
lifecycle: {
|
|
1470
1478
|
move_to_cold_storage_after_days: ::Integer?,
|
|
1471
1479
|
delete_after_days: ::Integer?,
|
|
1472
|
-
opt_in_to_archive_for_supported_resources: bool
|
|
1480
|
+
opt_in_to_archive_for_supported_resources: bool?,
|
|
1481
|
+
delete_after_event: ("DELETE_AFTER_COPY")?
|
|
1473
1482
|
}?,
|
|
1474
1483
|
recovery_point_tags: Hash[::String, ::String]?,
|
|
1475
1484
|
copy_actions: Array[
|
|
@@ -1477,7 +1486,8 @@ module Aws
|
|
|
1477
1486
|
lifecycle: {
|
|
1478
1487
|
move_to_cold_storage_after_days: ::Integer?,
|
|
1479
1488
|
delete_after_days: ::Integer?,
|
|
1480
|
-
opt_in_to_archive_for_supported_resources: bool
|
|
1489
|
+
opt_in_to_archive_for_supported_resources: bool?,
|
|
1490
|
+
delete_after_event: ("DELETE_AFTER_COPY")?
|
|
1481
1491
|
}?,
|
|
1482
1492
|
destination_backup_vault_arn: ::String
|
|
1483
1493
|
},
|
|
@@ -1567,7 +1577,8 @@ module Aws
|
|
|
1567
1577
|
?lifecycle: {
|
|
1568
1578
|
move_to_cold_storage_after_days: ::Integer?,
|
|
1569
1579
|
delete_after_days: ::Integer?,
|
|
1570
|
-
opt_in_to_archive_for_supported_resources: bool
|
|
1580
|
+
opt_in_to_archive_for_supported_resources: bool?,
|
|
1581
|
+
delete_after_event: ("DELETE_AFTER_COPY")?
|
|
1571
1582
|
}
|
|
1572
1583
|
) -> _UpdateRecoveryPointLifecycleResponseSuccess
|
|
1573
1584
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRecoveryPointLifecycleResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -113,6 +113,7 @@ module Aws::Backup
|
|
|
113
113
|
class BackupRule
|
|
114
114
|
attr_accessor rule_name: ::String
|
|
115
115
|
attr_accessor target_backup_vault_name: ::String
|
|
116
|
+
attr_accessor target_logically_air_gapped_backup_vault_arn: ::String
|
|
116
117
|
attr_accessor schedule_expression: ::String
|
|
117
118
|
attr_accessor start_window_minutes: ::Integer
|
|
118
119
|
attr_accessor completion_window_minutes: ::Integer
|
|
@@ -129,6 +130,7 @@ module Aws::Backup
|
|
|
129
130
|
class BackupRuleInput
|
|
130
131
|
attr_accessor rule_name: ::String
|
|
131
132
|
attr_accessor target_backup_vault_name: ::String
|
|
133
|
+
attr_accessor target_logically_air_gapped_backup_vault_arn: ::String
|
|
132
134
|
attr_accessor schedule_expression: ::String
|
|
133
135
|
attr_accessor start_window_minutes: ::Integer
|
|
134
136
|
attr_accessor completion_window_minutes: ::Integer
|
|
@@ -261,6 +263,7 @@ module Aws::Backup
|
|
|
261
263
|
attr_accessor backup_size_in_bytes: ::Integer
|
|
262
264
|
attr_accessor iam_role_arn: ::String
|
|
263
265
|
attr_accessor created_by: Types::RecoveryPointCreator
|
|
266
|
+
attr_accessor created_by_backup_job_id: ::String
|
|
264
267
|
attr_accessor resource_type: ::String
|
|
265
268
|
attr_accessor parent_job_id: ::String
|
|
266
269
|
attr_accessor is_parent: bool
|
|
@@ -1056,6 +1059,7 @@ module Aws::Backup
|
|
|
1056
1059
|
attr_accessor move_to_cold_storage_after_days: ::Integer
|
|
1057
1060
|
attr_accessor delete_after_days: ::Integer
|
|
1058
1061
|
attr_accessor opt_in_to_archive_for_supported_resources: bool
|
|
1062
|
+
attr_accessor delete_after_event: ("DELETE_AFTER_COPY")
|
|
1059
1063
|
SENSITIVE: []
|
|
1060
1064
|
end
|
|
1061
1065
|
|
|
@@ -1205,6 +1209,7 @@ module Aws::Backup
|
|
|
1205
1209
|
attr_accessor by_complete_after: ::Time
|
|
1206
1210
|
attr_accessor by_parent_job_id: ::String
|
|
1207
1211
|
attr_accessor by_message_category: ::String
|
|
1212
|
+
attr_accessor by_source_recovery_point_arn: ::String
|
|
1208
1213
|
SENSITIVE: []
|
|
1209
1214
|
end
|
|
1210
1215
|
|
|
@@ -1817,6 +1822,7 @@ module Aws::Backup
|
|
|
1817
1822
|
|
|
1818
1823
|
class StartBackupJobInput
|
|
1819
1824
|
attr_accessor backup_vault_name: ::String
|
|
1825
|
+
attr_accessor logically_air_gapped_backup_vault_arn: ::String
|
|
1820
1826
|
attr_accessor resource_arn: ::String
|
|
1821
1827
|
attr_accessor iam_role_arn: ::String
|
|
1822
1828
|
attr_accessor idempotency_token: ::String
|