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

1.0 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
beta-schedule-hours ScheduleHours ScheduleHours ScheduleHours powershellsdk
powershell
PowerShell
sdk
ScheduleHours
BetaScheduleHours
/tools/sdk/powershell/beta/models/schedule-hours
SDK
Software Development Kit
ScheduleHours
BetaScheduleHours

ScheduleHours

Properties

Name Type Description Notes
Type Enum [ "LIST", "RANGE" ] Enum type to specify hours value [required]
Values []String Values of the days based on the enum type mentioned above [required]
Interval Pointer to Int64 Interval between the cert generations [optional]

Examples

  • Prepare the resource
$ScheduleHours = Initialize-PSSailpoint.BetaScheduleHours  -Type LIST `
 -Values [1] `
 -Interval 2
  • Convert the resource to JSON
$ScheduleHours | ConvertTo-JSON

[Back to top]