Skip to main content

ScheduledActionResponse

Properties

NameTypeDescriptionNotes
IdStringUnique identifier for this scheduled action.[optional]
CreatedSystem.DateTimeThe time when this scheduled action was created.[optional]
JobTypeEnum [ "BACKUP", "CREATE_DRAFT", "CONFIG_DEPLOY_DRAFT" ]Type of the scheduled job.[optional]
ContentScheduledActionResponseContent[optional]
StartTimeSystem.DateTimeThe time when this scheduled action should start.[optional]
CronStringStringCron expression defining the schedule for this action.[optional]
TimeZoneIdStringTime zone ID for interpreting the cron expression.[optional]

Examples

  • Prepare the resource
$ScheduledActionResponse = Initialize-PSSailpoint.V2024ScheduledActionResponse  -Id 3469b87d-48ca-439a-868f-2160001da8c1 `
-Created 2021-05-11T22:23:16Z `
-JobType BACKUP `
-Content null `
-StartTime 2021-05-12T10:00Z `
-CronString 0 0 12 * * ? `
-TimeZoneId America/Chicago
  • Convert the resource to JSON
$ScheduledActionResponse | ConvertTo-JSON

[Back to top]