Linux Function App Backup Schedule Args
data class LinuxFunctionAppBackupScheduleArgs(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<LinuxFunctionAppBackupScheduleArgs>
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 and Hour.
Link copied to clipboard
Should the service keep at least one backup, regardless of 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.