LinuxWebAppBackupSchedule

data class LinuxWebAppBackupSchedule(val frequencyInterval: Int, val frequencyUnit: String, val keepAtLeastOneBackup: Boolean? = null, val lastExecutionTime: String? = null, val retentionPeriodDays: Int? = null, val startTime: String? = null)

Constructors

Link copied to clipboard
constructor(frequencyInterval: Int, frequencyUnit: String, keepAtLeastOneBackup: Boolean? = null, lastExecutionTime: String? = null, retentionPeriodDays: Int? = null, startTime: String? = null)

Types

Link copied to clipboard
object Companion

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.

Link copied to clipboard
val startTime: String? = null

When the schedule should start working in RFC-3339 format.