Interface GkeBackupBackupPlanRetentionPolicy
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
GkeBackupBackupPlanRetentionPolicy.Jsii$Proxy
@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-31T03:59:21.282Z") @Stability(Stable) public interface GkeBackupBackupPlanRetentionPolicy extends software.amazon.jsii.JsiiSerializable
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classGkeBackupBackupPlanRetentionPolicy.BuilderA builder forGkeBackupBackupPlanRetentionPolicystatic classGkeBackupBackupPlanRetentionPolicy.Jsii$ProxyAn implementation forGkeBackupBackupPlanRetentionPolicy
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static GkeBackupBackupPlanRetentionPolicy.Builderbuilder()default NumbergetBackupDeleteLockDays()Minimum age for a Backup created via this BackupPlan (in days).default NumbergetBackupRetainDays()The default maximum age of a Backup created via this BackupPlan.default ObjectgetLocked()This flag denotes whether the retention policy of this BackupPlan is locked.
-
-
-
Method Detail
-
getBackupDeleteLockDays
@Stability(Stable) @Nullable default Number getBackupDeleteLockDays()
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. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/gke_backup_backup_plan#backup_delete_lock_days GkeBackupBackupPlan#backup_delete_lock_days}
-
getBackupRetainDays
@Stability(Stable) @Nullable default Number getBackupRetainDays()
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. If rpo_config is defined, then this must be <= 360 * targetRpoMinutes/(1440minutes/day) Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/gke_backup_backup_plan#backup_retain_days GkeBackupBackupPlan#backup_retain_days}
-
getLocked
@Stability(Stable) @Nullable default Object getLocked()
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. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/gke_backup_backup_plan#locked GkeBackupBackupPlan#locked}
-
builder
@Stability(Stable) static GkeBackupBackupPlanRetentionPolicy.Builder builder()
-
-