lifecycle_workflows_workflows_runs_task_processing_results
Creates, updates, deletes, gets or lists a lifecycle_workflows_workflows_runs_task_processing_results resource.
Overview
| Name | lifecycle_workflows_workflows_runs_task_processing_results |
| Type | Resource |
| Id | entra_id.identity_governance.lifecycle_workflows_workflows_runs_task_processing_results |
Fields
The following fields are returned by SELECT queries:
- get
- list
Retrieved navigation property
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
completedDateTime | string (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])$) |
createdDateTime | string (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])$) |
failureReason | string | Describes why the taskProcessingResult failed. |
processingInfo | string | Additional 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. |
processingStatus | string | (queued, inProgress, completed, completedWithErrors, canceled, failed, unknownFutureValue) (title: lifecycleWorkflowProcessingStatus) |
startedDateTime | string (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])$) |
subject | object | Represents a Microsoft Entra user account. (title: entity) |
task | object | (x-ms-discriminator-value: #microsoft.graph.identityGovernance.task, title: entity) |
Retrieved collection
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
completedDateTime | string (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])$) |
createdDateTime | string (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])$) |
failureReason | string | Describes why the taskProcessingResult failed. |
processingInfo | string | Additional 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. |
processingStatus | string | (queued, inProgress, completed, completedWithErrors, canceled, failed, unknownFutureValue) (title: lifecycleWorkflowProcessingStatus) |
startedDateTime | string (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])$) |
subject | object | Represents a Microsoft Entra user account. (title: entity) |
task | object | (x-ms-discriminator-value: #microsoft.graph.identityGovernance.task, title: entity) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | workflow_id, run_id, task_processing_result_id | The related taskProcessingResults. | |
list | select | workflow_id, run_id | Get the taskProcessingResult resources for a run. |
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.
| Name | Datatype | Description |
|---|---|---|
run_id | string | The unique identifier of run |
task_processing_result_id | string | The unique identifier of taskProcessingResult |
workflow_id | string | The unique identifier of workflow |
SELECT examples
- get
- list
The related taskProcessingResults.
SELECT
id,
completedDateTime,
createdDateTime,
failureReason,
processingInfo,
processingStatus,
startedDateTime,
subject,
task
FROM entra_id.identity_governance.lifecycle_workflows_workflows_runs_task_processing_results
WHERE workflow_id = '{{ workflow_id }}' -- required
AND run_id = '{{ run_id }}' -- required
AND task_processing_result_id = '{{ task_processing_result_id }}' -- required
;
Get the taskProcessingResult resources for a run.
SELECT
id,
completedDateTime,
createdDateTime,
failureReason,
processingInfo,
processingStatus,
startedDateTime,
subject,
task
FROM entra_id.identity_governance.lifecycle_workflows_workflows_runs_task_processing_results
WHERE workflow_id = '{{ workflow_id }}' -- required
AND run_id = '{{ run_id }}' -- required
;