Linux Web App Backup Schedule Args
data class LinuxWebAppBackupScheduleArgs(val frequencyInterval: Output<Int>, val frequencyUnit: Output<String>, val keepAtLeastOneBackup: Output<Boolean>? = null, val lastExecutionTime: Output<String>? = null, val retentionPeriodDays: Output<Int>? = null, val startTime: Output<String>? = null) : ConvertibleToJava<LinuxWebAppBackupScheduleArgs>
Constructors
Properties
Link copied to clipboard
How often the backup should be executed (e.g. for weekly backup, this should be set to 7
and frequency_unit
should be set to Day
).
Link copied to clipboard
The unit of time for how often the backup should take place. Possible values include: Day
, Hour
Link copied to clipboard
Should the service keep at least one backup, regardless of the age of backup? Defaults to false
.
Link copied to clipboard
The time the backup was last attempted.
Link copied to clipboard
After how many days backups should be deleted. Defaults to 30
.