entitlement_management_role_eligibility_schedule_requests_principal
Creates, updates, deletes, gets or lists an entitlement_management_role_eligibility_schedule_requests_principal resource.
Overview
| Name | entitlement_management_role_eligibility_schedule_requests_principal |
| Type | Resource |
| Id | entra_id.role_management.entitlement_management_role_eligibility_schedule_requests_principal |
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. |
deletedDateTime | string (date-time) | Date and time when this object was deleted. Always null when the object hasn't been deleted. (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])$) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | unified_role_eligibility_schedule_request_id | The principal that's getting a role eligibility through the request. Supports $expand. |
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_eligibility_schedule_request_id | string | The unique identifier of unifiedRoleEligibilityScheduleRequest |
SELECT examples
- get
The principal that's getting a role eligibility through the request. Supports $expand.
SELECT
id,
deletedDateTime
FROM entra_id.role_management.entitlement_management_role_eligibility_schedule_requests_principal
WHERE unified_role_eligibility_schedule_request_id = '{{ unified_role_eligibility_schedule_request_id }}' -- required
;