starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,38 @@
---
id: schedule-hours
title: ScheduleHours
pagination_label: ScheduleHours
sidebar_label: ScheduleHours
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'ScheduleHours', 'ScheduleHours']
slug: /tools/sdk/python/v3/models/schedule-hours
tags: ['SDK', 'Software Development Kit', 'ScheduleHours', 'ScheduleHours']
---
# 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
```python
from sailpoint.v3.models.schedule_hours import ScheduleHours
schedule_hours = ScheduleHours(
type='LIST',
values=[1],
interval=2
)
```
[[Back to top]](#)