Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2025/Models/ScheduledActionPayload.md
2025-05-07 14:37:48 +00:00

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
powershell
PowerShell
sdk
ScheduledActionPayload
V2025ScheduledActionPayload
/tools/sdk/powershell/v2025/models/scheduled-action-payload
SDK
Software Development Kit
ScheduledActionPayload
V2025ScheduledActionPayload

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-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

[Back to top]