Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/Schedule.md
2025-01-28 13:29:29 -05:00

1.6 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
v2024-schedule Schedule Schedule Schedule powershellsdk
powershell
PowerShell
sdk
Schedule
V2024Schedule
/tools/sdk/powershell/v2024/models/schedule
SDK
Software Development Kit
Schedule
V2024Schedule

Schedule

Properties

Name Type Description Notes
Type Enum [ "WEEKLY", "MONTHLY", "ANNUALLY", "CALENDAR" ] Determines the overall schedule cadence. In general, all time period fields smaller than the chosen type can be configured. For example, a DAILY schedule can have 'hours' set, but not 'days'; a WEEKLY schedule can have both 'hours' and 'days' set. [required]
Months Pointer to ScheduleMonths [optional]
Days Pointer to ScheduleDays [optional]
Hours ScheduleHours [required]
Expiration Pointer to System.DateTime Specifies the time after which this schedule will no longer occur. [optional]
TimeZoneId Pointer to String The time zone to use when running the schedule. For instance, if the schedule is scheduled to run at 1AM, and this field is set to ""CST"", the schedule will run at 1AM CST. [optional]

Examples

  • Prepare the resource
$Schedule = Initialize-PSSailpoint.V2024Schedule  -Type WEEKLY `
 -Months null `
 -Days null `
 -Hours null `
 -Expiration null `
 -TimeZoneId CST
  • Convert the resource to JSON
$Schedule | ConvertTo-JSON

[Back to top]