Skip to main content

lifecycle_workflows

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

Overview

Namelifecycle_workflows
TypeResource
Identra_id.identity_governance.lifecycle_workflows

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
customTaskExtensionsarrayThe customTaskExtension instance.
deletedItemsDeleted workflows in your lifecycle workflows instance.
insightsThe insight container holding workflow insight summaries for a tenant.
settingsobject (x-ms-discriminator-value: #microsoft.graph.identityGovernance.lifecycleManagementSettings, title: entity)
taskDefinitionsarrayThe definition of tasks within the lifecycle workflows instance.
workflowTemplatesarrayThe workflow templates in the lifecycle workflow instance.
workflowsarrayThe workflows in the lifecycle workflows instance.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselect
updateupdate
deletedeleteIf-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
If-MatchstringETag

SELECT examples

Retrieved navigation property

SELECT
id,
customTaskExtensions,
deletedItems,
insights,
settings,
taskDefinitions,
workflowTemplates,
workflows
FROM entra_id.identity_governance.lifecycle_workflows
;

UPDATE examples

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

No description available.

DELETE FROM entra_id.identity_governance.lifecycle_workflows
WHERE If-Match = '{{ If-Match }}'
;