Skip to main content

entitlement_management_settings

Creates, updates, deletes, gets or lists an entitlement_management_settings resource.

Overview

Nameentitlement_management_settings
TypeResource
Identra_id.identity_governance.entitlement_management_settings

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
durationUntilExternalUserDeletedAfterBlockedstring (duration)If externalUserLifecycleAction is blockSignInAndDelete, the duration, typically many days, after an external user is blocked from sign in before their account is deleted. (pattern: ^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$)
externalUserLifecycleActionAutomatic action that the service should take when an external user's last access package assignment is removed. The possible values are: none, blockSignIn, blockSignInAndDelete, unknownFutureValue.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectRetrieve the properties of an entitlementManagementSettings object.
updateupdateUpdate an existing entitlementManagementSettings object to change one or more of its properties.
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

Retrieve the properties of an entitlementManagementSettings object.

SELECT
id,
durationUntilExternalUserDeletedAfterBlocked,
externalUserLifecycleAction
FROM entra_id.identity_governance.entitlement_management_settings
;

UPDATE examples

Update an existing entitlementManagementSettings object to change one or more of its properties.

UPDATE entra_id.identity_governance.entitlement_management_settings
SET
id = '{{ id }}',
durationUntilExternalUserDeletedAfterBlocked = '{{ durationUntilExternalUserDeletedAfterBlocked }}',
externalUserLifecycleAction = '{{ externalUserLifecycleAction }}'
RETURNING
id,
durationUntilExternalUserDeletedAfterBlocked,
externalUserLifecycleAction;

DELETE examples

No description available.

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