Skip to main content

lifecycle_workflows_workflows_task_reports_task_processing_results

Creates, updates, deletes, gets or lists a lifecycle_workflows_workflows_task_reports_task_processing_results resource.

Overview

Namelifecycle_workflows_workflows_task_reports_task_processing_results
TypeResource
Identra_id.identity_governance.lifecycle_workflows_workflows_task_reports_task_processing_results

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
completedDateTimestring (date-time)The date time when taskProcessingResult execution ended. Value is null if task execution is still in progress.Supports $filter(lt, le, gt, ge, eq, ne) and $orderby. (pattern: ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$)
createdDateTimestring (date-time)The date time when the taskProcessingResult was created.Supports $filter(lt, le, gt, ge, eq, ne) and $orderby. (pattern: ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$)
failureReasonstringDescribes why the taskProcessingResult failed.
processingInfostringAdditional human-readable context about the task processing outcome. This property contains information about edge cases where the task completed successfully but the expected action wasn't performed because the target was already in the desired state, such as when the user was already a member of the specified group. Returns null when no additional context is needed. Nullable.
processingStatusstring (queued, inProgress, completed, completedWithErrors, canceled, failed, unknownFutureValue) (title: lifecycleWorkflowProcessingStatus)
startedDateTimestring (date-time)The date time when taskProcessingResult execution started. Value is null if task execution hasn't started yet.Supports $filter(lt, le, gt, ge, eq, ne) and $orderby. (pattern: ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$)
subjectobjectRepresents a Microsoft Entra user account. (title: entity)
taskobject (x-ms-discriminator-value: #microsoft.graph.identityGovernance.task, title: entity)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectworkflow_id, task_report_id, task_processing_result_idThe related lifecycle workflow taskProcessingResults.
listselectworkflow_id, task_report_idGet the task processing result resources from the taskReport.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
task_processing_result_idstringThe unique identifier of taskProcessingResult
task_report_idstringThe unique identifier of taskReport
workflow_idstringThe unique identifier of workflow

SELECT examples

The related lifecycle workflow taskProcessingResults.

SELECT
id,
completedDateTime,
createdDateTime,
failureReason,
processingInfo,
processingStatus,
startedDateTime,
subject,
task
FROM entra_id.identity_governance.lifecycle_workflows_workflows_task_reports_task_processing_results
WHERE workflow_id = '{{ workflow_id }}' -- required
AND task_report_id = '{{ task_report_id }}' -- required
AND task_processing_result_id = '{{ task_processing_result_id }}' -- required
;