mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 04:19:34 +00:00
1.4 KiB
1.4 KiB
id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
| id | title | pagination_label | sidebar_label | sidebar_class_name | keywords | slug | tags | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v2024-scheduled-attributes | ScheduledAttributes | ScheduledAttributes | ScheduledAttributes | powershellsdk |
|
/tools/sdk/powershell/v2024/models/scheduled-attributes |
|
ScheduledAttributes
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| CronString | Pointer to String | A valid CRON expression | [optional] |
| Frequency | Enum [ "daily", "weekly", "monthly", "yearly", "cronSchedule" ] | Frequency of execution | [required] |
| TimeZone | Pointer to String | Time zone identifier | [optional] |
| WeeklyDays | Pointer to []String | Scheduled days of the week for execution | [optional] |
| WeeklyTimes | Pointer to []String | Scheduled execution times | [optional] |
Examples
- Prepare the resource
$ScheduledAttributes = Initialize-PSSailpoint.V2024ScheduledAttributes -CronString 0 9 * * 1 `
-Frequency null `
-TimeZone America/Chicago `
-WeeklyDays Monday `
-WeeklyTimes Monday
- Convert the resource to JSON
$ScheduledAttributes | ConvertTo-JSON