Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/Schedule1.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-schedule1 Schedule1 Schedule1 Schedule1 pythonsdk
python
Python
sdk
Schedule1
BetaSchedule1
/tools/sdk/python/beta/models/schedule1
SDK
Software Development Kit
Schedule1
BetaSchedule1

Schedule1

The schedule information.

Properties

Name Type Description Notes
type ScheduleType [required]
months Schedule1Months [optional]
days Schedule1Days [optional]
hours Schedule1Hours [required]
expiration datetime A date-time in ISO-8601 format [optional]
time_zone_id str The 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.beta.models.schedule1 import Schedule1

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

[Back to top]