Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2025/Models/Schedule2.md
2025-04-01 09:23:12 -04:00

1.3 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
v2025-schedule2 Schedule2 Schedule2 Schedule2 powershellsdk
powershell
PowerShell
sdk
Schedule2
V2025Schedule2
/tools/sdk/powershell/v2025/models/schedule2
SDK
Software Development Kit
Schedule2
V2025Schedule2

Schedule2

Properties

Name Type Description Notes
Type ScheduleType [required]
Months Schedule2Months [optional]
Days Schedule2Days [optional]
Hours Schedule2Hours [required]
Expiration System.DateTime A date-time in ISO-8601 format [optional]
TimeZoneId String The 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
$Schedule2 = Initialize-PSSailpoint.V2025Schedule2  -Type null `
 -Months null `
 -Days null `
 -Hours null `
 -Expiration 2018-06-25T20:22:28.104Z `
 -TimeZoneId America/Chicago
  • Convert the resource to JSON
$Schedule2 | ConvertTo-JSON

[Back to top]