add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
---
id: v2025-scheduled-attributes
title: ScheduledAttributes
pagination_label: ScheduledAttributes
sidebar_label: ScheduledAttributes
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'ScheduledAttributes', 'V2025ScheduledAttributes']
slug: /tools/sdk/python/v2025/models/scheduled-attributes
tags: ['SDK', 'Software Development Kit', 'ScheduledAttributes', 'V2025ScheduledAttributes']
---
# ScheduledAttributes
Attributes related to a scheduled trigger
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**frequency** | **Enum** [ 'daily', 'weekly', 'monthly', 'yearly', 'cronSchedule' ] | Frequency of execution | [required]
**time_zone** | **str** | Time zone identifier | [optional]
**cron_string** | **str** | A valid CRON expression | [optional]
**weekly_days** | **[]str** | Scheduled days of the week for execution | [optional]
**weekly_times** | **[]str** | Scheduled execution times | [optional]
**yearly_times** | **[]str** | Scheduled execution times | [optional]
}
## Example
```python
from sailpoint.v2025.models.scheduled_attributes import ScheduledAttributes
scheduled_attributes = ScheduledAttributes(
frequency='daily',
time_zone='America/Chicago',
cron_string='0 9 * * 1',
weekly_days=Monday,
weekly_times=Monday,
yearly_times=1969-12-31T09:00:00.000Z
)
```
[[Back to top]](#)