Skip to main content

Schedule1

Properties

NameTypeDescriptionNotes
typeEnum [ 'ACCOUNT_AGGREGATION', 'GROUP_AGGREGATION' ]The type of the Schedule.[required]
cron_expressionstrThe cron expression of the schedule.[required]
}

Example

from sailpoint.v2024.models.schedule1 import Schedule1

schedule1 = Schedule1(
type='ACCOUNT_AGGREGATION',
cron_expression='0 0 5,13,21 * * ?'
)

[Back to top]