BackupPlanRetentionPolicyArgs

data class BackupPlanRetentionPolicyArgs(val backupDeleteLockDays: Output<Int>? = null, val backupRetainDays: Output<Int>? = null, val locked: Output<Boolean>? = null) : ConvertibleToJava<BackupPlanRetentionPolicyArgs>

Constructors

Link copied to clipboard
constructor(backupDeleteLockDays: Output<Int>? = null, backupRetainDays: Output<Int>? = null, locked: Output<Boolean>? = null)

Properties

Link copied to clipboard
val backupDeleteLockDays: Output<Int>? = null

Minimum age for a Backup created via this BackupPlan (in days). Must be an integer value between 0-90 (inclusive). A Backup created under this BackupPlan will not be deletable until it reaches Backup's (create time + backup_delete_lock_days). Updating this field of a BackupPlan does not affect existing Backups. Backups created after a successful update will inherit this new value.

Link copied to clipboard
val backupRetainDays: Output<Int>? = null

The default maximum age of a Backup created via this BackupPlan. This field MUST be an integer value >= 0 and <= 365. If specified, a Backup created under this BackupPlan will be automatically deleted after its age reaches (createTime + backupRetainDays). If not specified, Backups created under this BackupPlan will NOT be subject to automatic deletion. Updating this field does NOT affect existing Backups under it. Backups created AFTER a successful update will automatically pick up the new value. NOTE: backupRetainDays must be >= backupDeleteLockDays. If cronSchedule is defined, then this must be <= 360 * the creation interval.]

Link copied to clipboard
val locked: Output<Boolean>? = null

This flag denotes whether the retention policy of this BackupPlan is locked. If set to True, no further update is allowed on this policy, including the locked field itself.

Functions

Link copied to clipboard
open override fun toJava(): BackupPlanRetentionPolicyArgs