Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/ScheduleHours.md
2025-02-20 12:59:19 -05:00

1.2 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-schedule-hours ScheduleHours ScheduleHours ScheduleHours pythonsdk
python
Python
sdk
ScheduleHours
BetaScheduleHours
/tools/sdk/python/beta/models/schedule-hours
SDK
Software Development Kit
ScheduleHours
BetaScheduleHours

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

Name Type Description Notes
type Enum [ 'LIST', 'RANGE' ] Enum type to specify hours value [required]
values []str Values of the days based on the enum type mentioned above [required]
interval int Interval 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]