Skip to main content

MachineIdentityAggregationResponse

Properties

NameTypeDescriptionNotes
idstrSystem-generated unique ID of the Object[optional]
typeEnum [ 'QUARTZ', 'QPOC', 'QUEUED_TASK' ]Type of task for aggregation[optional]
unique_namestrName of the task for aggregation[optional]
descriptionstrDescription of the aggregation[optional]
parent_namestrName of the parent of the task for aggregation[optional]
launcherstrService to execute the aggregation[optional]
targetMachineIdentityAggregationResponseTarget[optional]
createddatetimeCreation date of the aggregation[optional]
modifieddatetimeLast modification date of the aggregation[optional]
launcheddatetimeLaunch date of the aggregation[optional]
completeddatetimeCompletion date of the aggregation[optional]
task_definition_summaryTaskDefinitionSummary[optional]
completion_statusEnum [ 'SUCCESS', 'WARNING', 'ERROR', 'TERMINATED', 'TEMPERROR' ]Completion status of the aggregation[optional]
messages[]TaskStatusMessageMessages associated with the aggregation[optional]
returns[]TaskReturnDetailsReturn values associated with the aggregation[optional]
attributesmap[string]objectAttributes of the aggregation[optional]
progressstrCurrent progress of aggregation[optional]
percent_completeintCurrent percentage completion of aggregation[optional]
}

Example

from sailpoint.v2025.models.machine_identity_aggregation_response import MachineIdentityAggregationResponse

machine_identity_aggregation_response = MachineIdentityAggregationResponse(
id='8886e5e3-63d0-462f-a195-d98da885b8dc',
type='QUARTZ',
unique_name='AI Agent Aggregation - ID123',
description='AI Agent Aggregation - From given dataset IDs',
parent_name='Parent Task',
launcher='System',
target=,
created='2020-07-11T21:23:15Z',
modified='2020-07-11T21:23:15Z',
launched='2020-07-11T21:23:15Z',
completed='2020-07-11T21:23:15Z',
task_definition_summary=sailpoint.v2025.models.task_definition_summary.Task Definition Summary(
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}, ),
completion_status='SUCCESS',
messages=[
sailpoint.v2025.models.task_status_message.Task Status Message(
type = 'INFO',
localized_text = sailpoint.v2025.models.localized_message.Localized Message(
locale = 'An error has occurred!',
message = 'Error has occurred!', ),
key = 'akey',
parameters = [{name=value}], )
],
returns=[
sailpoint.v2025.models.task_return_details.Task Return Details(
name = 'label',
attribute_name = 'identityCount', )
],
attributes={creatorRequestId=ed5a371bbaba411fb8f1f6970b842334},
progress='Started',
percent_complete=100
)

[Back to top]