Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/Schedule2.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
v2024-schedule2 Schedule2 Schedule2 Schedule2 pythonsdk
python
Python
sdk
Schedule2
V2024Schedule2
/tools/sdk/python/v2024/models/schedule2
SDK
Software Development Kit
Schedule2
V2024Schedule2

Schedule2

The schedule information.

Properties

Name Type Description Notes
type ScheduleType [required]
months Schedule2Months [optional]
days Schedule2Days [optional]
hours Schedule2Hours [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.v2024.models.schedule2 import Schedule2

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

[Back to top]