Skip to main content

lifecycle_workflows_workflows_task_reports

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

Overview

Namelifecycle_workflows_workflows_task_reports
TypeResource
Identra_id.identity_governance.lifecycle_workflows_workflows_task_reports

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 that the associated run completed. Value is null if the run has not completed.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])$)
failedUsersCountnumber (int32)The number of users in the run execution for which the associated task failed.Supports $filter(lt, le, gt, ge, eq, ne) and $orderby.
lastUpdatedDateTimestring (date-time)The date and time that the task report was last updated. (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])$)
processingStatusstring (queued, inProgress, completed, completedWithErrors, canceled, failed, unknownFutureValue) (title: lifecycleWorkflowProcessingStatus)
runIdstringThe unique identifier of the associated run.
startedDateTimestring (date-time)The date time that the associated run started. Value is null if the run has not started. (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])$)
successfulUsersCountnumber (int32)The number of users in the run execution for which the associated task succeeded.Supports $filter(lt, le, gt, ge, eq, ne) and $orderby.
taskobject (x-ms-discriminator-value: #microsoft.graph.identityGovernance.task, title: entity)
taskDefinitionobject (x-ms-discriminator-value: #microsoft.graph.identityGovernance.taskDefinition, title: entity)
taskProcessingResultsarrayThe related lifecycle workflow taskProcessingResults.
totalUsersCountnumber (int32)The total number of users in the run execution for which the associated task was scheduled to execute.Supports $filter(lt, le, gt, ge, eq, ne) and $orderby.
unprocessedUsersCountnumber (int32)The number of users in the run execution for which the associated task is queued, in progress, or canceled.Supports $filter(lt, le, gt, ge, eq, ne) and $orderby.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectworkflow_id, task_report_idRepresents the aggregation of task execution data for tasks within a workflow object.
listselectworkflow_idGet a list of the taskReport objects and their properties.

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_report_idstringThe unique identifier of taskReport
workflow_idstringThe unique identifier of workflow

SELECT examples

Represents the aggregation of task execution data for tasks within a workflow object.

SELECT
id,
completedDateTime,
failedUsersCount,
lastUpdatedDateTime,
processingStatus,
runId,
startedDateTime,
successfulUsersCount,
task,
taskDefinition,
taskProcessingResults,
totalUsersCount,
unprocessedUsersCount
FROM entra_id.identity_governance.lifecycle_workflows_workflows_task_reports
WHERE workflow_id = '{{ workflow_id }}' -- required
AND task_report_id = '{{ task_report_id }}' -- required
;