Skip to main content

entitlement_management_role_assignments_app_scope

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

Overview

Nameentitlement_management_role_assignments_app_scope
TypeResource
Identra_id.role_management.entitlement_management_role_assignments_app_scope

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
displayNamestringProvides the display name of the app-specific resource represented by the app scope. Read-only.
typestringDescribes the type of app-specific resource represented by the app scope. Read-only.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectunified_role_assignment_idRead-only property with details of the app specific scope when the assignment scope is app specific. Containment entity. Supports $expand for the entitlement provider only.
updateupdateunified_role_assignment_id
deletedeleteunified_role_assignment_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
unified_role_assignment_idstringThe unique identifier of unifiedRoleAssignment
If-MatchstringETag

SELECT examples

Read-only property with details of the app specific scope when the assignment scope is app specific. Containment entity. Supports $expand for the entitlement provider only.

SELECT
id,
displayName,
type
FROM entra_id.role_management.entitlement_management_role_assignments_app_scope
WHERE unified_role_assignment_id = '{{ unified_role_assignment_id }}' -- required
;

UPDATE examples

No description available.

UPDATE entra_id.role_management.entitlement_management_role_assignments_app_scope
SET
id = '{{ id }}',
displayName = '{{ displayName }}',
type = '{{ type }}'
WHERE
unified_role_assignment_id = '{{ unified_role_assignment_id }}' --required
RETURNING
id,
displayName,
type;

DELETE examples

No description available.

DELETE FROM entra_id.role_management.entitlement_management_role_assignments_app_scope
WHERE unified_role_assignment_id = '{{ unified_role_assignment_id }}' --required
AND If-Match = '{{ If-Match }}'
;