Skip to main content

lifecycle_workflows_settings

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

Overview

Namelifecycle_workflows_settings
TypeResource
Identra_id.identity_governance.lifecycle_workflows_settings

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
emailSettingsobject (title: emailSettings)
workflowScheduleIntervalInHoursnumber (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:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectRead the properties and relationships of a lifecycleManagementSettings object.
updateupdateUpdate 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.

NameDatatypeDescription

SELECT examples

Read the properties and relationships of a lifecycleManagementSettings object.

SELECT
id,
emailSettings,
workflowScheduleIntervalInHours
FROM entra_id.identity_governance.lifecycle_workflows_settings
;

UPDATE examples

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;