Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/ScheduleMonths.md
2025-02-20 12:59:19 -05:00

1.3 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 pythonsdk
python
Python
sdk
ScheduleMonths
V2024ScheduleMonths
/tools/sdk/python/v2024/models/schedule-months
SDK
Software Development Kit
ScheduleMonths
V2024ScheduleMonths

ScheduleMonths

Specifies which months of a schedule are active. Only valid for ANNUALLY schedule types. Examples: On February and March: * type LIST * values "2", "3" Every 3 months, starting in January (quarterly): * type LIST * values "1" * interval 3 Every two months between July and December: * type RANGE * values "7", "12" * interval 2

Properties

Name Type Description Notes
type Enum [ 'LIST', 'RANGE' ] Enum type to specify months value [required]
values []str Values of the months based on the enum type mentioned above [required]
interval int Interval between the cert generations [optional]
}

Example

from sailpoint.v2024.models.schedule_months import ScheduleMonths

schedule_months = ScheduleMonths(
type='LIST',
values=[1],
interval=2
)

[Back to top]