mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-06 20:37:46 +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 | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| beta-scheduled-attributes | ScheduledAttributes | ScheduledAttributes | ScheduledAttributes | powershellsdk |
|
/tools/sdk/powershell/beta/models/scheduled-attributes |
|
ScheduledAttributes
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| Frequency | Enum [ "daily", "weekly", "monthly", "yearly", "cronSchedule" ] | Frequency of execution | [required] |
| TimeZone | String | Time zone identifier | [optional] |
| CronString | String | A valid CRON expression | [optional] |
| WeeklyDays | []String | Scheduled days of the week for execution | [optional] |
| WeeklyTimes | []String | Scheduled execution times | [optional] |
| YearlyTimes | []String | Scheduled execution times | [optional] |
Examples
- Prepare the resource
$ScheduledAttributes = Initialize-BetaScheduledAttributes -Frequency daily `
-TimeZone America/Chicago `
-CronString 0 9 * * 1 `
-WeeklyDays Monday `
-WeeklyTimes Monday `
-YearlyTimes 1969-12-31T09:00:00.000Z
- Convert the resource to JSON
$ScheduledAttributes | ConvertTo-JSON