Backup for GKE v1 API - Class BackupPlanBinding.Types.BackupPlanDetails.Types.RetentionPolicyDetails (2.8.0)

public sealed class BackupPlanBinding.Types.BackupPlanDetails.Types.RetentionPolicyDetails : IMessage<BackupPlanBinding.Types.BackupPlanDetails.Types.RetentionPolicyDetails>, IEquatable<BackupPlanBinding.Types.BackupPlanDetails.Types.RetentionPolicyDetails>, IDeepCloneable<BackupPlanBinding.Types.BackupPlanDetails.Types.RetentionPolicyDetails>, IBufferMessage, IMessage

Reference documentation and code samples for the Backup for GKE v1 API class BackupPlanBinding.Types.BackupPlanDetails.Types.RetentionPolicyDetails.

RetentionPolicyDetails defines a Backup retention policy for a BackupPlan.

Inheritance

object > BackupPlanBinding.Types.BackupPlanDetails.Types.RetentionPolicyDetails

Namespace

Google.Cloud.GkeBackup.V1

Assembly

Google.Cloud.GkeBackup.V1.dll

Constructors

RetentionPolicyDetails()

public RetentionPolicyDetails()

RetentionPolicyDetails(RetentionPolicyDetails)

public RetentionPolicyDetails(BackupPlanBinding.Types.BackupPlanDetails.Types.RetentionPolicyDetails other)
Parameter
Name Description
other BackupPlanBindingTypesBackupPlanDetailsTypesRetentionPolicyDetails

Properties

BackupDeleteLockDays

public int BackupDeleteLockDays { get; set; }

Optional. Minimum age for Backups created via this BackupPlan (in days). This field 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 under it. Backups created AFTER a successful update will inherit the new value.

Default: 0 (no delete blocking)

Property Value
Type Description
int

BackupRetainDays

public int BackupRetainDays { get; set; }

Optional. 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 (create_time + backup_retain_days). If not specified, Backups created under this BackupPlan will NOT be subject to automatic deletion. Default: 0 (no automatic deletion)

Property Value
Type Description
int