ScheduleArgs

data class ScheduleArgs(val count: Output<Int>, val days: Output<List<Either<String, ScheduleDay>>>, val endTime: Output<String>, val startTime: Output<String>) : ConvertibleToJava<ScheduleArgs>

Schedule definition.

Constructors

Link copied to clipboard
constructor(count: Output<Int>, days: Output<List<Either<String, ScheduleDay>>>, endTime: Output<String>, startTime: Output<String>)

Properties

Link copied to clipboard
val count: Output<Int>

User has to set the node count anticipated at end of the scaling operation of the set current schedule configuration, format is integer.

Link copied to clipboard
val days: Output<List<Either<String, ScheduleDay>>>

User has to set the days where schedule has to be set for autoscale operation.

Link copied to clipboard
val endTime: Output<String>

User has to set the end time of current schedule configuration, format like 10:30 (HH:MM).

Link copied to clipboard
val startTime: Output<String>

User has to set the start time of current schedule configuration, format like 10:30 (HH:MM).

Functions

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