deviceAndAppManagementRoleAssignment resource type
Namespace: microsoft.graph
Note: The Microsoft Graph API for Intune requires an active Intune license for the tenant.
The Role Assignment resource. Role assignments tie together a role definition with members and scopes. There can be one or more role assignments per role. This applies to custom and built-in roles.
Inherits from roleAssignment
Methods
Method | Return Type | Description |
---|---|---|
List deviceAndAppManagementRoleAssignments | deviceAndAppManagementRoleAssignment collection | List properties and relationships of the deviceAndAppManagementRoleAssignment objects. |
Get deviceAndAppManagementRoleAssignment | deviceAndAppManagementRoleAssignment | Read properties and relationships of the deviceAndAppManagementRoleAssignment object. |
Create deviceAndAppManagementRoleAssignment | deviceAndAppManagementRoleAssignment | Create a new deviceAndAppManagementRoleAssignment object. |
Delete deviceAndAppManagementRoleAssignment | None | Deletes a deviceAndAppManagementRoleAssignment. |
Update deviceAndAppManagementRoleAssignment | deviceAndAppManagementRoleAssignment | Update the properties of a deviceAndAppManagementRoleAssignment object. |
Properties
Property | Type | Description |
---|---|---|
id | String | Key of the entity. This is read-only and automatically generated. Inherited from roleAssignment |
displayName | String | The display or friendly name of the role Assignment. Inherited from roleAssignment |
description | String | Description of the Role Assignment. Inherited from roleAssignment |
resourceScopes | String collection | List of ids of role scope member security groups. These are IDs from Azure Active Directory. Inherited from roleAssignment |
members | String collection | The list of ids of role member security groups. These are IDs from Azure Active Directory. |
Relationships
Relationship | Type | Description |
---|---|---|
roleDefinition | roleDefinition | Role definition this assignment is part of. Inherited from roleAssignment |
JSON Representation
Here is a JSON representation of the resource.
{
"@odata.type": "#microsoft.graph.deviceAndAppManagementRoleAssignment",
"id": "String (identifier)",
"displayName": "String",
"description": "String",
"resourceScopes": [
"String"
],
"members": [
"String"
]
}