Skip to main content

lifecycle_workflows_deleted_items_workflows_runs_user_processing_results

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

Overview

Namelifecycle_workflows_deleted_items_workflows_runs_user_processing_results
TypeResource
Identra_id.identity_governance.lifecycle_workflows_deleted_items_workflows_runs_user_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 that the workflow execution for a user completed. Value is null if the workflow hasn't 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])$)
failedTasksCountnumber (int32)The number of tasks that failed in the workflow execution.
processingStatusstring (queued, inProgress, completed, completedWithErrors, canceled, failed, unknownFutureValue) (title: lifecycleWorkflowProcessingStatus)
reprocessedRunsarrayThe related reprocessed workflow run.
scheduledDateTimestring (date-time)The date time that the workflow is scheduled to be executed for a user.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])$)
startedDateTimestring (date-time)The date time that the workflow execution started. Value is null if the workflow execution hasn't started.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)
taskProcessingResultsarrayThe associated individual task execution.
totalTasksCountnumber (int32)The total number of tasks that in the workflow execution.
totalUnprocessedTasksCountnumber (int32)The total number of unprocessed tasks for the workflow.
workflowExecutionTypestring (scheduled, onDemand, unknownFutureValue, activatedWithScope) (title: workflowExecutionType)
workflowVersionnumber (int32)The version of the workflow that was executed.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectworkflow_id, run_id, user_processing_result_idThe associated individual user execution.
listselectworkflow_id, run_idThe associated individual user execution.

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
run_idstringThe unique identifier of run
user_processing_result_idstringThe unique identifier of userProcessingResult
workflow_idstringThe unique identifier of workflow

SELECT examples

The associated individual user execution.

SELECT
id,
completedDateTime,
failedTasksCount,
processingStatus,
reprocessedRuns,
scheduledDateTime,
startedDateTime,
subject,
taskProcessingResults,
totalTasksCount,
totalUnprocessedTasksCount,
workflowExecutionType,
workflowVersion
FROM entra_id.identity_governance.lifecycle_workflows_deleted_items_workflows_runs_user_processing_results
WHERE workflow_id = '{{ workflow_id }}' -- required
AND run_id = '{{ run_id }}' -- required
AND user_processing_result_id = '{{ user_processing_result_id }}' -- required
;