Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/ScheduleMonths.md
2025-05-07 14:37:48 +00: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
v2024-schedule-months ScheduleMonths ScheduleMonths ScheduleMonths powershellsdk
powershell
PowerShell
sdk
ScheduleMonths
V2024ScheduleMonths
/tools/sdk/powershell/v2024/models/schedule-months
SDK
Software Development Kit
ScheduleMonths
V2024ScheduleMonths

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

Examples

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

[Back to top]