groupPolicyCategory 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.

The category entity stores the category of a group policy definition

Methods

Method Return Type Description
Get groupPolicyCategory groupPolicyCategory Read properties and relationships of the groupPolicyCategory object.
Update groupPolicyCategory groupPolicyCategory Update the properties of a groupPolicyCategory object.

Properties

Property Type Description
displayName String The string id of the category's display name
isRoot Boolean Defines if the category is a root category
ingestionSource ingestionSource Defines this category's ingestion source (0 - unknown, 1 - custom, 2 - global). Possible values are: unknown, custom, builtIn, unknownFutureValue.
id String Key of the entity.
lastModifiedDateTime DateTimeOffset The date and time the entity was last modified.

Relationships

Relationship Type Description
parent groupPolicyCategory The parent category
children groupPolicyCategory collection The children categories
definitions groupPolicyDefinition collection The immediate GroupPolicyDefinition children of the category
definitionFile groupPolicyDefinitionFile The id of the definition file the category came from

JSON Representation

Here is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.groupPolicyCategory",
  "displayName": "String",
  "isRoot": true,
  "ingestionSource": "String",
  "id": "String (identifier)",
  "lastModifiedDateTime": "String (timestamp)"
}