directory_role_assignments_app_scope
Creates, updates, deletes, gets or lists a directory_role_assignments_app_scope resource.
Overview
| Name | directory_role_assignments_app_scope |
| Type | Resource |
| Id | entra_id.role_management.directory_role_assignments_app_scope |
Fields
The following fields are returned by SELECT queries:
- get
Retrieved navigation property
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
displayName | string | Provides the display name of the app-specific resource represented by the app scope. Read-only. |
type | string | Describes the type of app-specific resource represented by the app scope. Read-only. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | unified_role_assignment_id | 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. | |
update | update | unified_role_assignment_id | ||
delete | delete | unified_role_assignment_id | If-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.
| Name | Datatype | Description |
|---|---|---|
unified_role_assignment_id | string | The unique identifier of unifiedRoleAssignment |
If-Match | string | ETag |
SELECT examples
- get
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.directory_role_assignments_app_scope
WHERE unified_role_assignment_id = '{{ unified_role_assignment_id }}' -- required
;
UPDATE examples
- update
No description available.
UPDATE entra_id.role_management.directory_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
- delete
No description available.
DELETE FROM entra_id.role_management.directory_role_assignments_app_scope
WHERE unified_role_assignment_id = '{{ unified_role_assignment_id }}' --required
AND If-Match = '{{ If-Match }}'
;