Skip to main content

privileged_access

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

Overview

Nameprivileged_access
TypeResource
Identra_id.identity_governance.privileged_access

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
groupA group that's governed through Privileged Identity Management (PIM).

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselect
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

Retrieved navigation property

SELECT
id,
group
FROM entra_id.identity_governance.privileged_access
;

UPDATE examples

No description available.

UPDATE entra_id.identity_governance.privileged_access
SET
id = '{{ id }}',
group = '{{ group }}'
RETURNING
id,
group;

DELETE examples

No description available.

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