lifecycle_workflows_settings
Creates, updates, deletes, gets or lists a lifecycle_workflows_settings resource.
Overview
| Name | lifecycle_workflows_settings |
| Type | Resource |
| Id | entra_id.identity_governance.lifecycle_workflows_settings |
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. |
emailSettings | object | (title: emailSettings) |
workflowScheduleIntervalInHours | number (int32) | The interval in hours at which all workflows running in the tenant should be scheduled for execution. This interval has a minimum value of 1 and a maximum value of 24. The default value is 3 hours. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | Read the properties and relationships of a lifecycleManagementSettings object. | ||
update | update | Update the properties of a lifecycleManagementSettings object. |
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 |
|---|
SELECT examples
- get
Read the properties and relationships of a lifecycleManagementSettings object.
SELECT
id,
emailSettings,
workflowScheduleIntervalInHours
FROM entra_id.identity_governance.lifecycle_workflows_settings
;
UPDATE examples
- update
Update the properties of a lifecycleManagementSettings object.
UPDATE entra_id.identity_governance.lifecycle_workflows_settings
SET
id = '{{ id }}',
emailSettings = '{{ emailSettings }}',
workflowScheduleIntervalInHours = {{ workflowScheduleIntervalInHours }}
RETURNING
id,
emailSettings,
workflowScheduleIntervalInHours;