mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 20:37:46 +00:00
1.5 KiB
1.5 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 | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v2025-scheduled-action-payload | ScheduledActionPayload | ScheduledActionPayload | ScheduledActionPayload | powershellsdk |
|
/tools/sdk/powershell/v2025/models/scheduled-action-payload |
|
ScheduledActionPayload
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| JobType | Enum [ "BACKUP", "CREATE_DRAFT", "CONFIG_DEPLOY_DRAFT" ] | Type of the scheduled job. | [required] |
| StartTime | System.DateTime | The time when this scheduled action should start. Optional. | [optional] |
| CronString | String | Cron expression defining the schedule for this action. Optional for repeated events. | [optional] |
| TimeZoneId | String | Time zone ID for interpreting the cron expression. Optional, will default to current time zone. | [optional] |
| Content | ScheduledActionPayloadContent | [required] |
Examples
- Prepare the resource
$ScheduledActionPayload = Initialize-PSSailpoint.V2025ScheduledActionPayload -JobType BACKUP `
-StartTime 2024-08-16T14:16:58.389Z `
-CronString 0 0 * * * * `
-TimeZoneId America/Chicago `
-Content null
- Convert the resource to JSON
$ScheduledActionPayload | ConvertTo-JSON