entitlement_management_resource_role_scopes
Creates, updates, deletes, gets or lists an entitlement_management_resource_role_scopes resource.
Overview
| Name | entitlement_management_resource_role_scopes |
| Type | Resource |
| Id | entra_id.identity_governance.entitlement_management_resource_role_scopes |
Fields
The following fields are returned by SELECT queries:
- get
- list
Retrieved navigation property
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
createdDateTime | string (date-time) | The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z (pattern: ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$) |
role | | |
scope | |
Retrieved collection
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
createdDateTime | string (date-time) | The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z (pattern: ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$) |
role | | |
scope | |
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 | ||
list | select | |||
insert | insert | |||
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
- list
Retrieved navigation property
SELECT
id,
createdDateTime,
role,
scope
FROM entra_id.identity_governance.entitlement_management_resource_role_scopes
WHERE access_package_resource_role_scope_id = '{{ access_package_resource_role_scope_id }}' -- required
;
Retrieved collection
SELECT
id,
createdDateTime,
role,
scope
FROM entra_id.identity_governance.entitlement_management_resource_role_scopes
;
INSERT examples
- insert
- Manifest
No description available.
INSERT INTO entra_id.identity_governance.entitlement_management_resource_role_scopes (
id,
createdDateTime,
role,
scope
)
SELECT
'{{ id }}',
'{{ createdDateTime }}',
'{{ role }}',
'{{ scope }}'
RETURNING
id,
createdDateTime,
role,
scope
;
# Description fields are for documentation purposes
- name: entitlement_management_resource_role_scopes
props:
- name: id
value: "{{ id }}"
description: |
The unique identifier for an entity. Read-only.
- name: createdDateTime
value: "{{ createdDateTime }}"
description: |
The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
- name: role
value: "{{ role }}"
- name: scope
value: "{{ scope }}"
UPDATE examples
- update
No description available.
UPDATE entra_id.identity_governance.entitlement_management_resource_role_scopes
SET
id = '{{ id }}',
createdDateTime = '{{ createdDateTime }}',
role = '{{ role }}',
scope = '{{ scope }}'
WHERE
access_package_resource_role_scope_id = '{{ access_package_resource_role_scope_id }}' --required
RETURNING
id,
createdDateTime,
role,
scope;
DELETE examples
- delete
No description available.
DELETE FROM entra_id.identity_governance.entitlement_management_resource_role_scopes
WHERE access_package_resource_role_scope_id = '{{ access_package_resource_role_scope_id }}' --required
AND If-Match = '{{ If-Match }}'
;