Skip to main content

lifecycle_workflows_workflows_task_reports_task_definition

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

Overview

Namelifecycle_workflows_workflows_task_reports_task_definition
TypeResource
Identra_id.identity_governance.lifecycle_workflows_workflows_task_reports_task_definition

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
getselectworkflow_id, task_report_idThe taskDefinition associated with the related lifecycle workflow task.Supports $filter(eq, ne) and $expand.

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

The taskDefinition associated with the related lifecycle workflow task.Supports $filter(eq, ne) and $expand.

SELECT
id,
category,
continueOnError,
description,
displayName,
parameters,
version
FROM entra_id.identity_governance.lifecycle_workflows_workflows_task_reports_task_definition
WHERE workflow_id = '{{ workflow_id }}' -- required
AND task_report_id = '{{ task_report_id }}' -- required
;