Skip to main content

lifecycle_workflows_task_definitions

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

Overview

Namelifecycle_workflows_task_definitions
TypeResource
Identra_id.identity_governance.lifecycle_workflows_task_definitions

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
categorystring (joiner, leaver, unknownFutureValue, mover) (title: lifecycleTaskCategory)
continueOnErrorbooleanDefines if the workflow will continue if the task has an error.
descriptionstringThe description of the taskDefinition.
displayNamestringThe display name of the taskDefinition.Supports $filter(eq, ne) and $orderby.
parametersarrayThe parameters that must be supplied when creating a workflow task object.Supports $filter(any).
versionnumber (int32)The version number of the taskDefinition. New records are pushed when we add support for new parameters.Supports $filter(ge, gt, le, lt, eq, ne) and $orderby.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselecttask_definition_idRead the details of a built-in workflow task in Lifecycle Workflows.
listselectGet a list of built-in tasks in Lifecycle Workflows. A task is represented by the taskDefinition object.

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_definition_idstringThe unique identifier of taskDefinition

SELECT examples

Read the details of a built-in workflow task in Lifecycle Workflows.

SELECT
id,
category,
continueOnError,
description,
displayName,
parameters,
version
FROM entra_id.identity_governance.lifecycle_workflows_task_definitions
WHERE task_definition_id = '{{ task_definition_id }}' -- required
;