Skip to main content

ScheduledAttributes

Properties

NameTypeDescriptionNotes
CronStringStringA valid CRON expression[optional]
FrequencyEnum [ "daily", "weekly", "monthly", "yearly", "cronSchedule" ]Frequency of execution[required]
TimeZoneStringTime zone identifier[optional]
WeeklyDays[]StringScheduled days of the week for execution[optional]
WeeklyTimes[]StringScheduled execution times[optional]

Examples

  • Prepare the resource
$ScheduledAttributes = Initialize-PSSailpoint.V2024ScheduledAttributes  -CronString 0 9 * * 1 `
-Frequency null `
-TimeZone America/Chicago `
-WeeklyDays Monday `
-WeeklyTimes Monday
  • Convert the resource to JSON
$ScheduledAttributes | ConvertTo-JSON

[Back to top]