Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V3/Models/ScheduleDays.md
2025-02-03 22:09:17 +00:00

997 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
schedule-days ScheduleDays ScheduleDays ScheduleDays powershellsdk
powershell
PowerShell
sdk
ScheduleDays
ScheduleDays
/tools/sdk/powershell/v3/models/schedule-days
SDK
Software Development Kit
ScheduleDays
ScheduleDays

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 Int64 Interval between the cert generations [optional]

Examples

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

[Back to top]