Skip to main content

lifecycle_workflows_deleted_items_workflows_tasks

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

Overview

Namelifecycle_workflows_deleted_items_workflows_tasks
TypeResource
Identra_id.identity_governance.lifecycle_workflows_deleted_items_workflows_tasks

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
argumentsarrayArguments included within the task. For guidance to configure this property, see Configure the arguments for built-in Lifecycle Workflow tasks. Required.
categorystring (joiner, leaver, unknownFutureValue, mover) (title: lifecycleTaskCategory)
continueOnErrorbooleanA Boolean value that specifies whether, if this task fails, the workflow stops, and subsequent tasks aren't run. Optional.
descriptionstringA string that describes the purpose of the task for administrative use. Optional.
displayNamestringA unique string that identifies the task. Required.Supports $filter(eq, ne) and orderBy.
executionSequencenumber (int32)An integer that states in what order the task runs in a workflow.Supports $orderby.
isEnabledbooleanA Boolean value that denotes whether the task is set to run or not. Optional.Supports $filter(eq, ne) and orderBy.
taskDefinitionIdstringA unique template identifier for the task. For more information about the tasks that Lifecycle Workflows currently supports and their unique identifiers, see Configure the arguments for built-in Lifecycle Workflow tasks. Required.Supports $filter(eq, ne).
taskProcessingResultsarrayThe result of processing the task.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectworkflow_id, task_idThe tasks in the workflow.
listselectworkflow_idThe tasks in the workflow.
insertinsertworkflow_id
updateupdateworkflow_id, task_id
deletedeleteworkflow_id, task_idIf-Match

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_idstringThe unique identifier of task
workflow_idstringThe unique identifier of workflow
If-MatchstringETag

SELECT examples

The tasks in the workflow.

SELECT
id,
arguments,
category,
continueOnError,
description,
displayName,
executionSequence,
isEnabled,
taskDefinitionId,
taskProcessingResults
FROM entra_id.identity_governance.lifecycle_workflows_deleted_items_workflows_tasks
WHERE workflow_id = '{{ workflow_id }}' -- required
AND task_id = '{{ task_id }}' -- required
;

INSERT examples

No description available.

INSERT INTO entra_id.identity_governance.lifecycle_workflows_deleted_items_workflows_tasks (
id,
arguments,
category,
continueOnError,
description,
displayName,
executionSequence,
isEnabled,
taskDefinitionId,
taskProcessingResults,
workflow_id
)
SELECT
'{{ id }}',
'{{ arguments }}',
'{{ category }}',
{{ continueOnError }},
'{{ description }}',
'{{ displayName }}',
{{ executionSequence }},
{{ isEnabled }},
'{{ taskDefinitionId }}',
'{{ taskProcessingResults }}',
'{{ workflow_id }}'
RETURNING
id,
arguments,
category,
continueOnError,
description,
displayName,
executionSequence,
isEnabled,
taskDefinitionId,
taskProcessingResults
;

UPDATE examples

No description available.

UPDATE entra_id.identity_governance.lifecycle_workflows_deleted_items_workflows_tasks
SET
id = '{{ id }}',
arguments = '{{ arguments }}',
category = '{{ category }}',
continueOnError = {{ continueOnError }},
description = '{{ description }}',
displayName = '{{ displayName }}',
executionSequence = {{ executionSequence }},
isEnabled = {{ isEnabled }},
taskDefinitionId = '{{ taskDefinitionId }}',
taskProcessingResults = '{{ taskProcessingResults }}'
WHERE
workflow_id = '{{ workflow_id }}' --required
AND task_id = '{{ task_id }}' --required
RETURNING
id,
arguments,
category,
continueOnError,
description,
displayName,
executionSequence,
isEnabled,
taskDefinitionId,
taskProcessingResults;

DELETE examples

No description available.

DELETE FROM entra_id.identity_governance.lifecycle_workflows_deleted_items_workflows_tasks
WHERE workflow_id = '{{ workflow_id }}' --required
AND task_id = '{{ task_id }}' --required
AND If-Match = '{{ If-Match }}'
;