Skip to main content

Schedule1

Properties

NameTypeDescriptionNotes
TypeScheduleType[required]
MonthsSchedule1Months[optional]
DaysSchedule1Days[optional]
HoursSchedule1Hours[required]
ExpirationSystem.DateTimeA date-time in ISO-8601 format[optional]
TimeZoneIdStringThe canonical TZ identifier the schedule will run in (ex. America/New_York). If no timezone is specified, the org's default timezone is used.[optional]

Examples

  • Prepare the resource
$Schedule1 = Initialize-PSSailpoint.V3Schedule1  -Type null `
-Months null `
-Days null `
-Hours null `
-Expiration 2018-06-25T20:22:28.104Z `
-TimeZoneId America/Chicago
  • Convert the resource to JSON
$Schedule1 | ConvertTo-JSON

[Back to top]