Update to python SDK docs: 14177794305

This commit is contained in:
developer-relations-sp
2025-03-31 17:39:57 +00:00
parent 37441b7d71
commit f74e868985
20 changed files with 60 additions and 28 deletions

View File

@@ -17,9 +17,9 @@ Attributes related to a scheduled trigger
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**cron_string** | **str** | A valid CRON expression | [optional]
**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]
@@ -31,9 +31,9 @@ Name | Type | Description | Notes
from sailpoint.v2024.models.scheduled_attributes import ScheduledAttributes
scheduled_attributes = ScheduledAttributes(
cron_string='0 9 * * 1',
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