Skip to main content

Loadentitlementtask

Properties

NameTypeDescriptionNotes
idstrSystem-generated unique ID of the task this taskStatus represents[optional]
typestrType of task this task represents[optional]
unique_namestrThe name of the task[optional]
descriptionstrThe description of the task[optional]
launcherstrThe user who initiated the task[optional]
createddatetimeThe creation date of the task[optional]
returns[]LoadentitlementtaskReturnsInnerReturn values from the task[optional]
}

Example

from sailpoint.sources.models.loadentitlementtask import Loadentitlementtask

loadentitlementtask = Loadentitlementtask(
id='ef38f94347e94562b5bb8424a56397d8',
type='QUARTZ',
unique_name='Cloud Group Aggregation',
description='Aggregate from the specified application',
launcher='John Doe',
created='2020-07-11T21:23:15Z',
returns=[{"displayLabel":"TASK_OUT_ACCOUNT_GROUP_AGGREGATION_APPLICATIONS","attributeName":"applications"},{"displayLabel":"TASK_OUT_ACCOUNT_GROUP_AGGREGATION_TOTAL","attributeName":"total"},{"displayLabel":"TASK_OUT_ACCOUNT_GROUP_AGGREGATION_CREATED","attributeName":"groupsCreated"},{"displayLabel":"TASK_OUT_ACCOUNT_GROUP_AGGREGATION_UPDATED","attributeName":"groupsUpdated"},{"displayLabel":"TASK_OUT_ACCOUNT_GROUP_AGGREGATION_DELETED","attributeName":"groupsDeleted"}]
)

[Back to top]