Skip to main content

ScheduleHours

Specifies which hour(s) a schedule is active for. Examples: Every three hours starting from 8AM, inclusive: * type LIST * values "8" * interval 3 During business hours: * type RANGE * values "9", "5" At 5AM, noon, and 5PM: * type LIST * values "5", "12", "17"

Properties

NameTypeDescriptionNotes
typeEnum [ 'LIST', 'RANGE' ]Enum type to specify hours value[required]
values[]strValues of the days based on the enum type mentioned above[required]
intervalintInterval between the cert generations[optional]
}

Example

from sailpoint.beta.models.schedule_hours import ScheduleHours

schedule_hours = ScheduleHours(
type='LIST',
values=[1],
interval=2
)

[Back to top]