Skip to main content

ScheduledActionPayload

Properties

NameTypeDescriptionNotes
JobTypeEnum [ "BACKUP", "CREATE_DRAFT", "CONFIG_DEPLOY_DRAFT" ]Type of the scheduled job.[required]
StartTimeSystem.DateTimeThe time when this scheduled action should start. Optional.[optional]
CronStringStringCron expression defining the schedule for this action. Optional for repeated events.[optional]
TimeZoneIdStringTime zone ID for interpreting the cron expression. Optional, will default to current time zone.[optional]
ContentScheduledActionPayloadContent[required]

Examples

  • Prepare the resource
$ScheduledActionPayload = Initialize-PSSailpoint.V2024ScheduledActionPayload  -JobType BACKUP `
-StartTime 2024-08-16T14:16:58.389Z `
-CronString 0 0 12 * * ? `
-TimeZoneId America/Chicago `
-Content null
  • Convert the resource to JSON
$ScheduledActionPayload | ConvertTo-JSON

[Back to top]