Skip to main content

entitlement_management_resource_role_scopes_role

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

Overview

Nameentitlement_management_resource_role_scopes_role
TypeResource
Identra_id.identity_governance.entitlement_management_resource_role_scopes_role

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
descriptionstringA description for the resource role.
displayNamestringThe display name of the resource role such as the role defined by the application.
originIdstringThe unique identifier of the resource role in the origin system. For a SharePoint Online site, the originId is the sequence number of the role in the site.
originSystemstringThe type of the resource in the origin system, such as SharePointOnline, AadApplication, or AadGroup.
resource

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectaccess_package_resource_role_scope_id
updateupdateaccess_package_resource_role_scope_id
deletedeleteaccess_package_resource_role_scope_idIf-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
access_package_resource_role_scope_idstringThe unique identifier of accessPackageResourceRoleScope
If-MatchstringETag

SELECT examples

Retrieved navigation property

SELECT
id,
description,
displayName,
originId,
originSystem,
resource
FROM entra_id.identity_governance.entitlement_management_resource_role_scopes_role
WHERE access_package_resource_role_scope_id = '{{ access_package_resource_role_scope_id }}' -- required
;

UPDATE examples

No description available.

UPDATE entra_id.identity_governance.entitlement_management_resource_role_scopes_role
SET
id = '{{ id }}',
description = '{{ description }}',
displayName = '{{ displayName }}',
originId = '{{ originId }}',
originSystem = '{{ originSystem }}',
resource = '{{ resource }}'
WHERE
access_package_resource_role_scope_id = '{{ access_package_resource_role_scope_id }}' --required
RETURNING
id,
description,
displayName,
originId,
originSystem,
resource;

DELETE examples

No description available.

DELETE FROM entra_id.identity_governance.entitlement_management_resource_role_scopes_role
WHERE access_package_resource_role_scope_id = '{{ access_package_resource_role_scope_id }}' --required
AND If-Match = '{{ If-Match }}'
;