entitlement_management_assignments_target
Creates, updates, deletes, gets or lists an entitlement_management_assignments_target resource.
Overview
| Name | entitlement_management_assignments_target |
| Type | Resource |
| Id | entra_id.identity_governance.entitlement_management_assignments_target |
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. |
connectedOrganization | | The connected organization of the subject. Read-only. Nullable. |
displayName | string | The display name of the subject. |
email | string | The email address of the subject. |
objectId | string | The object identifier of the subject. null if the subject isn't yet a user in the tenant. |
onPremisesSecurityIdentifier | string | A string representation of the principal's security identifier, if known, or null if the subject doesn't have a security identifier. |
principalName | string | The principal name, if known, of the subject. |
subjectType | | The resource type of the subject. The possible values are: notSpecified, user, servicePrincipal, unknownFutureValue. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | access_package_assignment_id | The subject of the access package assignment. Read-only. Nullable. Supports $expand. Supports $filter (eq) on objectId. |
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_assignment_id | string | The unique identifier of accessPackageAssignment |
SELECT examples
- get
The subject of the access package assignment. Read-only. Nullable. Supports $expand. Supports $filter (eq) on objectId.
SELECT
id,
connectedOrganization,
displayName,
email,
objectId,
onPremisesSecurityIdentifier,
principalName,
subjectType
FROM entra_id.identity_governance.entitlement_management_assignments_target
WHERE access_package_assignment_id = '{{ access_package_assignment_id }}' -- required
;