lifecycle_workflows_insights
Creates, updates, deletes, gets or lists a lifecycle_workflows_insights resource.
Overview
| Name | lifecycle_workflows_insights |
| Type | Resource |
| Id | entra_id.identity_governance.lifecycle_workflows_insights |
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. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | The insight container holding workflow insight summaries for a tenant. | ||
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
The insight container holding workflow insight summaries for a tenant.
SELECT
id
FROM entra_id.identity_governance.lifecycle_workflows_insights
;
UPDATE examples
- update
No description available.
UPDATE entra_id.identity_governance.lifecycle_workflows_insights
SET
id = '{{ id }}'
RETURNING
id,
@odata.type;
DELETE examples
- delete
No description available.
DELETE FROM entra_id.identity_governance.lifecycle_workflows_insights
WHERE If-Match = '{{ If-Match }}'
;