Skip to main content

Schedule3

Properties

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

Example

from sailpoint.sources.models.schedule3 import Schedule3

schedule3 = Schedule3(
type='ACCOUNT_AGGREGATION',
cron_expression='0 0 5,13,21 * * ?'
)

[Back to top]