Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/TaskDefinitionSummary.md
2025-04-01 09:23:12 -04:00

1.7 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
v2025-task-definition-summary TaskDefinitionSummary TaskDefinitionSummary TaskDefinitionSummary pythonsdk
python
Python
sdk
TaskDefinitionSummary
V2025TaskDefinitionSummary
/tools/sdk/python/v2025/models/task-definition-summary
SDK
Software Development Kit
TaskDefinitionSummary
V2025TaskDefinitionSummary

TaskDefinitionSummary

Definition of a type of task, used to invoke tasks

Properties

Name Type Description Notes
id str System-generated unique ID of the TaskDefinition [required]
unique_name str Name of the TaskDefinition [required]
description str Description of the TaskDefinition [required]
parent_name str Name of the parent of the TaskDefinition [required]
executor str Executor of the TaskDefinition [required]
arguments map[string]object Formal parameters of the TaskDefinition, without values [required]
}

Example

from sailpoint.v2025.models.task_definition_summary import TaskDefinitionSummary

task_definition_summary = TaskDefinitionSummary(
id='2c91808475b4334b0175e1dff64b63c5',
unique_name='Cloud Account Aggregation',
description='Aggregates from the specified application.',
parent_name='Cloud Account Aggregation',
executor='sailpoint.task.ServiceTaskExecutor',
arguments={mantisExecutor=com.sailpoint.mantis.sources.task.AccountAggregationTask, eventClassesCsv=sailpoint.thunderbolt.events.AggregationEvents, serviceClass=sailpoint.thunderbolt.service.AggregationService, serviceMethod=accountAggregationTask}
)

[Back to top]