Skip to main content

Taskdefinitionsummary

Definition of a type of task, used to invoke tasks

Properties

NameTypeDescriptionNotes
idstrSystem-generated unique ID of the TaskDefinition[required]
unique_namestrName of the TaskDefinition[required]
descriptionstrDescription of the TaskDefinition[required]
parent_namestrName of the parent of the TaskDefinition[required]
executorstrExecutor of the TaskDefinition[required]
argumentsmap[string]objectFormal parameters of the TaskDefinition, without values[required]
}

Example

from sailpoint.application_discovery.models.taskdefinitionsummary import Taskdefinitionsummary

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