VirtualMachineAssessmentSchedule

data class VirtualMachineAssessmentSchedule(val dayOfWeek: String, val monthlyOccurrence: Int? = null, val startTime: String, val weeklyInterval: Int? = null)

Constructors

Link copied to clipboard
constructor(dayOfWeek: String, monthlyOccurrence: Int? = null, startTime: String, weeklyInterval: Int? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

What day of the week the assessment will be run. Possible values are Friday, Monday, Saturday, Sunday, Thursday, Tuesday and Wednesday.

Link copied to clipboard
val monthlyOccurrence: Int? = null

How many months between assessment runs. Valid values are between 1 and 5.

Link copied to clipboard

What time the assessment will be run. Must be in the format HH:mm.

Link copied to clipboard
val weeklyInterval: Int? = null

How many weeks between assessment runs. Valid values are between 1 and 6.