Class GkeBackupBackupPlanRetentionPolicy.Builder
- java.lang.Object
-
- com.hashicorp.cdktf.providers.google.gke_backup_backup_plan.GkeBackupBackupPlanRetentionPolicy.Builder
-
- All Implemented Interfaces:
software.amazon.jsii.Builder<GkeBackupBackupPlanRetentionPolicy>
- Enclosing interface:
- GkeBackupBackupPlanRetentionPolicy
@Stability(Stable) public static final class GkeBackupBackupPlanRetentionPolicy.Builder extends Object implements software.amazon.jsii.Builder<GkeBackupBackupPlanRetentionPolicy>
A builder forGkeBackupBackupPlanRetentionPolicy
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GkeBackupBackupPlanRetentionPolicy.BuilderbackupDeleteLockDays(Number backupDeleteLockDays)Sets the value ofGkeBackupBackupPlanRetentionPolicy.getBackupDeleteLockDays()GkeBackupBackupPlanRetentionPolicy.BuilderbackupRetainDays(Number backupRetainDays)Sets the value ofGkeBackupBackupPlanRetentionPolicy.getBackupRetainDays()GkeBackupBackupPlanRetentionPolicybuild()Builds the configured instance.GkeBackupBackupPlanRetentionPolicy.Builderlocked(com.hashicorp.cdktf.IResolvable locked)Sets the value ofGkeBackupBackupPlanRetentionPolicy.getLocked()GkeBackupBackupPlanRetentionPolicy.Builderlocked(Boolean locked)Sets the value ofGkeBackupBackupPlanRetentionPolicy.getLocked()
-
-
-
Method Detail
-
backupDeleteLockDays
@Stability(Stable) public GkeBackupBackupPlanRetentionPolicy.Builder backupDeleteLockDays(Number backupDeleteLockDays)
Sets the value ofGkeBackupBackupPlanRetentionPolicy.getBackupDeleteLockDays()- Parameters:
backupDeleteLockDays- 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}- Returns:
this
-
backupRetainDays
@Stability(Stable) public GkeBackupBackupPlanRetentionPolicy.Builder backupRetainDays(Number backupRetainDays)
Sets the value ofGkeBackupBackupPlanRetentionPolicy.getBackupRetainDays()- Parameters:
backupRetainDays- 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}- Returns:
this
-
locked
@Stability(Stable) public GkeBackupBackupPlanRetentionPolicy.Builder locked(Boolean locked)
Sets the value ofGkeBackupBackupPlanRetentionPolicy.getLocked()- Parameters:
locked- 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}- Returns:
this
-
locked
@Stability(Stable) public GkeBackupBackupPlanRetentionPolicy.Builder locked(com.hashicorp.cdktf.IResolvable locked)
Sets the value ofGkeBackupBackupPlanRetentionPolicy.getLocked()- Parameters:
locked- 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}- Returns:
this
-
build
@Stability(Stable) public GkeBackupBackupPlanRetentionPolicy build()
Builds the configured instance.- Specified by:
buildin interfacesoftware.amazon.jsii.Builder<GkeBackupBackupPlanRetentionPolicy>- Returns:
- a new instance of
GkeBackupBackupPlanRetentionPolicy - Throws:
NullPointerException- if any required attribute was not provided
-
-