Skip to content

Latest commit

 

History

History
48 lines (41 loc) · 1.25 KB

intune-rbac-rolepermission.md

File metadata and controls

48 lines (41 loc) · 1.25 KB
title description author localization_priority ms.subservice doc_type
rolePermission resource type
Contains the set of ResourceActions determining the allowed and not allowed permissions for each role.
jaiprakashmb
Normal
intune
resourcePageType

rolePermission resource type

Namespace: microsoft.graph

Note: The Microsoft Graph API for Intune requires an active Intune license for the tenant.

Contains the set of ResourceActions determining the allowed and not allowed permissions for each role.

Properties

Property Type Description
resourceActions resourceAction collection Resource Actions each containing a set of allowed and not allowed permissions.

Relationships

None

JSON Representation

Here is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.rolePermission",
  "resourceActions": [
    {
      "@odata.type": "microsoft.graph.resourceAction",
      "allowedResourceActions": [
        "String"
      ],
      "notAllowedResourceActions": [
        "String"
      ]
    }
  ]
}