mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
starting point for adding python sdk docs
This commit is contained in:
44
docs/tools/sdk/python/Reference/V2024/Models/Schedule2.md
Normal file
44
docs/tools/sdk/python/Reference/V2024/Models/Schedule2.md
Normal file
@@ -0,0 +1,44 @@
|
||||
---
|
||||
id: v2024-schedule2
|
||||
title: Schedule2
|
||||
pagination_label: Schedule2
|
||||
sidebar_label: Schedule2
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'Schedule2', 'V2024Schedule2']
|
||||
slug: /tools/sdk/python/v2024/models/schedule2
|
||||
tags: ['SDK', 'Software Development Kit', 'Schedule2', 'V2024Schedule2']
|
||||
---
|
||||
|
||||
# Schedule2
|
||||
|
||||
The schedule information.
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**type** | [**ScheduleType**](schedule-type) | | [required]
|
||||
**months** | [**Schedule2Months**](schedule2-months) | | [optional]
|
||||
**days** | [**Schedule2Days**](schedule2-days) | | [optional]
|
||||
**hours** | [**Schedule2Hours**](schedule2-hours) | | [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
|
||||
|
||||
```python
|
||||
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]](#)
|
||||
|
||||
Reference in New Issue
Block a user