Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/ScheduleDays.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-days ScheduleDays ScheduleDays ScheduleDays powershellsdk
powershell
PowerShell
sdk
ScheduleDays
BetaScheduleDays
/tools/sdk/powershell/beta/models/schedule-days
SDK
Software Development Kit
ScheduleDays
BetaScheduleDays

ScheduleDays

Properties

Name Type Description Notes
Type Enum [ "LIST", "RANGE" ] Enum type to specify days 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
$ScheduleDays = Initialize-PSSailpoint.BetaScheduleDays  -Type LIST `
 -Values [1] `
 -Interval 2
  • Convert the resource to JSON
$ScheduleDays | ConvertTo-JSON

[Back to top]