aws-sdk-backup 1.98.0 → 1.99.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 +15 -1
- data/lib/aws-sdk-backup/client_api.rb +7 -0
- data/lib/aws-sdk-backup/types.rb +61 -6
- data/lib/aws-sdk-backup.rb +1 -1
- data/sig/client.rbs +4 -1
- 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: 3cd036bcb74a3777ac2da7e64b3f9aa56a8112cec7eed2dd7b134cd4b3ea0cc4
|
|
4
|
+
data.tar.gz: e9cd388ba132e6d8eabf8f9d2801bfbb7c70f7c43187c51efb4f75d0eab183db
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6e55a311a04306e04ac1a01a43c755374cad25298c51d5c5d48c6c49c1294d27ad41a3dc944f9f1f438fad742c1e975b8a26834bdeeee3bfbd856bb0029b1d58
|
|
7
|
+
data.tar.gz: cd816cded7d09446bb09fefa7482825d4221d4a1bc8f154f2b943c2f49f1a19a1d89b8d01fed42cb5d457b7f9b61e1bcec47ebdc9dbacf589782c80a0975f141
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.99.0 (2025-11-06)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - AWS Backup now supports customer-managed keys (CMK) for logically air-gapped vaults, enabling customers to maintain full control over their encryption key lifecycle. This feature helps organizations meet specific internal governance requirements or external regulatory compliance standards.
|
|
8
|
+
|
|
4
9
|
1.98.0 (2025-10-21)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.99.0
|
|
@@ -1005,6 +1005,12 @@ module Aws::Backup
|
|
|
1005
1005
|
# The maximum retention period that the vault retains its recovery
|
|
1006
1006
|
# points.
|
|
1007
1007
|
#
|
|
1008
|
+
# @option params [String] :encryption_key_arn
|
|
1009
|
+
# The ARN of the customer-managed KMS key to use for encrypting the
|
|
1010
|
+
# logically air-gapped backup vault. If not specified, the vault will be
|
|
1011
|
+
# encrypted with an Amazon Web Services-owned key managed by Amazon Web
|
|
1012
|
+
# Services Backup.
|
|
1013
|
+
#
|
|
1008
1014
|
# @return [Types::CreateLogicallyAirGappedBackupVaultOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1009
1015
|
#
|
|
1010
1016
|
# * {Types::CreateLogicallyAirGappedBackupVaultOutput#backup_vault_name #backup_vault_name} => String
|
|
@@ -1022,6 +1028,7 @@ module Aws::Backup
|
|
|
1022
1028
|
# creator_request_id: "string",
|
|
1023
1029
|
# min_retention_days: 1, # required
|
|
1024
1030
|
# max_retention_days: 1, # required
|
|
1031
|
+
# encryption_key_arn: "ARN",
|
|
1025
1032
|
# })
|
|
1026
1033
|
#
|
|
1027
1034
|
# @example Response structure
|
|
@@ -1810,6 +1817,7 @@ module Aws::Backup
|
|
|
1810
1817
|
# * {Types::DescribeBackupVaultOutput#mpa_approval_team_arn #mpa_approval_team_arn} => String
|
|
1811
1818
|
# * {Types::DescribeBackupVaultOutput#mpa_session_arn #mpa_session_arn} => String
|
|
1812
1819
|
# * {Types::DescribeBackupVaultOutput#latest_mpa_approval_team_update #latest_mpa_approval_team_update} => Types::LatestMpaApprovalTeamUpdate
|
|
1820
|
+
# * {Types::DescribeBackupVaultOutput#encryption_key_type #encryption_key_type} => String
|
|
1813
1821
|
#
|
|
1814
1822
|
# @example Request syntax with placeholder values
|
|
1815
1823
|
#
|
|
@@ -1840,6 +1848,7 @@ module Aws::Backup
|
|
|
1840
1848
|
# resp.latest_mpa_approval_team_update.status_message #=> String
|
|
1841
1849
|
# resp.latest_mpa_approval_team_update.initiation_date #=> Time
|
|
1842
1850
|
# resp.latest_mpa_approval_team_update.expiry_date #=> Time
|
|
1851
|
+
# resp.encryption_key_type #=> String, one of "AWS_OWNED_KMS_KEY", "CUSTOMER_MANAGED_KMS_KEY"
|
|
1843
1852
|
#
|
|
1844
1853
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/DescribeBackupVault AWS API Documentation
|
|
1845
1854
|
#
|
|
@@ -2082,6 +2091,7 @@ module Aws::Backup
|
|
|
2082
2091
|
# * {Types::DescribeRecoveryPointOutput#vault_type #vault_type} => String
|
|
2083
2092
|
# * {Types::DescribeRecoveryPointOutput#index_status #index_status} => String
|
|
2084
2093
|
# * {Types::DescribeRecoveryPointOutput#index_status_message #index_status_message} => String
|
|
2094
|
+
# * {Types::DescribeRecoveryPointOutput#encryption_key_type #encryption_key_type} => String
|
|
2085
2095
|
#
|
|
2086
2096
|
# @example Request syntax with placeholder values
|
|
2087
2097
|
#
|
|
@@ -2130,6 +2140,7 @@ module Aws::Backup
|
|
|
2130
2140
|
# resp.vault_type #=> String, one of "BACKUP_VAULT", "LOGICALLY_AIR_GAPPED_BACKUP_VAULT", "RESTORE_ACCESS_BACKUP_VAULT"
|
|
2131
2141
|
# resp.index_status #=> String, one of "PENDING", "ACTIVE", "FAILED", "DELETING"
|
|
2132
2142
|
# resp.index_status_message #=> String
|
|
2143
|
+
# resp.encryption_key_type #=> String, one of "AWS_OWNED_KMS_KEY", "CUSTOMER_MANAGED_KMS_KEY"
|
|
2133
2144
|
#
|
|
2134
2145
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/DescribeRecoveryPoint AWS API Documentation
|
|
2135
2146
|
#
|
|
@@ -3718,6 +3729,7 @@ module Aws::Backup
|
|
|
3718
3729
|
# resp.backup_vault_list[0].min_retention_days #=> Integer
|
|
3719
3730
|
# resp.backup_vault_list[0].max_retention_days #=> Integer
|
|
3720
3731
|
# resp.backup_vault_list[0].lock_date #=> Time
|
|
3732
|
+
# resp.backup_vault_list[0].encryption_key_type #=> String, one of "AWS_OWNED_KMS_KEY", "CUSTOMER_MANAGED_KMS_KEY"
|
|
3721
3733
|
# resp.next_token #=> String
|
|
3722
3734
|
#
|
|
3723
3735
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/ListBackupVaults AWS API Documentation
|
|
@@ -4454,6 +4466,7 @@ module Aws::Backup
|
|
|
4454
4466
|
# resp.recovery_points[0].vault_type #=> String, one of "BACKUP_VAULT", "LOGICALLY_AIR_GAPPED_BACKUP_VAULT", "RESTORE_ACCESS_BACKUP_VAULT"
|
|
4455
4467
|
# resp.recovery_points[0].index_status #=> String, one of "PENDING", "ACTIVE", "FAILED", "DELETING"
|
|
4456
4468
|
# resp.recovery_points[0].index_status_message #=> String
|
|
4469
|
+
# resp.recovery_points[0].encryption_key_type #=> String, one of "AWS_OWNED_KMS_KEY", "CUSTOMER_MANAGED_KMS_KEY"
|
|
4457
4470
|
#
|
|
4458
4471
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/ListRecoveryPointsByBackupVault AWS API Documentation
|
|
4459
4472
|
#
|
|
@@ -4581,6 +4594,7 @@ module Aws::Backup
|
|
|
4581
4594
|
# resp.recovery_points[0].vault_type #=> String, one of "BACKUP_VAULT", "LOGICALLY_AIR_GAPPED_BACKUP_VAULT", "RESTORE_ACCESS_BACKUP_VAULT"
|
|
4582
4595
|
# resp.recovery_points[0].index_status #=> String, one of "PENDING", "ACTIVE", "FAILED", "DELETING"
|
|
4583
4596
|
# resp.recovery_points[0].index_status_message #=> String
|
|
4597
|
+
# resp.recovery_points[0].encryption_key_type #=> String, one of "AWS_OWNED_KMS_KEY", "CUSTOMER_MANAGED_KMS_KEY"
|
|
4584
4598
|
#
|
|
4585
4599
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/ListRecoveryPointsByResource AWS API Documentation
|
|
4586
4600
|
#
|
|
@@ -6683,7 +6697,7 @@ module Aws::Backup
|
|
|
6683
6697
|
tracer: tracer
|
|
6684
6698
|
)
|
|
6685
6699
|
context[:gem_name] = 'aws-sdk-backup'
|
|
6686
|
-
context[:gem_version] = '1.
|
|
6700
|
+
context[:gem_version] = '1.99.0'
|
|
6687
6701
|
Seahorse::Client::Request.new(handlers, context)
|
|
6688
6702
|
end
|
|
6689
6703
|
|
|
@@ -139,6 +139,7 @@ module Aws::Backup
|
|
|
139
139
|
DisassociateBackupVaultMpaApprovalTeamInput = Shapes::StructureShape.new(name: 'DisassociateBackupVaultMpaApprovalTeamInput')
|
|
140
140
|
DisassociateRecoveryPointFromParentInput = Shapes::StructureShape.new(name: 'DisassociateRecoveryPointFromParentInput')
|
|
141
141
|
DisassociateRecoveryPointInput = Shapes::StructureShape.new(name: 'DisassociateRecoveryPointInput')
|
|
142
|
+
EncryptionKeyType = Shapes::StringShape.new(name: 'EncryptionKeyType')
|
|
142
143
|
ExportBackupPlanTemplateInput = Shapes::StructureShape.new(name: 'ExportBackupPlanTemplateInput')
|
|
143
144
|
ExportBackupPlanTemplateOutput = Shapes::StructureShape.new(name: 'ExportBackupPlanTemplateOutput')
|
|
144
145
|
FormatList = Shapes::ListShape.new(name: 'FormatList')
|
|
@@ -549,6 +550,7 @@ module Aws::Backup
|
|
|
549
550
|
BackupVaultListMember.add_member(:min_retention_days, Shapes::ShapeRef.new(shape: Long, location_name: "MinRetentionDays"))
|
|
550
551
|
BackupVaultListMember.add_member(:max_retention_days, Shapes::ShapeRef.new(shape: Long, location_name: "MaxRetentionDays"))
|
|
551
552
|
BackupVaultListMember.add_member(:lock_date, Shapes::ShapeRef.new(shape: timestamp, location_name: "LockDate"))
|
|
553
|
+
BackupVaultListMember.add_member(:encryption_key_type, Shapes::ShapeRef.new(shape: EncryptionKeyType, location_name: "EncryptionKeyType"))
|
|
552
554
|
BackupVaultListMember.struct_class = Types::BackupVaultListMember
|
|
553
555
|
|
|
554
556
|
CalculatedLifecycle.add_member(:move_to_cold_storage_at, Shapes::ShapeRef.new(shape: timestamp, location_name: "MoveToColdStorageAt"))
|
|
@@ -714,6 +716,7 @@ module Aws::Backup
|
|
|
714
716
|
CreateLogicallyAirGappedBackupVaultInput.add_member(:creator_request_id, Shapes::ShapeRef.new(shape: string, location_name: "CreatorRequestId", metadata: {"idempotencyToken" => true}))
|
|
715
717
|
CreateLogicallyAirGappedBackupVaultInput.add_member(:min_retention_days, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "MinRetentionDays"))
|
|
716
718
|
CreateLogicallyAirGappedBackupVaultInput.add_member(:max_retention_days, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "MaxRetentionDays"))
|
|
719
|
+
CreateLogicallyAirGappedBackupVaultInput.add_member(:encryption_key_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "EncryptionKeyArn"))
|
|
717
720
|
CreateLogicallyAirGappedBackupVaultInput.struct_class = Types::CreateLogicallyAirGappedBackupVaultInput
|
|
718
721
|
|
|
719
722
|
CreateLogicallyAirGappedBackupVaultOutput.add_member(:backup_vault_name, Shapes::ShapeRef.new(shape: BackupVaultName, location_name: "BackupVaultName"))
|
|
@@ -878,6 +881,7 @@ module Aws::Backup
|
|
|
878
881
|
DescribeBackupVaultOutput.add_member(:mpa_approval_team_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "MpaApprovalTeamArn"))
|
|
879
882
|
DescribeBackupVaultOutput.add_member(:mpa_session_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "MpaSessionArn"))
|
|
880
883
|
DescribeBackupVaultOutput.add_member(:latest_mpa_approval_team_update, Shapes::ShapeRef.new(shape: LatestMpaApprovalTeamUpdate, location_name: "LatestMpaApprovalTeamUpdate"))
|
|
884
|
+
DescribeBackupVaultOutput.add_member(:encryption_key_type, Shapes::ShapeRef.new(shape: EncryptionKeyType, location_name: "EncryptionKeyType"))
|
|
881
885
|
DescribeBackupVaultOutput.struct_class = Types::DescribeBackupVaultOutput
|
|
882
886
|
|
|
883
887
|
DescribeCopyJobInput.add_member(:copy_job_id, Shapes::ShapeRef.new(shape: string, required: true, location: "uri", location_name: "copyJobId"))
|
|
@@ -951,6 +955,7 @@ module Aws::Backup
|
|
|
951
955
|
DescribeRecoveryPointOutput.add_member(:vault_type, Shapes::ShapeRef.new(shape: VaultType, location_name: "VaultType"))
|
|
952
956
|
DescribeRecoveryPointOutput.add_member(:index_status, Shapes::ShapeRef.new(shape: IndexStatus, location_name: "IndexStatus"))
|
|
953
957
|
DescribeRecoveryPointOutput.add_member(:index_status_message, Shapes::ShapeRef.new(shape: string, location_name: "IndexStatusMessage"))
|
|
958
|
+
DescribeRecoveryPointOutput.add_member(:encryption_key_type, Shapes::ShapeRef.new(shape: EncryptionKeyType, location_name: "EncryptionKeyType"))
|
|
954
959
|
DescribeRecoveryPointOutput.struct_class = Types::DescribeRecoveryPointOutput
|
|
955
960
|
|
|
956
961
|
DescribeRegionSettingsInput.struct_class = Types::DescribeRegionSettingsInput
|
|
@@ -1604,6 +1609,7 @@ module Aws::Backup
|
|
|
1604
1609
|
RecoveryPointByBackupVault.add_member(:vault_type, Shapes::ShapeRef.new(shape: VaultType, location_name: "VaultType"))
|
|
1605
1610
|
RecoveryPointByBackupVault.add_member(:index_status, Shapes::ShapeRef.new(shape: IndexStatus, location_name: "IndexStatus"))
|
|
1606
1611
|
RecoveryPointByBackupVault.add_member(:index_status_message, Shapes::ShapeRef.new(shape: string, location_name: "IndexStatusMessage"))
|
|
1612
|
+
RecoveryPointByBackupVault.add_member(:encryption_key_type, Shapes::ShapeRef.new(shape: EncryptionKeyType, location_name: "EncryptionKeyType"))
|
|
1607
1613
|
RecoveryPointByBackupVault.struct_class = Types::RecoveryPointByBackupVault
|
|
1608
1614
|
|
|
1609
1615
|
RecoveryPointByBackupVaultList.member = Shapes::ShapeRef.new(shape: RecoveryPointByBackupVault)
|
|
@@ -1621,6 +1627,7 @@ module Aws::Backup
|
|
|
1621
1627
|
RecoveryPointByResource.add_member(:vault_type, Shapes::ShapeRef.new(shape: VaultType, location_name: "VaultType"))
|
|
1622
1628
|
RecoveryPointByResource.add_member(:index_status, Shapes::ShapeRef.new(shape: IndexStatus, location_name: "IndexStatus"))
|
|
1623
1629
|
RecoveryPointByResource.add_member(:index_status_message, Shapes::ShapeRef.new(shape: string, location_name: "IndexStatusMessage"))
|
|
1630
|
+
RecoveryPointByResource.add_member(:encryption_key_type, Shapes::ShapeRef.new(shape: EncryptionKeyType, location_name: "EncryptionKeyType"))
|
|
1624
1631
|
RecoveryPointByResource.struct_class = Types::RecoveryPointByResource
|
|
1625
1632
|
|
|
1626
1633
|
RecoveryPointByResourceList.member = Shapes::ShapeRef.new(shape: RecoveryPointByResource)
|
data/lib/aws-sdk-backup/types.rb
CHANGED
|
@@ -1129,6 +1129,12 @@ module Aws::Backup
|
|
|
1129
1129
|
# represents Friday, January 26, 2018 12:11:30.087 AM.
|
|
1130
1130
|
# @return [Time]
|
|
1131
1131
|
#
|
|
1132
|
+
# @!attribute [rw] encryption_key_type
|
|
1133
|
+
# The type of encryption key used for the backup vault. Valid values
|
|
1134
|
+
# are CUSTOMER\_MANAGED\_KMS\_KEY for customer-managed keys or Amazon
|
|
1135
|
+
# Web Services\_OWNED\_KMS\_KEY for Amazon Web Services-owned keys.
|
|
1136
|
+
# @return [String]
|
|
1137
|
+
#
|
|
1132
1138
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/BackupVaultListMember AWS API Documentation
|
|
1133
1139
|
#
|
|
1134
1140
|
class BackupVaultListMember < Struct.new(
|
|
@@ -1143,7 +1149,8 @@ module Aws::Backup
|
|
|
1143
1149
|
:locked,
|
|
1144
1150
|
:min_retention_days,
|
|
1145
1151
|
:max_retention_days,
|
|
1146
|
-
:lock_date
|
|
1152
|
+
:lock_date,
|
|
1153
|
+
:encryption_key_type)
|
|
1147
1154
|
SENSITIVE = []
|
|
1148
1155
|
include Aws::Structure
|
|
1149
1156
|
end
|
|
@@ -2109,6 +2116,13 @@ module Aws::Backup
|
|
|
2109
2116
|
# points.
|
|
2110
2117
|
# @return [Integer]
|
|
2111
2118
|
#
|
|
2119
|
+
# @!attribute [rw] encryption_key_arn
|
|
2120
|
+
# The ARN of the customer-managed KMS key to use for encrypting the
|
|
2121
|
+
# logically air-gapped backup vault. If not specified, the vault will
|
|
2122
|
+
# be encrypted with an Amazon Web Services-owned key managed by Amazon
|
|
2123
|
+
# Web Services Backup.
|
|
2124
|
+
# @return [String]
|
|
2125
|
+
#
|
|
2112
2126
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/CreateLogicallyAirGappedBackupVaultInput AWS API Documentation
|
|
2113
2127
|
#
|
|
2114
2128
|
class CreateLogicallyAirGappedBackupVaultInput < Struct.new(
|
|
@@ -2116,7 +2130,8 @@ module Aws::Backup
|
|
|
2116
2130
|
:backup_vault_tags,
|
|
2117
2131
|
:creator_request_id,
|
|
2118
2132
|
:min_retention_days,
|
|
2119
|
-
:max_retention_days
|
|
2133
|
+
:max_retention_days,
|
|
2134
|
+
:encryption_key_arn)
|
|
2120
2135
|
SENSITIVE = [:backup_vault_tags]
|
|
2121
2136
|
include Aws::Structure
|
|
2122
2137
|
end
|
|
@@ -2423,6 +2438,9 @@ module Aws::Backup
|
|
|
2423
2438
|
# @!attribute [rw] restore_testing_selection_name
|
|
2424
2439
|
# The name of the restore testing selection for the related restore
|
|
2425
2440
|
# testing plan.
|
|
2441
|
+
#
|
|
2442
|
+
# The name cannot be changed after creation. The name consists of only
|
|
2443
|
+
# alphanumeric characters and underscores. Maximum length is 50.
|
|
2426
2444
|
# @return [String]
|
|
2427
2445
|
#
|
|
2428
2446
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/CreateRestoreTestingSelectionOutput AWS API Documentation
|
|
@@ -3117,6 +3135,12 @@ module Aws::Backup
|
|
|
3117
3135
|
# association for this backup vault.
|
|
3118
3136
|
# @return [Types::LatestMpaApprovalTeamUpdate]
|
|
3119
3137
|
#
|
|
3138
|
+
# @!attribute [rw] encryption_key_type
|
|
3139
|
+
# The type of encryption key used for the backup vault. Valid values
|
|
3140
|
+
# are CUSTOMER\_MANAGED\_KMS\_KEY for customer-managed keys or Amazon
|
|
3141
|
+
# Web Services\_OWNED\_KMS\_KEY for Amazon Web Services-owned keys.
|
|
3142
|
+
# @return [String]
|
|
3143
|
+
#
|
|
3120
3144
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/DescribeBackupVaultOutput AWS API Documentation
|
|
3121
3145
|
#
|
|
3122
3146
|
class DescribeBackupVaultOutput < Struct.new(
|
|
@@ -3135,7 +3159,8 @@ module Aws::Backup
|
|
|
3135
3159
|
:source_backup_vault_arn,
|
|
3136
3160
|
:mpa_approval_team_arn,
|
|
3137
3161
|
:mpa_session_arn,
|
|
3138
|
-
:latest_mpa_approval_team_update
|
|
3162
|
+
:latest_mpa_approval_team_update,
|
|
3163
|
+
:encryption_key_type)
|
|
3139
3164
|
SENSITIVE = []
|
|
3140
3165
|
include Aws::Structure
|
|
3141
3166
|
end
|
|
@@ -3597,6 +3622,12 @@ module Aws::Backup
|
|
|
3597
3622
|
# a backup index associated with the recovery point.
|
|
3598
3623
|
# @return [String]
|
|
3599
3624
|
#
|
|
3625
|
+
# @!attribute [rw] encryption_key_type
|
|
3626
|
+
# The type of encryption key used for the recovery point. Valid values
|
|
3627
|
+
# are CUSTOMER\_MANAGED\_KMS\_KEY for customer-managed keys or Amazon
|
|
3628
|
+
# Web Services\_OWNED\_KMS\_KEY for Amazon Web Services-owned keys.
|
|
3629
|
+
# @return [String]
|
|
3630
|
+
#
|
|
3600
3631
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/DescribeRecoveryPointOutput AWS API Documentation
|
|
3601
3632
|
#
|
|
3602
3633
|
class DescribeRecoveryPointOutput < Struct.new(
|
|
@@ -3626,7 +3657,8 @@ module Aws::Backup
|
|
|
3626
3657
|
:resource_name,
|
|
3627
3658
|
:vault_type,
|
|
3628
3659
|
:index_status,
|
|
3629
|
-
:index_status_message
|
|
3660
|
+
:index_status_message,
|
|
3661
|
+
:encryption_key_type)
|
|
3630
3662
|
SENSITIVE = []
|
|
3631
3663
|
include Aws::Structure
|
|
3632
3664
|
end
|
|
@@ -7472,6 +7504,12 @@ module Aws::Backup
|
|
|
7472
7504
|
# a backup index associated with the recovery point.
|
|
7473
7505
|
# @return [String]
|
|
7474
7506
|
#
|
|
7507
|
+
# @!attribute [rw] encryption_key_type
|
|
7508
|
+
# The type of encryption key used for the recovery point. Valid values
|
|
7509
|
+
# are CUSTOMER\_MANAGED\_KMS\_KEY for customer-managed keys or Amazon
|
|
7510
|
+
# Web Services\_OWNED\_KMS\_KEY for Amazon Web Services-owned keys.
|
|
7511
|
+
# @return [String]
|
|
7512
|
+
#
|
|
7475
7513
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/RecoveryPointByBackupVault AWS API Documentation
|
|
7476
7514
|
#
|
|
7477
7515
|
class RecoveryPointByBackupVault < Struct.new(
|
|
@@ -7500,7 +7538,8 @@ module Aws::Backup
|
|
|
7500
7538
|
:resource_name,
|
|
7501
7539
|
:vault_type,
|
|
7502
7540
|
:index_status,
|
|
7503
|
-
:index_status_message
|
|
7541
|
+
:index_status_message,
|
|
7542
|
+
:encryption_key_type)
|
|
7504
7543
|
SENSITIVE = []
|
|
7505
7544
|
include Aws::Structure
|
|
7506
7545
|
end
|
|
@@ -7579,6 +7618,12 @@ module Aws::Backup
|
|
|
7579
7618
|
# a backup index associated with the recovery point.
|
|
7580
7619
|
# @return [String]
|
|
7581
7620
|
#
|
|
7621
|
+
# @!attribute [rw] encryption_key_type
|
|
7622
|
+
# The type of encryption key used for the recovery point. Valid values
|
|
7623
|
+
# are CUSTOMER\_MANAGED\_KMS\_KEY for customer-managed keys or Amazon
|
|
7624
|
+
# Web Services\_OWNED\_KMS\_KEY for Amazon Web Services-owned keys.
|
|
7625
|
+
# @return [String]
|
|
7626
|
+
#
|
|
7582
7627
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/RecoveryPointByResource AWS API Documentation
|
|
7583
7628
|
#
|
|
7584
7629
|
class RecoveryPointByResource < Struct.new(
|
|
@@ -7594,7 +7639,8 @@ module Aws::Backup
|
|
|
7594
7639
|
:resource_name,
|
|
7595
7640
|
:vault_type,
|
|
7596
7641
|
:index_status,
|
|
7597
|
-
:index_status_message
|
|
7642
|
+
:index_status_message,
|
|
7643
|
+
:encryption_key_type)
|
|
7598
7644
|
SENSITIVE = []
|
|
7599
7645
|
include Aws::Structure
|
|
7600
7646
|
end
|
|
@@ -8680,6 +8726,9 @@ module Aws::Backup
|
|
|
8680
8726
|
# @!attribute [rw] restore_testing_selection_name
|
|
8681
8727
|
# The unique name of the restore testing selection that belongs to the
|
|
8682
8728
|
# related restore testing plan.
|
|
8729
|
+
#
|
|
8730
|
+
# The name consists of only alphanumeric characters and underscores.
|
|
8731
|
+
# Maximum length is 50.
|
|
8683
8732
|
# @return [String]
|
|
8684
8733
|
#
|
|
8685
8734
|
# @!attribute [rw] validation_window_hours
|
|
@@ -8765,6 +8814,9 @@ module Aws::Backup
|
|
|
8765
8814
|
# @!attribute [rw] restore_testing_selection_name
|
|
8766
8815
|
# The unique name of the restore testing selection that belongs to the
|
|
8767
8816
|
# related restore testing plan.
|
|
8817
|
+
#
|
|
8818
|
+
# The name consists of only alphanumeric characters and underscores.
|
|
8819
|
+
# Maximum length is 50.
|
|
8768
8820
|
# @return [String]
|
|
8769
8821
|
#
|
|
8770
8822
|
# @!attribute [rw] validation_window_hours
|
|
@@ -8821,6 +8873,9 @@ module Aws::Backup
|
|
|
8821
8873
|
#
|
|
8822
8874
|
# @!attribute [rw] restore_testing_selection_name
|
|
8823
8875
|
# Unique name of a restore testing selection.
|
|
8876
|
+
#
|
|
8877
|
+
# The name consists of only alphanumeric characters and underscores.
|
|
8878
|
+
# Maximum length is 50.
|
|
8824
8879
|
# @return [String]
|
|
8825
8880
|
#
|
|
8826
8881
|
# @!attribute [rw] validation_window_hours
|
data/lib/aws-sdk-backup.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -290,7 +290,8 @@ module Aws
|
|
|
290
290
|
?backup_vault_tags: Hash[::String, ::String],
|
|
291
291
|
?creator_request_id: ::String,
|
|
292
292
|
min_retention_days: ::Integer,
|
|
293
|
-
max_retention_days: ::Integer
|
|
293
|
+
max_retention_days: ::Integer,
|
|
294
|
+
?encryption_key_arn: ::String
|
|
294
295
|
) -> _CreateLogicallyAirGappedBackupVaultResponseSuccess
|
|
295
296
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLogicallyAirGappedBackupVaultResponseSuccess
|
|
296
297
|
|
|
@@ -536,6 +537,7 @@ module Aws
|
|
|
536
537
|
def mpa_approval_team_arn: () -> ::String
|
|
537
538
|
def mpa_session_arn: () -> ::String
|
|
538
539
|
def latest_mpa_approval_team_update: () -> Types::LatestMpaApprovalTeamUpdate
|
|
540
|
+
def encryption_key_type: () -> ("AWS_OWNED_KMS_KEY" | "CUSTOMER_MANAGED_KMS_KEY")
|
|
539
541
|
end
|
|
540
542
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#describe_backup_vault-instance_method
|
|
541
543
|
def describe_backup_vault: (
|
|
@@ -628,6 +630,7 @@ module Aws
|
|
|
628
630
|
def vault_type: () -> ("BACKUP_VAULT" | "LOGICALLY_AIR_GAPPED_BACKUP_VAULT" | "RESTORE_ACCESS_BACKUP_VAULT")
|
|
629
631
|
def index_status: () -> ("PENDING" | "ACTIVE" | "FAILED" | "DELETING")
|
|
630
632
|
def index_status_message: () -> ::String
|
|
633
|
+
def encryption_key_type: () -> ("AWS_OWNED_KMS_KEY" | "CUSTOMER_MANAGED_KMS_KEY")
|
|
631
634
|
end
|
|
632
635
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#describe_recovery_point-instance_method
|
|
633
636
|
def describe_recovery_point: (
|
data/sig/types.rbs
CHANGED
|
@@ -174,6 +174,7 @@ module Aws::Backup
|
|
|
174
174
|
attr_accessor min_retention_days: ::Integer
|
|
175
175
|
attr_accessor max_retention_days: ::Integer
|
|
176
176
|
attr_accessor lock_date: ::Time
|
|
177
|
+
attr_accessor encryption_key_type: ("AWS_OWNED_KMS_KEY" | "CUSTOMER_MANAGED_KMS_KEY")
|
|
177
178
|
SENSITIVE: []
|
|
178
179
|
end
|
|
179
180
|
|
|
@@ -369,6 +370,7 @@ module Aws::Backup
|
|
|
369
370
|
attr_accessor creator_request_id: ::String
|
|
370
371
|
attr_accessor min_retention_days: ::Integer
|
|
371
372
|
attr_accessor max_retention_days: ::Integer
|
|
373
|
+
attr_accessor encryption_key_arn: ::String
|
|
372
374
|
SENSITIVE: [:backup_vault_tags]
|
|
373
375
|
end
|
|
374
376
|
|
|
@@ -587,6 +589,7 @@ module Aws::Backup
|
|
|
587
589
|
attr_accessor mpa_approval_team_arn: ::String
|
|
588
590
|
attr_accessor mpa_session_arn: ::String
|
|
589
591
|
attr_accessor latest_mpa_approval_team_update: Types::LatestMpaApprovalTeamUpdate
|
|
592
|
+
attr_accessor encryption_key_type: ("AWS_OWNED_KMS_KEY" | "CUSTOMER_MANAGED_KMS_KEY")
|
|
590
593
|
SENSITIVE: []
|
|
591
594
|
end
|
|
592
595
|
|
|
@@ -679,6 +682,7 @@ module Aws::Backup
|
|
|
679
682
|
attr_accessor vault_type: ("BACKUP_VAULT" | "LOGICALLY_AIR_GAPPED_BACKUP_VAULT" | "RESTORE_ACCESS_BACKUP_VAULT")
|
|
680
683
|
attr_accessor index_status: ("PENDING" | "ACTIVE" | "FAILED" | "DELETING")
|
|
681
684
|
attr_accessor index_status_message: ::String
|
|
685
|
+
attr_accessor encryption_key_type: ("AWS_OWNED_KMS_KEY" | "CUSTOMER_MANAGED_KMS_KEY")
|
|
682
686
|
SENSITIVE: []
|
|
683
687
|
end
|
|
684
688
|
|
|
@@ -1533,6 +1537,7 @@ module Aws::Backup
|
|
|
1533
1537
|
attr_accessor vault_type: ("BACKUP_VAULT" | "LOGICALLY_AIR_GAPPED_BACKUP_VAULT" | "RESTORE_ACCESS_BACKUP_VAULT")
|
|
1534
1538
|
attr_accessor index_status: ("PENDING" | "ACTIVE" | "FAILED" | "DELETING")
|
|
1535
1539
|
attr_accessor index_status_message: ::String
|
|
1540
|
+
attr_accessor encryption_key_type: ("AWS_OWNED_KMS_KEY" | "CUSTOMER_MANAGED_KMS_KEY")
|
|
1536
1541
|
SENSITIVE: []
|
|
1537
1542
|
end
|
|
1538
1543
|
|
|
@@ -1550,6 +1555,7 @@ module Aws::Backup
|
|
|
1550
1555
|
attr_accessor vault_type: ("BACKUP_VAULT" | "LOGICALLY_AIR_GAPPED_BACKUP_VAULT" | "RESTORE_ACCESS_BACKUP_VAULT")
|
|
1551
1556
|
attr_accessor index_status: ("PENDING" | "ACTIVE" | "FAILED" | "DELETING")
|
|
1552
1557
|
attr_accessor index_status_message: ::String
|
|
1558
|
+
attr_accessor encryption_key_type: ("AWS_OWNED_KMS_KEY" | "CUSTOMER_MANAGED_KMS_KEY")
|
|
1553
1559
|
SENSITIVE: []
|
|
1554
1560
|
end
|
|
1555
1561
|
|