groupPolicyDefinitionValue 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 definition value entity stores the value for a single group policy definition.

Methods

Method Return Type Description
List groupPolicyDefinitionValues groupPolicyDefinitionValue collection List properties and relationships of the groupPolicyDefinitionValue objects.
Get groupPolicyDefinitionValue groupPolicyDefinitionValue Read properties and relationships of the groupPolicyDefinitionValue object.
Create groupPolicyDefinitionValue groupPolicyDefinitionValue Create a new groupPolicyDefinitionValue object.
Delete groupPolicyDefinitionValue None Deletes a groupPolicyDefinitionValue.
Update groupPolicyDefinitionValue groupPolicyDefinitionValue Update the properties of a groupPolicyDefinitionValue object.

Properties

Property Type Description
createdDateTime DateTimeOffset The date and time the object was created.
enabled Boolean Enables or disables the associated group policy definition.
configurationType groupPolicyConfigurationType Specifies how the value should be configured. This can be either as a Policy or as a Preference. Possible values are: policy, preference.
id String Key of the entity.
lastModifiedDateTime DateTimeOffset The date and time the entity was last modified.

Relationships

Relationship Type Description
presentationValues groupPolicyPresentationValue collection The associated group policy presentation values with the definition value.
definition groupPolicyDefinition The associated group policy definition with the value.

JSON Representation

Here is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.groupPolicyDefinitionValue",
  "createdDateTime": "String (timestamp)",
  "enabled": true,
  "configurationType": "String",
  "id": "String (identifier)",
  "lastModifiedDateTime": "String (timestamp)"
}