Skip to main content

lifecycle_workflows_insights

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

Overview

Namelifecycle_workflows_insights
TypeResource
Identra_id.identity_governance.lifecycle_workflows_insights

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectThe insight container holding workflow insight summaries for a tenant.
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

The insight container holding workflow insight summaries for a tenant.

SELECT
id
FROM entra_id.identity_governance.lifecycle_workflows_insights
;

UPDATE examples

No description available.

UPDATE entra_id.identity_governance.lifecycle_workflows_insights
SET
id = '{{ id }}'
RETURNING
id,
@odata.type;

DELETE examples

No description available.

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