PolicyVMBackup

data class PolicyVMBackup(val frequency: String, val hourDuration: Int? = null, val hourInterval: Int? = null, val time: String, val weekdays: List<String>? = null)

Constructors

Link copied to clipboard
constructor(frequency: String, hourDuration: Int? = null, hourInterval: Int? = null, time: String, weekdays: List<String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Sets the backup frequency. Possible values are Hourly, Daily and Weekly.

Link copied to clipboard
val hourDuration: Int? = null

Duration of the backup window in hours. Possible values are between 4 and 24 This is used when frequency is Hourly.

Link copied to clipboard
val hourInterval: Int? = null

Interval in hour at which backup is triggered. Possible values are 4, 6, 8 and 12. This is used when frequency is Hourly.

Link copied to clipboard

The time of day to perform the backup in 24hour format.

Link copied to clipboard
val weekdays: List<String>? = null

The days of the week to perform backups on. Must be one of Sunday, Monday, Tuesday, Wednesday, Thursday, Friday or Saturday. This is used when frequency is Weekly.