lifecycle_workflows
Creates, updates, deletes, gets or lists a lifecycle_workflows resource.
Overview
| Name | lifecycle_workflows |
| Type | Resource |
| Id | entra_id.identity_governance.lifecycle_workflows |
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. |
customTaskExtensions | array | The customTaskExtension instance. |
deletedItems | | Deleted workflows in your lifecycle workflows instance. |
insights | | The insight container holding workflow insight summaries for a tenant. |
settings | object | (x-ms-discriminator-value: #microsoft.graph.identityGovernance.lifecycleManagementSettings, title: entity) |
taskDefinitions | array | The definition of tasks within the lifecycle workflows instance. |
workflowTemplates | array | The workflow templates in the lifecycle workflow instance. |
workflows | array | The workflows in the lifecycle workflows instance. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | |||
update | update | |||
delete | delete | If-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.
| Name | Datatype | Description |
|---|---|---|
If-Match | string | ETag |
SELECT examples
- get
Retrieved navigation property
SELECT
id,
customTaskExtensions,
deletedItems,
insights,
settings,
taskDefinitions,
workflowTemplates,
workflows
FROM entra_id.identity_governance.lifecycle_workflows
;
UPDATE examples
- update
No description available.
UPDATE entra_id.identity_governance.lifecycle_workflows
SET
id = '{{ id }}',
customTaskExtensions = '{{ customTaskExtensions }}',
deletedItems = '{{ deletedItems }}',
insights = '{{ insights }}',
settings = '{{ settings }}',
taskDefinitions = '{{ taskDefinitions }}',
workflows = '{{ workflows }}',
workflowTemplates = '{{ workflowTemplates }}'
RETURNING
id,
customTaskExtensions,
deletedItems,
insights,
settings,
taskDefinitions,
workflowTemplates,
workflows;
DELETE examples
- delete
No description available.
DELETE FROM entra_id.identity_governance.lifecycle_workflows
WHERE If-Match = '{{ If-Match }}'
;