Skip to main content

Schedule2Hours

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.certification_campaigns.models.schedule2_hours import Schedule2Hours

schedule2_hours = Schedule2Hours(
type='LIST',
values=["1"],
interval=2
)

[Back to top]