BackupScheduleResponse

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

Description of a backup schedule. Describes how often should be the backup performed and what should be the retention policy.

Constructors

Link copied to clipboard
constructor(frequencyInterval: Int, frequencyUnit: String, keepAtLeastOneBackup: Boolean, lastExecutionTime: String, retentionPeriodInDays: Int, 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 FrequencyUnit should be set to Day)

Link copied to clipboard

The unit of time for how often the backup should be executed (e.g. for weekly backup, this should be set to Day and FrequencyInterval should be set to 7)

Link copied to clipboard

True if the retention policy should always keep at least one backup in the storage account, regardless how old it is; false otherwise.

Link copied to clipboard

Last time when this schedule was triggered.

Link copied to clipboard

After how many days backups should be deleted.

Link copied to clipboard
val startTime: String? = null

When the schedule should start working.