Skip to main content

Schedule

The schedule information.

Properties

NameTypeDescriptionNotes
typeScheduletype[required]
monthsScheduleMonths[optional]
daysScheduleDays[optional]
hoursScheduleHours[required]
expirationdatetimeA date-time in ISO-8601 format[optional]
time_zone_idstrThe canonical TZ identifier the schedule will run in (ex. America/New_York). If no timezone is specified, the org's default timezone is used.[optional]
}

Example

from sailpoint.sod_policies.models.schedule import Schedule

schedule = Schedule(
type='WEEKLY',
months=,
days=,
hours=,
expiration='2018-06-25T20:22:28.104Z',
time_zone_id='America/Chicago'
)

[Back to top]