aws-sdk-backup 1.96.0 → 1.97.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 +64 -1
- data/lib/aws-sdk-backup/client_api.rb +22 -0
- data/lib/aws-sdk-backup/endpoint_parameters.rb +4 -4
- data/lib/aws-sdk-backup/types.rb +213 -2
- data/lib/aws-sdk-backup.rb +1 -1
- data/sig/client.rbs +7 -0
- data/sig/types.rbs +22 -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: 95e8480771cff8ebcdd96671001890ca5276d19b73c19198ad6b7193b2f41e45
|
4
|
+
data.tar.gz: 150229f8fc88a0fcecc6f3cf072064e61e31075988aaa4fc6b6f6baa90ce4d19
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3a5480f26c2f7f66bc3fff20ec06fedfc59b332620b132338d2cad8cfaf30bdec8d48eadc10fdd7913698b5765936a56148a19b3b0ef9cc007cce2077e3676da
|
7
|
+
data.tar.gz: f9735ddc65a6b5b80dd0c8a0db1da1579199b1d3d3aba97e0e55d06b6651892608acba29861c7651ce07cd9028d848399ba5f1a3f345e70a72a251f5bd8213a8
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.97.0 (2025-10-14)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - The AWS Backup job attribute extension enhancement helps customers better understand the plan that initiated each job, and the properties of the resource each job creates.
|
8
|
+
|
4
9
|
1.96.0 (2025-10-06)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.97.0
|
@@ -1691,8 +1691,13 @@ module Aws::Backup
|
|
1691
1691
|
# * {Types::DescribeBackupJobOutput#account_id #account_id} => String
|
1692
1692
|
# * {Types::DescribeBackupJobOutput#backup_job_id #backup_job_id} => String
|
1693
1693
|
# * {Types::DescribeBackupJobOutput#backup_vault_name #backup_vault_name} => String
|
1694
|
+
# * {Types::DescribeBackupJobOutput#recovery_point_lifecycle #recovery_point_lifecycle} => Types::Lifecycle
|
1694
1695
|
# * {Types::DescribeBackupJobOutput#backup_vault_arn #backup_vault_arn} => String
|
1696
|
+
# * {Types::DescribeBackupJobOutput#vault_type #vault_type} => String
|
1697
|
+
# * {Types::DescribeBackupJobOutput#vault_lock_state #vault_lock_state} => String
|
1695
1698
|
# * {Types::DescribeBackupJobOutput#recovery_point_arn #recovery_point_arn} => String
|
1699
|
+
# * {Types::DescribeBackupJobOutput#encryption_key_arn #encryption_key_arn} => String
|
1700
|
+
# * {Types::DescribeBackupJobOutput#is_encrypted #is_encrypted} => Boolean
|
1696
1701
|
# * {Types::DescribeBackupJobOutput#resource_arn #resource_arn} => String
|
1697
1702
|
# * {Types::DescribeBackupJobOutput#creation_date #creation_date} => Time
|
1698
1703
|
# * {Types::DescribeBackupJobOutput#completion_date #completion_date} => Time
|
@@ -1727,8 +1732,15 @@ module Aws::Backup
|
|
1727
1732
|
# resp.account_id #=> String
|
1728
1733
|
# resp.backup_job_id #=> String
|
1729
1734
|
# resp.backup_vault_name #=> String
|
1735
|
+
# resp.recovery_point_lifecycle.move_to_cold_storage_after_days #=> Integer
|
1736
|
+
# resp.recovery_point_lifecycle.delete_after_days #=> Integer
|
1737
|
+
# resp.recovery_point_lifecycle.opt_in_to_archive_for_supported_resources #=> Boolean
|
1730
1738
|
# resp.backup_vault_arn #=> String
|
1739
|
+
# resp.vault_type #=> String
|
1740
|
+
# resp.vault_lock_state #=> String
|
1731
1741
|
# resp.recovery_point_arn #=> String
|
1742
|
+
# resp.encryption_key_arn #=> String
|
1743
|
+
# resp.is_encrypted #=> Boolean
|
1732
1744
|
# resp.resource_arn #=> String
|
1733
1745
|
# resp.creation_date #=> Time
|
1734
1746
|
# resp.completion_date #=> Time
|
@@ -1739,8 +1751,12 @@ module Aws::Backup
|
|
1739
1751
|
# resp.iam_role_arn #=> String
|
1740
1752
|
# resp.created_by.backup_plan_id #=> String
|
1741
1753
|
# resp.created_by.backup_plan_arn #=> String
|
1754
|
+
# resp.created_by.backup_plan_name #=> String
|
1742
1755
|
# resp.created_by.backup_plan_version #=> String
|
1743
1756
|
# resp.created_by.backup_rule_id #=> String
|
1757
|
+
# resp.created_by.backup_rule_name #=> String
|
1758
|
+
# resp.created_by.backup_rule_cron #=> String
|
1759
|
+
# resp.created_by.backup_rule_timezone #=> String
|
1744
1760
|
# resp.resource_type #=> String
|
1745
1761
|
# resp.bytes_transferred #=> Integer
|
1746
1762
|
# resp.expected_completion_date #=> Time
|
@@ -1856,7 +1872,13 @@ module Aws::Backup
|
|
1856
1872
|
# resp.copy_job.source_backup_vault_arn #=> String
|
1857
1873
|
# resp.copy_job.source_recovery_point_arn #=> String
|
1858
1874
|
# resp.copy_job.destination_backup_vault_arn #=> String
|
1875
|
+
# resp.copy_job.destination_vault_type #=> String
|
1876
|
+
# resp.copy_job.destination_vault_lock_state #=> String
|
1859
1877
|
# resp.copy_job.destination_recovery_point_arn #=> String
|
1878
|
+
# resp.copy_job.destination_encryption_key_arn #=> String
|
1879
|
+
# resp.copy_job.destination_recovery_point_lifecycle.move_to_cold_storage_after_days #=> Integer
|
1880
|
+
# resp.copy_job.destination_recovery_point_lifecycle.delete_after_days #=> Integer
|
1881
|
+
# resp.copy_job.destination_recovery_point_lifecycle.opt_in_to_archive_for_supported_resources #=> Boolean
|
1860
1882
|
# resp.copy_job.resource_arn #=> String
|
1861
1883
|
# resp.copy_job.creation_date #=> Time
|
1862
1884
|
# resp.copy_job.completion_date #=> Time
|
@@ -1866,8 +1888,12 @@ module Aws::Backup
|
|
1866
1888
|
# resp.copy_job.iam_role_arn #=> String
|
1867
1889
|
# resp.copy_job.created_by.backup_plan_id #=> String
|
1868
1890
|
# resp.copy_job.created_by.backup_plan_arn #=> String
|
1891
|
+
# resp.copy_job.created_by.backup_plan_name #=> String
|
1869
1892
|
# resp.copy_job.created_by.backup_plan_version #=> String
|
1870
1893
|
# resp.copy_job.created_by.backup_rule_id #=> String
|
1894
|
+
# resp.copy_job.created_by.backup_rule_name #=> String
|
1895
|
+
# resp.copy_job.created_by.backup_rule_cron #=> String
|
1896
|
+
# resp.copy_job.created_by.backup_rule_timezone #=> String
|
1871
1897
|
# resp.copy_job.resource_type #=> String
|
1872
1898
|
# resp.copy_job.parent_job_id #=> String
|
1873
1899
|
# resp.copy_job.is_parent #=> Boolean
|
@@ -2075,8 +2101,12 @@ module Aws::Backup
|
|
2075
2101
|
# resp.resource_type #=> String
|
2076
2102
|
# resp.created_by.backup_plan_id #=> String
|
2077
2103
|
# resp.created_by.backup_plan_arn #=> String
|
2104
|
+
# resp.created_by.backup_plan_name #=> String
|
2078
2105
|
# resp.created_by.backup_plan_version #=> String
|
2079
2106
|
# resp.created_by.backup_rule_id #=> String
|
2107
|
+
# resp.created_by.backup_rule_name #=> String
|
2108
|
+
# resp.created_by.backup_rule_cron #=> String
|
2109
|
+
# resp.created_by.backup_rule_timezone #=> String
|
2080
2110
|
# resp.iam_role_arn #=> String
|
2081
2111
|
# resp.status #=> String, one of "COMPLETED", "PARTIAL", "DELETING", "EXPIRED", "AVAILABLE", "STOPPED", "CREATING"
|
2082
2112
|
# resp.status_message #=> String
|
@@ -2237,6 +2267,8 @@ module Aws::Backup
|
|
2237
2267
|
# * {Types::DescribeRestoreJobOutput#account_id #account_id} => String
|
2238
2268
|
# * {Types::DescribeRestoreJobOutput#restore_job_id #restore_job_id} => String
|
2239
2269
|
# * {Types::DescribeRestoreJobOutput#recovery_point_arn #recovery_point_arn} => String
|
2270
|
+
# * {Types::DescribeRestoreJobOutput#source_resource_arn #source_resource_arn} => String
|
2271
|
+
# * {Types::DescribeRestoreJobOutput#backup_vault_arn #backup_vault_arn} => String
|
2240
2272
|
# * {Types::DescribeRestoreJobOutput#creation_date #creation_date} => Time
|
2241
2273
|
# * {Types::DescribeRestoreJobOutput#completion_date #completion_date} => Time
|
2242
2274
|
# * {Types::DescribeRestoreJobOutput#status #status} => String
|
@@ -2265,6 +2297,8 @@ module Aws::Backup
|
|
2265
2297
|
# resp.account_id #=> String
|
2266
2298
|
# resp.restore_job_id #=> String
|
2267
2299
|
# resp.recovery_point_arn #=> String
|
2300
|
+
# resp.source_resource_arn #=> String
|
2301
|
+
# resp.backup_vault_arn #=> String
|
2268
2302
|
# resp.creation_date #=> Time
|
2269
2303
|
# resp.completion_date #=> Time
|
2270
2304
|
# resp.status #=> String, one of "PENDING", "RUNNING", "COMPLETED", "ABORTED", "FAILED"
|
@@ -3384,7 +3418,14 @@ module Aws::Backup
|
|
3384
3418
|
# resp.backup_jobs[0].backup_job_id #=> String
|
3385
3419
|
# resp.backup_jobs[0].backup_vault_name #=> String
|
3386
3420
|
# resp.backup_jobs[0].backup_vault_arn #=> String
|
3421
|
+
# resp.backup_jobs[0].vault_type #=> String
|
3422
|
+
# resp.backup_jobs[0].vault_lock_state #=> String
|
3387
3423
|
# resp.backup_jobs[0].recovery_point_arn #=> String
|
3424
|
+
# resp.backup_jobs[0].recovery_point_lifecycle.move_to_cold_storage_after_days #=> Integer
|
3425
|
+
# resp.backup_jobs[0].recovery_point_lifecycle.delete_after_days #=> Integer
|
3426
|
+
# resp.backup_jobs[0].recovery_point_lifecycle.opt_in_to_archive_for_supported_resources #=> Boolean
|
3427
|
+
# resp.backup_jobs[0].encryption_key_arn #=> String
|
3428
|
+
# resp.backup_jobs[0].is_encrypted #=> Boolean
|
3388
3429
|
# resp.backup_jobs[0].resource_arn #=> String
|
3389
3430
|
# resp.backup_jobs[0].creation_date #=> Time
|
3390
3431
|
# resp.backup_jobs[0].completion_date #=> Time
|
@@ -3395,8 +3436,12 @@ module Aws::Backup
|
|
3395
3436
|
# resp.backup_jobs[0].iam_role_arn #=> String
|
3396
3437
|
# resp.backup_jobs[0].created_by.backup_plan_id #=> String
|
3397
3438
|
# resp.backup_jobs[0].created_by.backup_plan_arn #=> String
|
3439
|
+
# resp.backup_jobs[0].created_by.backup_plan_name #=> String
|
3398
3440
|
# resp.backup_jobs[0].created_by.backup_plan_version #=> String
|
3399
3441
|
# resp.backup_jobs[0].created_by.backup_rule_id #=> String
|
3442
|
+
# resp.backup_jobs[0].created_by.backup_rule_name #=> String
|
3443
|
+
# resp.backup_jobs[0].created_by.backup_rule_cron #=> String
|
3444
|
+
# resp.backup_jobs[0].created_by.backup_rule_timezone #=> String
|
3400
3445
|
# resp.backup_jobs[0].expected_completion_date #=> Time
|
3401
3446
|
# resp.backup_jobs[0].start_by #=> Time
|
3402
3447
|
# resp.backup_jobs[0].resource_type #=> String
|
@@ -3940,7 +3985,13 @@ module Aws::Backup
|
|
3940
3985
|
# resp.copy_jobs[0].source_backup_vault_arn #=> String
|
3941
3986
|
# resp.copy_jobs[0].source_recovery_point_arn #=> String
|
3942
3987
|
# resp.copy_jobs[0].destination_backup_vault_arn #=> String
|
3988
|
+
# resp.copy_jobs[0].destination_vault_type #=> String
|
3989
|
+
# resp.copy_jobs[0].destination_vault_lock_state #=> String
|
3943
3990
|
# resp.copy_jobs[0].destination_recovery_point_arn #=> String
|
3991
|
+
# resp.copy_jobs[0].destination_encryption_key_arn #=> String
|
3992
|
+
# resp.copy_jobs[0].destination_recovery_point_lifecycle.move_to_cold_storage_after_days #=> Integer
|
3993
|
+
# resp.copy_jobs[0].destination_recovery_point_lifecycle.delete_after_days #=> Integer
|
3994
|
+
# resp.copy_jobs[0].destination_recovery_point_lifecycle.opt_in_to_archive_for_supported_resources #=> Boolean
|
3944
3995
|
# resp.copy_jobs[0].resource_arn #=> String
|
3945
3996
|
# resp.copy_jobs[0].creation_date #=> Time
|
3946
3997
|
# resp.copy_jobs[0].completion_date #=> Time
|
@@ -3950,8 +4001,12 @@ module Aws::Backup
|
|
3950
4001
|
# resp.copy_jobs[0].iam_role_arn #=> String
|
3951
4002
|
# resp.copy_jobs[0].created_by.backup_plan_id #=> String
|
3952
4003
|
# resp.copy_jobs[0].created_by.backup_plan_arn #=> String
|
4004
|
+
# resp.copy_jobs[0].created_by.backup_plan_name #=> String
|
3953
4005
|
# resp.copy_jobs[0].created_by.backup_plan_version #=> String
|
3954
4006
|
# resp.copy_jobs[0].created_by.backup_rule_id #=> String
|
4007
|
+
# resp.copy_jobs[0].created_by.backup_rule_name #=> String
|
4008
|
+
# resp.copy_jobs[0].created_by.backup_rule_cron #=> String
|
4009
|
+
# resp.copy_jobs[0].created_by.backup_rule_timezone #=> String
|
3955
4010
|
# resp.copy_jobs[0].resource_type #=> String
|
3956
4011
|
# resp.copy_jobs[0].parent_job_id #=> String
|
3957
4012
|
# resp.copy_jobs[0].is_parent #=> Boolean
|
@@ -4371,8 +4426,12 @@ module Aws::Backup
|
|
4371
4426
|
# resp.recovery_points[0].resource_type #=> String
|
4372
4427
|
# resp.recovery_points[0].created_by.backup_plan_id #=> String
|
4373
4428
|
# resp.recovery_points[0].created_by.backup_plan_arn #=> String
|
4429
|
+
# resp.recovery_points[0].created_by.backup_plan_name #=> String
|
4374
4430
|
# resp.recovery_points[0].created_by.backup_plan_version #=> String
|
4375
4431
|
# resp.recovery_points[0].created_by.backup_rule_id #=> String
|
4432
|
+
# resp.recovery_points[0].created_by.backup_rule_name #=> String
|
4433
|
+
# resp.recovery_points[0].created_by.backup_rule_cron #=> String
|
4434
|
+
# resp.recovery_points[0].created_by.backup_rule_timezone #=> String
|
4376
4435
|
# resp.recovery_points[0].iam_role_arn #=> String
|
4377
4436
|
# resp.recovery_points[0].status #=> String, one of "COMPLETED", "PARTIAL", "DELETING", "EXPIRED", "AVAILABLE", "STOPPED", "CREATING"
|
4378
4437
|
# resp.recovery_points[0].status_message #=> String
|
@@ -4927,6 +4986,8 @@ module Aws::Backup
|
|
4927
4986
|
# resp.restore_jobs[0].account_id #=> String
|
4928
4987
|
# resp.restore_jobs[0].restore_job_id #=> String
|
4929
4988
|
# resp.restore_jobs[0].recovery_point_arn #=> String
|
4989
|
+
# resp.restore_jobs[0].source_resource_arn #=> String
|
4990
|
+
# resp.restore_jobs[0].backup_vault_arn #=> String
|
4930
4991
|
# resp.restore_jobs[0].creation_date #=> Time
|
4931
4992
|
# resp.restore_jobs[0].completion_date #=> Time
|
4932
4993
|
# resp.restore_jobs[0].status #=> String, one of "PENDING", "RUNNING", "COMPLETED", "ABORTED", "FAILED"
|
@@ -5010,6 +5071,8 @@ module Aws::Backup
|
|
5010
5071
|
# resp.restore_jobs[0].account_id #=> String
|
5011
5072
|
# resp.restore_jobs[0].restore_job_id #=> String
|
5012
5073
|
# resp.restore_jobs[0].recovery_point_arn #=> String
|
5074
|
+
# resp.restore_jobs[0].source_resource_arn #=> String
|
5075
|
+
# resp.restore_jobs[0].backup_vault_arn #=> String
|
5013
5076
|
# resp.restore_jobs[0].creation_date #=> Time
|
5014
5077
|
# resp.restore_jobs[0].completion_date #=> Time
|
5015
5078
|
# resp.restore_jobs[0].status #=> String, one of "PENDING", "RUNNING", "COMPLETED", "ABORTED", "FAILED"
|
@@ -6620,7 +6683,7 @@ module Aws::Backup
|
|
6620
6683
|
tracer: tracer
|
6621
6684
|
)
|
6622
6685
|
context[:gem_name] = 'aws-sdk-backup'
|
6623
|
-
context[:gem_version] = '1.
|
6686
|
+
context[:gem_version] = '1.97.0'
|
6624
6687
|
Seahorse::Client::Request.new(handlers, context)
|
6625
6688
|
end
|
6626
6689
|
|
@@ -405,7 +405,12 @@ module Aws::Backup
|
|
405
405
|
BackupJob.add_member(:backup_job_id, Shapes::ShapeRef.new(shape: string, location_name: "BackupJobId"))
|
406
406
|
BackupJob.add_member(:backup_vault_name, Shapes::ShapeRef.new(shape: BackupVaultName, location_name: "BackupVaultName"))
|
407
407
|
BackupJob.add_member(:backup_vault_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "BackupVaultArn"))
|
408
|
+
BackupJob.add_member(:vault_type, Shapes::ShapeRef.new(shape: string, location_name: "VaultType"))
|
409
|
+
BackupJob.add_member(:vault_lock_state, Shapes::ShapeRef.new(shape: string, location_name: "VaultLockState"))
|
408
410
|
BackupJob.add_member(:recovery_point_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "RecoveryPointArn"))
|
411
|
+
BackupJob.add_member(:recovery_point_lifecycle, Shapes::ShapeRef.new(shape: Lifecycle, location_name: "RecoveryPointLifecycle"))
|
412
|
+
BackupJob.add_member(:encryption_key_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "EncryptionKeyArn"))
|
413
|
+
BackupJob.add_member(:is_encrypted, Shapes::ShapeRef.new(shape: boolean, location_name: "IsEncrypted"))
|
409
414
|
BackupJob.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "ResourceArn"))
|
410
415
|
BackupJob.add_member(:creation_date, Shapes::ShapeRef.new(shape: timestamp, location_name: "CreationDate"))
|
411
416
|
BackupJob.add_member(:completion_date, Shapes::ShapeRef.new(shape: timestamp, location_name: "CompletionDate"))
|
@@ -604,7 +609,11 @@ module Aws::Backup
|
|
604
609
|
CopyJob.add_member(:source_backup_vault_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "SourceBackupVaultArn"))
|
605
610
|
CopyJob.add_member(:source_recovery_point_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "SourceRecoveryPointArn"))
|
606
611
|
CopyJob.add_member(:destination_backup_vault_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "DestinationBackupVaultArn"))
|
612
|
+
CopyJob.add_member(:destination_vault_type, Shapes::ShapeRef.new(shape: string, location_name: "DestinationVaultType"))
|
613
|
+
CopyJob.add_member(:destination_vault_lock_state, Shapes::ShapeRef.new(shape: string, location_name: "DestinationVaultLockState"))
|
607
614
|
CopyJob.add_member(:destination_recovery_point_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "DestinationRecoveryPointArn"))
|
615
|
+
CopyJob.add_member(:destination_encryption_key_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "DestinationEncryptionKeyArn"))
|
616
|
+
CopyJob.add_member(:destination_recovery_point_lifecycle, Shapes::ShapeRef.new(shape: Lifecycle, location_name: "DestinationRecoveryPointLifecycle"))
|
608
617
|
CopyJob.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "ResourceArn"))
|
609
618
|
CopyJob.add_member(:creation_date, Shapes::ShapeRef.new(shape: timestamp, location_name: "CreationDate"))
|
610
619
|
CopyJob.add_member(:completion_date, Shapes::ShapeRef.new(shape: timestamp, location_name: "CompletionDate"))
|
@@ -818,8 +827,13 @@ module Aws::Backup
|
|
818
827
|
DescribeBackupJobOutput.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "AccountId"))
|
819
828
|
DescribeBackupJobOutput.add_member(:backup_job_id, Shapes::ShapeRef.new(shape: string, location_name: "BackupJobId"))
|
820
829
|
DescribeBackupJobOutput.add_member(:backup_vault_name, Shapes::ShapeRef.new(shape: BackupVaultName, location_name: "BackupVaultName"))
|
830
|
+
DescribeBackupJobOutput.add_member(:recovery_point_lifecycle, Shapes::ShapeRef.new(shape: Lifecycle, location_name: "RecoveryPointLifecycle"))
|
821
831
|
DescribeBackupJobOutput.add_member(:backup_vault_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "BackupVaultArn"))
|
832
|
+
DescribeBackupJobOutput.add_member(:vault_type, Shapes::ShapeRef.new(shape: string, location_name: "VaultType"))
|
833
|
+
DescribeBackupJobOutput.add_member(:vault_lock_state, Shapes::ShapeRef.new(shape: string, location_name: "VaultLockState"))
|
822
834
|
DescribeBackupJobOutput.add_member(:recovery_point_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "RecoveryPointArn"))
|
835
|
+
DescribeBackupJobOutput.add_member(:encryption_key_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "EncryptionKeyArn"))
|
836
|
+
DescribeBackupJobOutput.add_member(:is_encrypted, Shapes::ShapeRef.new(shape: boolean, location_name: "IsEncrypted"))
|
823
837
|
DescribeBackupJobOutput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "ResourceArn"))
|
824
838
|
DescribeBackupJobOutput.add_member(:creation_date, Shapes::ShapeRef.new(shape: timestamp, location_name: "CreationDate"))
|
825
839
|
DescribeBackupJobOutput.add_member(:completion_date, Shapes::ShapeRef.new(shape: timestamp, location_name: "CompletionDate"))
|
@@ -963,6 +977,8 @@ module Aws::Backup
|
|
963
977
|
DescribeRestoreJobOutput.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "AccountId"))
|
964
978
|
DescribeRestoreJobOutput.add_member(:restore_job_id, Shapes::ShapeRef.new(shape: string, location_name: "RestoreJobId"))
|
965
979
|
DescribeRestoreJobOutput.add_member(:recovery_point_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "RecoveryPointArn"))
|
980
|
+
DescribeRestoreJobOutput.add_member(:source_resource_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "SourceResourceArn"))
|
981
|
+
DescribeRestoreJobOutput.add_member(:backup_vault_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "BackupVaultArn"))
|
966
982
|
DescribeRestoreJobOutput.add_member(:creation_date, Shapes::ShapeRef.new(shape: timestamp, location_name: "CreationDate"))
|
967
983
|
DescribeRestoreJobOutput.add_member(:completion_date, Shapes::ShapeRef.new(shape: timestamp, location_name: "CompletionDate"))
|
968
984
|
DescribeRestoreJobOutput.add_member(:status, Shapes::ShapeRef.new(shape: RestoreJobStatus, location_name: "Status"))
|
@@ -1611,8 +1627,12 @@ module Aws::Backup
|
|
1611
1627
|
|
1612
1628
|
RecoveryPointCreator.add_member(:backup_plan_id, Shapes::ShapeRef.new(shape: string, location_name: "BackupPlanId"))
|
1613
1629
|
RecoveryPointCreator.add_member(:backup_plan_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "BackupPlanArn"))
|
1630
|
+
RecoveryPointCreator.add_member(:backup_plan_name, Shapes::ShapeRef.new(shape: string, location_name: "BackupPlanName"))
|
1614
1631
|
RecoveryPointCreator.add_member(:backup_plan_version, Shapes::ShapeRef.new(shape: string, location_name: "BackupPlanVersion"))
|
1615
1632
|
RecoveryPointCreator.add_member(:backup_rule_id, Shapes::ShapeRef.new(shape: string, location_name: "BackupRuleId"))
|
1633
|
+
RecoveryPointCreator.add_member(:backup_rule_name, Shapes::ShapeRef.new(shape: string, location_name: "BackupRuleName"))
|
1634
|
+
RecoveryPointCreator.add_member(:backup_rule_cron, Shapes::ShapeRef.new(shape: string, location_name: "BackupRuleCron"))
|
1635
|
+
RecoveryPointCreator.add_member(:backup_rule_timezone, Shapes::ShapeRef.new(shape: string, location_name: "BackupRuleTimezone"))
|
1616
1636
|
RecoveryPointCreator.struct_class = Types::RecoveryPointCreator
|
1617
1637
|
|
1618
1638
|
RecoveryPointMember.add_member(:recovery_point_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "RecoveryPointArn"))
|
@@ -1718,6 +1738,8 @@ module Aws::Backup
|
|
1718
1738
|
RestoreJobsListMember.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "AccountId"))
|
1719
1739
|
RestoreJobsListMember.add_member(:restore_job_id, Shapes::ShapeRef.new(shape: string, location_name: "RestoreJobId"))
|
1720
1740
|
RestoreJobsListMember.add_member(:recovery_point_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "RecoveryPointArn"))
|
1741
|
+
RestoreJobsListMember.add_member(:source_resource_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "SourceResourceArn"))
|
1742
|
+
RestoreJobsListMember.add_member(:backup_vault_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "BackupVaultArn"))
|
1721
1743
|
RestoreJobsListMember.add_member(:creation_date, Shapes::ShapeRef.new(shape: timestamp, location_name: "CreationDate"))
|
1722
1744
|
RestoreJobsListMember.add_member(:completion_date, Shapes::ShapeRef.new(shape: timestamp, location_name: "CompletionDate"))
|
1723
1745
|
RestoreJobsListMember.add_member(:status, Shapes::ShapeRef.new(shape: RestoreJobStatus, location_name: "Status"))
|
@@ -13,22 +13,22 @@ module Aws::Backup
|
|
13
13
|
# @!attribute region
|
14
14
|
# The AWS region used to dispatch the request.
|
15
15
|
#
|
16
|
-
# @return [
|
16
|
+
# @return [string]
|
17
17
|
#
|
18
18
|
# @!attribute use_dual_stack
|
19
19
|
# When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
|
20
20
|
#
|
21
|
-
# @return [
|
21
|
+
# @return [boolean]
|
22
22
|
#
|
23
23
|
# @!attribute use_fips
|
24
24
|
# When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
|
25
25
|
#
|
26
|
-
# @return [
|
26
|
+
# @return [boolean]
|
27
27
|
#
|
28
28
|
# @!attribute endpoint
|
29
29
|
# Override the endpoint used to send this request
|
30
30
|
#
|
31
|
-
# @return [
|
31
|
+
# @return [string]
|
32
32
|
#
|
33
33
|
EndpointParameters = Struct.new(
|
34
34
|
:region,
|
data/lib/aws-sdk-backup/types.rb
CHANGED
@@ -28,7 +28,7 @@ module Aws::Backup
|
|
28
28
|
#
|
29
29
|
# @!attribute [rw] backup_options
|
30
30
|
# Specifies the backup option for a selected resource. This option is
|
31
|
-
#
|
31
|
+
# available for Windows VSS backup jobs and S3 backups.
|
32
32
|
#
|
33
33
|
# Valid values:
|
34
34
|
#
|
@@ -38,6 +38,11 @@ module Aws::Backup
|
|
38
38
|
# Set to `"WindowsVSS":"disabled"` to create a regular backup. The
|
39
39
|
# `WindowsVSS` option is not enabled by default.
|
40
40
|
#
|
41
|
+
# For S3 backups, set to `"S3BackupACLs":"disabled"` to exclude ACLs
|
42
|
+
# from the backup, or `"S3BackupObjectTags":"disabled"` to exclude
|
43
|
+
# object tags from the backup. By default, both ACLs and object tags
|
44
|
+
# are included in S3 backups.
|
45
|
+
#
|
41
46
|
# If you specify an invalid option, you get an
|
42
47
|
# `InvalidParameterValueException` exception.
|
43
48
|
#
|
@@ -139,11 +144,58 @@ module Aws::Backup
|
|
139
144
|
# `arn:aws:backup:us-east-1:123456789012:backup-vault:aBackupVault`.
|
140
145
|
# @return [String]
|
141
146
|
#
|
147
|
+
# @!attribute [rw] vault_type
|
148
|
+
# The type of backup vault where the recovery point is stored. Valid
|
149
|
+
# values are `BACKUP_VAULT` for standard backup vaults and
|
150
|
+
# `LOGICALLY_AIR_GAPPED_BACKUP_VAULT` for logically air-gapped vaults.
|
151
|
+
# @return [String]
|
152
|
+
#
|
153
|
+
# @!attribute [rw] vault_lock_state
|
154
|
+
# The lock state of the backup vault. For logically air-gapped vaults,
|
155
|
+
# this indicates whether the vault is locked in compliance mode. Valid
|
156
|
+
# values include `LOCKED` and `UNLOCKED`.
|
157
|
+
# @return [String]
|
158
|
+
#
|
142
159
|
# @!attribute [rw] recovery_point_arn
|
143
160
|
# An ARN that uniquely identifies a recovery point; for example,
|
144
161
|
# `arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45`.
|
145
162
|
# @return [String]
|
146
163
|
#
|
164
|
+
# @!attribute [rw] recovery_point_lifecycle
|
165
|
+
# Specifies the time period, in days, before a recovery point
|
166
|
+
# transitions to cold storage or is deleted.
|
167
|
+
#
|
168
|
+
# Backups transitioned to cold storage must be stored in cold storage
|
169
|
+
# for a minimum of 90 days. Therefore, on the console, the retention
|
170
|
+
# setting must be 90 days greater than the transition to cold after
|
171
|
+
# days setting. The transition to cold after days setting can't be
|
172
|
+
# changed after a backup has been transitioned to cold.
|
173
|
+
#
|
174
|
+
# Resource types that can transition to cold storage are listed in the
|
175
|
+
# [Feature availability by resource][1] table. Backup ignores this
|
176
|
+
# expression for other resource types.
|
177
|
+
#
|
178
|
+
# To remove the existing lifecycle and retention periods and keep your
|
179
|
+
# recovery points indefinitely, specify -1 for
|
180
|
+
# `MoveToColdStorageAfterDays` and `DeleteAfterDays`.
|
181
|
+
#
|
182
|
+
#
|
183
|
+
#
|
184
|
+
# [1]: https://docs.aws.amazon.com/aws-backup/latest/devguide/backup-feature-availability.html#features-by-resource
|
185
|
+
# @return [Types::Lifecycle]
|
186
|
+
#
|
187
|
+
# @!attribute [rw] encryption_key_arn
|
188
|
+
# The Amazon Resource Name (ARN) of the KMS key used to encrypt the
|
189
|
+
# backup. This can be a customer-managed key or an Amazon Web Services
|
190
|
+
# managed key, depending on the vault configuration.
|
191
|
+
# @return [String]
|
192
|
+
#
|
193
|
+
# @!attribute [rw] is_encrypted
|
194
|
+
# A boolean value indicating whether the backup is encrypted. All
|
195
|
+
# backups in Backup are encrypted, but this field indicates the
|
196
|
+
# encryption status for transparency.
|
197
|
+
# @return [Boolean]
|
198
|
+
#
|
147
199
|
# @!attribute [rw] resource_arn
|
148
200
|
# An ARN that uniquely identifies a resource. The format of the ARN
|
149
201
|
# depends on the resource type.
|
@@ -317,7 +369,12 @@ module Aws::Backup
|
|
317
369
|
:backup_job_id,
|
318
370
|
:backup_vault_name,
|
319
371
|
:backup_vault_arn,
|
372
|
+
:vault_type,
|
373
|
+
:vault_lock_state,
|
320
374
|
:recovery_point_arn,
|
375
|
+
:recovery_point_lifecycle,
|
376
|
+
:encryption_key_arn,
|
377
|
+
:is_encrypted,
|
321
378
|
:resource_arn,
|
322
379
|
:creation_date,
|
323
380
|
:completion_date,
|
@@ -1417,12 +1474,54 @@ module Aws::Backup
|
|
1417
1474
|
# `arn:aws:backup:us-east-1:123456789012:backup-vault:aBackupVault`.
|
1418
1475
|
# @return [String]
|
1419
1476
|
#
|
1477
|
+
# @!attribute [rw] destination_vault_type
|
1478
|
+
# The type of destination backup vault where the copied recovery point
|
1479
|
+
# is stored. Valid values are `BACKUP_VAULT` for standard backup
|
1480
|
+
# vaults and `LOGICALLY_AIR_GAPPED_BACKUP_VAULT` for logically
|
1481
|
+
# air-gapped vaults.
|
1482
|
+
# @return [String]
|
1483
|
+
#
|
1484
|
+
# @!attribute [rw] destination_vault_lock_state
|
1485
|
+
# The lock state of the destination backup vault. For logically
|
1486
|
+
# air-gapped vaults, this indicates whether the vault is locked in
|
1487
|
+
# compliance mode. Valid values include `LOCKED` and `UNLOCKED`.
|
1488
|
+
# @return [String]
|
1489
|
+
#
|
1420
1490
|
# @!attribute [rw] destination_recovery_point_arn
|
1421
1491
|
# An ARN that uniquely identifies a destination recovery point; for
|
1422
1492
|
# example,
|
1423
1493
|
# `arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45`.
|
1424
1494
|
# @return [String]
|
1425
1495
|
#
|
1496
|
+
# @!attribute [rw] destination_encryption_key_arn
|
1497
|
+
# The Amazon Resource Name (ARN) of the KMS key used to encrypt the
|
1498
|
+
# copied backup in the destination vault. This can be a
|
1499
|
+
# customer-managed key or an Amazon Web Services managed key.
|
1500
|
+
# @return [String]
|
1501
|
+
#
|
1502
|
+
# @!attribute [rw] destination_recovery_point_lifecycle
|
1503
|
+
# Specifies the time period, in days, before a recovery point
|
1504
|
+
# transitions to cold storage or is deleted.
|
1505
|
+
#
|
1506
|
+
# Backups transitioned to cold storage must be stored in cold storage
|
1507
|
+
# for a minimum of 90 days. Therefore, on the console, the retention
|
1508
|
+
# setting must be 90 days greater than the transition to cold after
|
1509
|
+
# days setting. The transition to cold after days setting can't be
|
1510
|
+
# changed after a backup has been transitioned to cold.
|
1511
|
+
#
|
1512
|
+
# Resource types that can transition to cold storage are listed in the
|
1513
|
+
# [Feature availability by resource][1] table. Backup ignores this
|
1514
|
+
# expression for other resource types.
|
1515
|
+
#
|
1516
|
+
# To remove the existing lifecycle and retention periods and keep your
|
1517
|
+
# recovery points indefinitely, specify -1 for
|
1518
|
+
# `MoveToColdStorageAfterDays` and `DeleteAfterDays`.
|
1519
|
+
#
|
1520
|
+
#
|
1521
|
+
#
|
1522
|
+
# [1]: https://docs.aws.amazon.com/aws-backup/latest/devguide/backup-feature-availability.html#features-by-resource
|
1523
|
+
# @return [Types::Lifecycle]
|
1524
|
+
#
|
1426
1525
|
# @!attribute [rw] resource_arn
|
1427
1526
|
# The Amazon Web Services resource to be copied; for example, an
|
1428
1527
|
# Amazon Elastic Block Store (Amazon EBS) volume or an Amazon
|
@@ -1532,7 +1631,11 @@ module Aws::Backup
|
|
1532
1631
|
:source_backup_vault_arn,
|
1533
1632
|
:source_recovery_point_arn,
|
1534
1633
|
:destination_backup_vault_arn,
|
1634
|
+
:destination_vault_type,
|
1635
|
+
:destination_vault_lock_state,
|
1535
1636
|
:destination_recovery_point_arn,
|
1637
|
+
:destination_encryption_key_arn,
|
1638
|
+
:destination_recovery_point_lifecycle,
|
1536
1639
|
:resource_arn,
|
1537
1640
|
:creation_date,
|
1538
1641
|
:completion_date,
|
@@ -2616,17 +2719,64 @@ module Aws::Backup
|
|
2616
2719
|
# created.
|
2617
2720
|
# @return [String]
|
2618
2721
|
#
|
2722
|
+
# @!attribute [rw] recovery_point_lifecycle
|
2723
|
+
# Specifies the time period, in days, before a recovery point
|
2724
|
+
# transitions to cold storage or is deleted.
|
2725
|
+
#
|
2726
|
+
# Backups transitioned to cold storage must be stored in cold storage
|
2727
|
+
# for a minimum of 90 days. Therefore, on the console, the retention
|
2728
|
+
# setting must be 90 days greater than the transition to cold after
|
2729
|
+
# days setting. The transition to cold after days setting can't be
|
2730
|
+
# changed after a backup has been transitioned to cold.
|
2731
|
+
#
|
2732
|
+
# Resource types that can transition to cold storage are listed in the
|
2733
|
+
# [Feature availability by resource][1] table. Backup ignores this
|
2734
|
+
# expression for other resource types.
|
2735
|
+
#
|
2736
|
+
# To remove the existing lifecycle and retention periods and keep your
|
2737
|
+
# recovery points indefinitely, specify -1 for
|
2738
|
+
# `MoveToColdStorageAfterDays` and `DeleteAfterDays`.
|
2739
|
+
#
|
2740
|
+
#
|
2741
|
+
#
|
2742
|
+
# [1]: https://docs.aws.amazon.com/aws-backup/latest/devguide/backup-feature-availability.html#features-by-resource
|
2743
|
+
# @return [Types::Lifecycle]
|
2744
|
+
#
|
2619
2745
|
# @!attribute [rw] backup_vault_arn
|
2620
2746
|
# An Amazon Resource Name (ARN) that uniquely identifies a backup
|
2621
2747
|
# vault; for example,
|
2622
2748
|
# `arn:aws:backup:us-east-1:123456789012:backup-vault:aBackupVault`.
|
2623
2749
|
# @return [String]
|
2624
2750
|
#
|
2751
|
+
# @!attribute [rw] vault_type
|
2752
|
+
# The type of backup vault where the recovery point is stored. Valid
|
2753
|
+
# values are `BACKUP_VAULT` for standard backup vaults and
|
2754
|
+
# `LOGICALLY_AIR_GAPPED_BACKUP_VAULT` for logically air-gapped vaults.
|
2755
|
+
# @return [String]
|
2756
|
+
#
|
2757
|
+
# @!attribute [rw] vault_lock_state
|
2758
|
+
# The lock state of the backup vault. For logically air-gapped vaults,
|
2759
|
+
# this indicates whether the vault is locked in compliance mode. Valid
|
2760
|
+
# values include `LOCKED` and `UNLOCKED`.
|
2761
|
+
# @return [String]
|
2762
|
+
#
|
2625
2763
|
# @!attribute [rw] recovery_point_arn
|
2626
2764
|
# An ARN that uniquely identifies a recovery point; for example,
|
2627
2765
|
# `arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45`.
|
2628
2766
|
# @return [String]
|
2629
2767
|
#
|
2768
|
+
# @!attribute [rw] encryption_key_arn
|
2769
|
+
# The Amazon Resource Name (ARN) of the KMS key used to encrypt the
|
2770
|
+
# backup. This can be a customer-managed key or an Amazon Web Services
|
2771
|
+
# managed key, depending on the vault configuration.
|
2772
|
+
# @return [String]
|
2773
|
+
#
|
2774
|
+
# @!attribute [rw] is_encrypted
|
2775
|
+
# A boolean value indicating whether the backup is encrypted. All
|
2776
|
+
# backups in Backup are encrypted, but this field indicates the
|
2777
|
+
# encryption status for transparency.
|
2778
|
+
# @return [Boolean]
|
2779
|
+
#
|
2630
2780
|
# @!attribute [rw] resource_arn
|
2631
2781
|
# An ARN that uniquely identifies a saved resource. The format of the
|
2632
2782
|
# ARN depends on the resource type.
|
@@ -2793,8 +2943,13 @@ module Aws::Backup
|
|
2793
2943
|
:account_id,
|
2794
2944
|
:backup_job_id,
|
2795
2945
|
:backup_vault_name,
|
2946
|
+
:recovery_point_lifecycle,
|
2796
2947
|
:backup_vault_arn,
|
2948
|
+
:vault_type,
|
2949
|
+
:vault_lock_state,
|
2797
2950
|
:recovery_point_arn,
|
2951
|
+
:encryption_key_arn,
|
2952
|
+
:is_encrypted,
|
2798
2953
|
:resource_arn,
|
2799
2954
|
:creation_date,
|
2800
2955
|
:completion_date,
|
@@ -3596,6 +3751,18 @@ module Aws::Backup
|
|
3596
3751
|
# `arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45`.
|
3597
3752
|
# @return [String]
|
3598
3753
|
#
|
3754
|
+
# @!attribute [rw] source_resource_arn
|
3755
|
+
# The Amazon Resource Name (ARN) of the original resource that was
|
3756
|
+
# backed up. This provides context about what resource is being
|
3757
|
+
# restored.
|
3758
|
+
# @return [String]
|
3759
|
+
#
|
3760
|
+
# @!attribute [rw] backup_vault_arn
|
3761
|
+
# The Amazon Resource Name (ARN) of the backup vault containing the
|
3762
|
+
# recovery point being restored. This helps identify vault access
|
3763
|
+
# policies and permissions.
|
3764
|
+
# @return [String]
|
3765
|
+
#
|
3599
3766
|
# @!attribute [rw] creation_date
|
3600
3767
|
# The date and time that a restore job is created, in Unix format and
|
3601
3768
|
# Coordinated Universal Time (UTC). The value of `CreationDate` is
|
@@ -3684,6 +3851,8 @@ module Aws::Backup
|
|
3684
3851
|
:account_id,
|
3685
3852
|
:restore_job_id,
|
3686
3853
|
:recovery_point_arn,
|
3854
|
+
:source_resource_arn,
|
3855
|
+
:backup_vault_arn,
|
3687
3856
|
:creation_date,
|
3688
3857
|
:completion_date,
|
3689
3858
|
:status,
|
@@ -7443,6 +7612,12 @@ module Aws::Backup
|
|
7443
7612
|
# `arn:aws:backup:us-east-1:123456789012:plan:8F81F553-3A74-4A3F-B93D-B3360DC80C50`.
|
7444
7613
|
# @return [String]
|
7445
7614
|
#
|
7615
|
+
# @!attribute [rw] backup_plan_name
|
7616
|
+
# The name of the backup plan that created this recovery point. This
|
7617
|
+
# provides human-readable context about which backup plan was
|
7618
|
+
# responsible for the backup job.
|
7619
|
+
# @return [String]
|
7620
|
+
#
|
7446
7621
|
# @!attribute [rw] backup_plan_version
|
7447
7622
|
# Version IDs are unique, randomly generated, Unicode, UTF-8 encoded
|
7448
7623
|
# strings that are at most 1,024 bytes long. They cannot be edited.
|
@@ -7453,13 +7628,35 @@ module Aws::Backup
|
|
7453
7628
|
# selection of resources.
|
7454
7629
|
# @return [String]
|
7455
7630
|
#
|
7631
|
+
# @!attribute [rw] backup_rule_name
|
7632
|
+
# The name of the backup rule within the backup plan that created this
|
7633
|
+
# recovery point. This helps identify which specific rule triggered
|
7634
|
+
# the backup job.
|
7635
|
+
# @return [String]
|
7636
|
+
#
|
7637
|
+
# @!attribute [rw] backup_rule_cron
|
7638
|
+
# The cron expression that defines the schedule for the backup rule.
|
7639
|
+
# This shows the frequency and timing of when backups are
|
7640
|
+
# automatically triggered.
|
7641
|
+
# @return [String]
|
7642
|
+
#
|
7643
|
+
# @!attribute [rw] backup_rule_timezone
|
7644
|
+
# The timezone used for the backup rule schedule. This provides
|
7645
|
+
# context for when backups are scheduled to run in the specified
|
7646
|
+
# timezone.
|
7647
|
+
# @return [String]
|
7648
|
+
#
|
7456
7649
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/RecoveryPointCreator AWS API Documentation
|
7457
7650
|
#
|
7458
7651
|
class RecoveryPointCreator < Struct.new(
|
7459
7652
|
:backup_plan_id,
|
7460
7653
|
:backup_plan_arn,
|
7654
|
+
:backup_plan_name,
|
7461
7655
|
:backup_plan_version,
|
7462
|
-
:backup_rule_id
|
7656
|
+
:backup_rule_id,
|
7657
|
+
:backup_rule_name,
|
7658
|
+
:backup_rule_cron,
|
7659
|
+
:backup_rule_timezone)
|
7463
7660
|
SENSITIVE = []
|
7464
7661
|
include Aws::Structure
|
7465
7662
|
end
|
@@ -7935,6 +8132,18 @@ module Aws::Backup
|
|
7935
8132
|
# `arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45`.
|
7936
8133
|
# @return [String]
|
7937
8134
|
#
|
8135
|
+
# @!attribute [rw] source_resource_arn
|
8136
|
+
# The Amazon Resource Name (ARN) of the original resource that was
|
8137
|
+
# backed up. This provides context about what resource is being
|
8138
|
+
# restored.
|
8139
|
+
# @return [String]
|
8140
|
+
#
|
8141
|
+
# @!attribute [rw] backup_vault_arn
|
8142
|
+
# The Amazon Resource Name (ARN) of the backup vault containing the
|
8143
|
+
# recovery point being restored. This helps identify vault access
|
8144
|
+
# policies and permissions.
|
8145
|
+
# @return [String]
|
8146
|
+
#
|
7938
8147
|
# @!attribute [rw] creation_date
|
7939
8148
|
# The date and time a restore job is created, in Unix format and
|
7940
8149
|
# Coordinated Universal Time (UTC). The value of `CreationDate` is
|
@@ -8024,6 +8233,8 @@ module Aws::Backup
|
|
8024
8233
|
:account_id,
|
8025
8234
|
:restore_job_id,
|
8026
8235
|
:recovery_point_arn,
|
8236
|
+
:source_resource_arn,
|
8237
|
+
:backup_vault_arn,
|
8027
8238
|
:creation_date,
|
8028
8239
|
:completion_date,
|
8029
8240
|
:status,
|
data/lib/aws-sdk-backup.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -482,8 +482,13 @@ module Aws
|
|
482
482
|
def account_id: () -> ::String
|
483
483
|
def backup_job_id: () -> ::String
|
484
484
|
def backup_vault_name: () -> ::String
|
485
|
+
def recovery_point_lifecycle: () -> Types::Lifecycle
|
485
486
|
def backup_vault_arn: () -> ::String
|
487
|
+
def vault_type: () -> ::String
|
488
|
+
def vault_lock_state: () -> ::String
|
486
489
|
def recovery_point_arn: () -> ::String
|
490
|
+
def encryption_key_arn: () -> ::String
|
491
|
+
def is_encrypted: () -> bool
|
487
492
|
def resource_arn: () -> ::String
|
488
493
|
def creation_date: () -> ::Time
|
489
494
|
def completion_date: () -> ::Time
|
@@ -667,6 +672,8 @@ module Aws
|
|
667
672
|
def account_id: () -> ::String
|
668
673
|
def restore_job_id: () -> ::String
|
669
674
|
def recovery_point_arn: () -> ::String
|
675
|
+
def source_resource_arn: () -> ::String
|
676
|
+
def backup_vault_arn: () -> ::String
|
670
677
|
def creation_date: () -> ::Time
|
671
678
|
def completion_date: () -> ::Time
|
672
679
|
def status: () -> ("PENDING" | "RUNNING" | "COMPLETED" | "ABORTED" | "FAILED")
|
data/sig/types.rbs
CHANGED
@@ -36,7 +36,12 @@ module Aws::Backup
|
|
36
36
|
attr_accessor backup_job_id: ::String
|
37
37
|
attr_accessor backup_vault_name: ::String
|
38
38
|
attr_accessor backup_vault_arn: ::String
|
39
|
+
attr_accessor vault_type: ::String
|
40
|
+
attr_accessor vault_lock_state: ::String
|
39
41
|
attr_accessor recovery_point_arn: ::String
|
42
|
+
attr_accessor recovery_point_lifecycle: Types::Lifecycle
|
43
|
+
attr_accessor encryption_key_arn: ::String
|
44
|
+
attr_accessor is_encrypted: bool
|
40
45
|
attr_accessor resource_arn: ::String
|
41
46
|
attr_accessor creation_date: ::Time
|
42
47
|
attr_accessor completion_date: ::Time
|
@@ -242,7 +247,11 @@ module Aws::Backup
|
|
242
247
|
attr_accessor source_backup_vault_arn: ::String
|
243
248
|
attr_accessor source_recovery_point_arn: ::String
|
244
249
|
attr_accessor destination_backup_vault_arn: ::String
|
250
|
+
attr_accessor destination_vault_type: ::String
|
251
|
+
attr_accessor destination_vault_lock_state: ::String
|
245
252
|
attr_accessor destination_recovery_point_arn: ::String
|
253
|
+
attr_accessor destination_encryption_key_arn: ::String
|
254
|
+
attr_accessor destination_recovery_point_lifecycle: Types::Lifecycle
|
246
255
|
attr_accessor resource_arn: ::String
|
247
256
|
attr_accessor creation_date: ::Time
|
248
257
|
attr_accessor completion_date: ::Time
|
@@ -523,8 +532,13 @@ module Aws::Backup
|
|
523
532
|
attr_accessor account_id: ::String
|
524
533
|
attr_accessor backup_job_id: ::String
|
525
534
|
attr_accessor backup_vault_name: ::String
|
535
|
+
attr_accessor recovery_point_lifecycle: Types::Lifecycle
|
526
536
|
attr_accessor backup_vault_arn: ::String
|
537
|
+
attr_accessor vault_type: ::String
|
538
|
+
attr_accessor vault_lock_state: ::String
|
527
539
|
attr_accessor recovery_point_arn: ::String
|
540
|
+
attr_accessor encryption_key_arn: ::String
|
541
|
+
attr_accessor is_encrypted: bool
|
528
542
|
attr_accessor resource_arn: ::String
|
529
543
|
attr_accessor creation_date: ::Time
|
530
544
|
attr_accessor completion_date: ::Time
|
@@ -706,6 +720,8 @@ module Aws::Backup
|
|
706
720
|
attr_accessor account_id: ::String
|
707
721
|
attr_accessor restore_job_id: ::String
|
708
722
|
attr_accessor recovery_point_arn: ::String
|
723
|
+
attr_accessor source_resource_arn: ::String
|
724
|
+
attr_accessor backup_vault_arn: ::String
|
709
725
|
attr_accessor creation_date: ::Time
|
710
726
|
attr_accessor completion_date: ::Time
|
711
727
|
attr_accessor status: ("PENDING" | "RUNNING" | "COMPLETED" | "ABORTED" | "FAILED")
|
@@ -1540,8 +1556,12 @@ module Aws::Backup
|
|
1540
1556
|
class RecoveryPointCreator
|
1541
1557
|
attr_accessor backup_plan_id: ::String
|
1542
1558
|
attr_accessor backup_plan_arn: ::String
|
1559
|
+
attr_accessor backup_plan_name: ::String
|
1543
1560
|
attr_accessor backup_plan_version: ::String
|
1544
1561
|
attr_accessor backup_rule_id: ::String
|
1562
|
+
attr_accessor backup_rule_name: ::String
|
1563
|
+
attr_accessor backup_rule_cron: ::String
|
1564
|
+
attr_accessor backup_rule_timezone: ::String
|
1545
1565
|
SENSITIVE: []
|
1546
1566
|
end
|
1547
1567
|
|
@@ -1645,6 +1665,8 @@ module Aws::Backup
|
|
1645
1665
|
attr_accessor account_id: ::String
|
1646
1666
|
attr_accessor restore_job_id: ::String
|
1647
1667
|
attr_accessor recovery_point_arn: ::String
|
1668
|
+
attr_accessor source_resource_arn: ::String
|
1669
|
+
attr_accessor backup_vault_arn: ::String
|
1648
1670
|
attr_accessor creation_date: ::Time
|
1649
1671
|
attr_accessor completion_date: ::Time
|
1650
1672
|
attr_accessor status: ("PENDING" | "RUNNING" | "COMPLETED" | "ABORTED" | "FAILED")
|