entitlement_management_resource_role_scopes_scope
Creates, updates, deletes, gets or lists an entitlement_management_resource_role_scopes_scope resource.
Overview
| Name | entitlement_management_resource_role_scopes_scope |
| Type | Resource |
| Id | entra_id.identity_governance.entitlement_management_resource_role_scopes_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. |
description | string | The description of the scope. |
displayName | string | The display name of the scope. |
isRootScope | boolean | True if the scopes are arranged in a hierarchy and this is the top or root scope of the resource. |
originId | string | The unique identifier for the scope in the resource as defined in the origin system. |
originSystem | string | The origin system for the scope. |
resource | |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | access_package_resource_role_scope_id | ||
update | update | access_package_resource_role_scope_id | ||
delete | delete | access_package_resource_role_scope_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 |
|---|---|---|
access_package_resource_role_scope_id | string | The unique identifier of accessPackageResourceRoleScope |
If-Match | string | ETag |
SELECT examples
- get
Retrieved navigation property
SELECT
id,
description,
displayName,
isRootScope,
originId,
originSystem,
resource
FROM entra_id.identity_governance.entitlement_management_resource_role_scopes_scope
WHERE access_package_resource_role_scope_id = '{{ access_package_resource_role_scope_id }}' -- required
;
UPDATE examples
- update
No description available.
UPDATE entra_id.identity_governance.entitlement_management_resource_role_scopes_scope
SET
id = '{{ id }}',
description = '{{ description }}',
displayName = '{{ displayName }}',
isRootScope = {{ isRootScope }},
originId = '{{ originId }}',
originSystem = '{{ originSystem }}',
resource = '{{ resource }}'
WHERE
access_package_resource_role_scope_id = '{{ access_package_resource_role_scope_id }}' --required
RETURNING
id,
description,
displayName,
isRootScope,
originId,
originSystem,
resource;
DELETE examples
- delete
No description available.
DELETE FROM entra_id.identity_governance.entitlement_management_resource_role_scopes_scope
WHERE access_package_resource_role_scope_id = '{{ access_package_resource_role_scope_id }}' --required
AND If-Match = '{{ If-Match }}'
;