lifecycle_workflows_deleted_items_workflows_execution_scope
Creates, updates, deletes, gets or lists a lifecycle_workflows_deleted_items_workflows_execution_scope resource.
Overview
| Name | lifecycle_workflows_deleted_items_workflows_execution_scope |
| Type | Resource |
| Id | entra_id.identity_governance.lifecycle_workflows_deleted_items_workflows_execution_scope |
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 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])$) |
failedTasksCount | number (int32) | The number of tasks that failed in the workflow execution. |
processingStatus | string | (queued, inProgress, completed, completedWithErrors, canceled, failed, unknownFutureValue) (title: lifecycleWorkflowProcessingStatus) |
reprocessedRuns | array | The related reprocessed workflow run. |
scheduledDateTime | string (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])$) |
startedDateTime | string (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])$) |
subject | object | Represents a Microsoft Entra user account. (title: entity) |
taskProcessingResults | array | The associated individual task execution. |
totalTasksCount | number (int32) | The total number of tasks that in the workflow execution. |
totalUnprocessedTasksCount | number (int32) | The total number of unprocessed tasks for the workflow. |
workflowExecutionType | string | (scheduled, onDemand, unknownFutureValue, activatedWithScope) (title: workflowExecutionType) |
workflowVersion | number (int32) | The version of the workflow that was executed. |
Retrieved collection
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
completedDateTime | string (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])$) |
failedTasksCount | number (int32) | The number of tasks that failed in the workflow execution. |
processingStatus | string | (queued, inProgress, completed, completedWithErrors, canceled, failed, unknownFutureValue) (title: lifecycleWorkflowProcessingStatus) |
reprocessedRuns | array | The related reprocessed workflow run. |
scheduledDateTime | string (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])$) |
startedDateTime | string (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])$) |
subject | object | Represents a Microsoft Entra user account. (title: entity) |
taskProcessingResults | array | The associated individual task execution. |
totalTasksCount | number (int32) | The total number of tasks that in the workflow execution. |
totalUnprocessedTasksCount | number (int32) | The total number of unprocessed tasks for the workflow. |
workflowExecutionType | string | (scheduled, onDemand, unknownFutureValue, activatedWithScope) (title: workflowExecutionType) |
workflowVersion | number (int32) | The version of the workflow that was executed. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | workflow_id, user_processing_result_id | The list of users that meet the workflowExecutionConditions of a workflow. | |
list | select | workflow_id | The list of users that meet the workflowExecutionConditions of a workflow. |
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 |
|---|---|---|
user_processing_result_id | string | The unique identifier of userProcessingResult |
workflow_id | string | The unique identifier of workflow |
SELECT examples
- get
- list
The list of users that meet the workflowExecutionConditions of a workflow.
SELECT
id,
completedDateTime,
failedTasksCount,
processingStatus,
reprocessedRuns,
scheduledDateTime,
startedDateTime,
subject,
taskProcessingResults,
totalTasksCount,
totalUnprocessedTasksCount,
workflowExecutionType,
workflowVersion
FROM entra_id.identity_governance.lifecycle_workflows_deleted_items_workflows_execution_scope
WHERE workflow_id = '{{ workflow_id }}' -- required
AND user_processing_result_id = '{{ user_processing_result_id }}' -- required
;
The list of users that meet the workflowExecutionConditions of a workflow.
SELECT
id,
completedDateTime,
failedTasksCount,
processingStatus,
reprocessedRuns,
scheduledDateTime,
startedDateTime,
subject,
taskProcessingResults,
totalTasksCount,
totalUnprocessedTasksCount,
workflowExecutionType,
workflowVersion
FROM entra_id.identity_governance.lifecycle_workflows_deleted_items_workflows_execution_scope
WHERE workflow_id = '{{ workflow_id }}' -- required
;