ScheduleArgs

data class ScheduleArgs(val dayOfWeek: Output<AssessmentDayOfWeek>? = null, val enable: Output<Boolean>? = null, val monthlyOccurrence: Output<Int>? = null, val startTime: Output<String>? = null, val weeklyInterval: Output<Int>? = null) : ConvertibleToJava<ScheduleArgs>

Set assessment schedule for SQL Server.

Constructors

Link copied to clipboard
constructor(dayOfWeek: Output<AssessmentDayOfWeek>? = null, enable: Output<Boolean>? = null, monthlyOccurrence: Output<Int>? = null, startTime: Output<String>? = null, weeklyInterval: Output<Int>? = null)

Properties

Link copied to clipboard
val dayOfWeek: Output<AssessmentDayOfWeek>? = null

Day of the week to run assessment.

Link copied to clipboard
val enable: Output<Boolean>? = null

Enable or disable assessment schedule on SQL virtual machine.

Link copied to clipboard
val monthlyOccurrence: Output<Int>? = null

Occurrence of the DayOfWeek day within a month to schedule assessment. Takes values: 1,2,3,4 and -1. Use -1 for last DayOfWeek day of the month

Link copied to clipboard
val startTime: Output<String>? = null

Time of the day in HH:mm format. Eg. 17:30

Link copied to clipboard
val weeklyInterval: Output<Int>? = null

Number of weeks to schedule between 2 assessment runs. Takes value from 1-6

Functions

Link copied to clipboard
open override fun toJava(): ScheduleArgs