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

1.9 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-load-entitlement-task LoadEntitlementTask LoadEntitlementTask LoadEntitlementTask pythonsdk
python
Python
sdk
LoadEntitlementTask
V2024LoadEntitlementTask
/tools/sdk/python/v2024/models/load-entitlement-task
SDK
Software Development Kit
LoadEntitlementTask
V2024LoadEntitlementTask

LoadEntitlementTask

Properties

Name Type Description Notes
id str System-generated unique ID of the task this taskStatus represents [optional]
type str Type of task this task represents [optional]
unique_name str The name of the task [optional]
description str The description of the task [optional]
launcher str The user who initiated the task [optional]
created datetime The creation date of the task [optional]
returns []LoadEntitlementTaskReturnsInner Return values from the task [optional]
}

Example

from sailpoint.v2024.models.load_entitlement_task import LoadEntitlementTask

load_entitlement_task = 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]