Backup Schedule
data class BackupSchedule(val frequencyInterval: Int, val frequencyUnit: FrequencyUnit, val keepAtLeastOneBackup: Boolean, val retentionPeriodInDays: Int, val startTime: String? = null) : ConvertibleToJava<BackupSchedule>
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
fun BackupSchedule(frequencyInterval: Int, frequencyUnit: FrequencyUnit, keepAtLeastOneBackup: Boolean, retentionPeriodInDays: Int, startTime: String? = null)