lifecycle_workflows_workflows_task_reports_task_definition
Creates, updates, deletes, gets or lists a lifecycle_workflows_workflows_task_reports_task_definition resource.
Overview
| Name | lifecycle_workflows_workflows_task_reports_task_definition |
| Type | Resource |
| Id | entra_id.identity_governance.lifecycle_workflows_workflows_task_reports_task_definition |
Fields
The following fields are returned by SELECT queries:
- get
Retrieved navigation property
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
category | string | (joiner, leaver, unknownFutureValue, mover) (title: lifecycleTaskCategory) |
continueOnError | boolean | Defines if the workflow will continue if the task has an error. |
description | string | The description of the taskDefinition. |
displayName | string | The display name of the taskDefinition.Supports $filter(eq, ne) and $orderby. |
parameters | array | The parameters that must be supplied when creating a workflow task object.Supports $filter(any). |
version | number (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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | workflow_id, task_report_id | The 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.
| Name | Datatype | Description |
|---|---|---|
task_report_id | string | The unique identifier of taskReport |
workflow_id | string | The unique identifier of workflow |
SELECT examples
- get
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
;