Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V3/Models/ScheduleMonths.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
schedule-months ScheduleMonths ScheduleMonths ScheduleMonths powershellsdk
powershell
PowerShell
sdk
ScheduleMonths
ScheduleMonths
/tools/sdk/powershell/v3/models/schedule-months
SDK
Software Development Kit
ScheduleMonths
ScheduleMonths

ScheduleMonths

Properties

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

Examples

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

[Back to top]