Update to python SDK docs: 13984088294

This commit is contained in:
developer-relations-sp
2025-03-21 03:35:56 +00:00
parent ab8c7f65b5
commit 5109bc43f7
96 changed files with 598 additions and 488 deletions

View File

@@ -19,9 +19,10 @@ 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** | | [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
@@ -34,7 +35,8 @@ frequency='daily',
time_zone='America/Chicago',
cron_string='0 9 * * 1',
weekly_days=Monday,
weekly_times=Monday
weekly_times=Monday,
yearly_times=1969-12-31T09:00:00.000Z
)
```