deviceManagementResourceAccessProfileBase resource type

Namespace: microsoft.graph

Important: Microsoft Graph APIs under the /beta version are subject to change; production use is not supported.

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

Base Profile Type for Resource Access

Methods

Method Return Type Description
List deviceManagementResourceAccessProfileBases deviceManagementResourceAccessProfileBase collection List properties and relationships of the deviceManagementResourceAccessProfileBase objects.
Get deviceManagementResourceAccessProfileBase deviceManagementResourceAccessProfileBase Read properties and relationships of the deviceManagementResourceAccessProfileBase object.
assign action deviceManagementResourceAccessProfileAssignment collection
queryByPlatformType action deviceManagementResourceAccessProfileBase collection

Properties

Property Type Description
id String Profile identifier
version Int32 Version of the profile
displayName String Profile display name
description String Profile description
creationDateTime DateTimeOffset DateTime profile was created
lastModifiedDateTime DateTimeOffset DateTime profile was last modified
roleScopeTagIds String collection Scope Tags
serverApplicabilityRules applicabilityRule collection The list of Applicability Rules for a Device Configuration Profile

Relationships

Relationship Type Description
assignments deviceManagementResourceAccessProfileAssignment collection The list of assignments for the device configuration profile.

JSON Representation

Here is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.deviceManagementResourceAccessProfileBase",
  "id": "String (identifier)",
  "version": 1024,
  "displayName": "String",
  "description": "String",
  "creationDateTime": "String (timestamp)",
  "lastModifiedDateTime": "String (timestamp)",
  "roleScopeTagIds": [
    "String"
  ],
  "serverApplicabilityRules": [
    {
      "@odata.type": "microsoft.graph.osVersionApplicabilityRule",
      "filterType": "String",
      "minOSVersion": "String",
      "maxOSVersion": "String"
    }
  ]
}