groupPolicyPresentationValueList 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 entity represents a collection of name/value pairs of a list box presentation on a policy definition.

Inherits from groupPolicyPresentationValue

Methods

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

Properties

Property Type Description
lastModifiedDateTime DateTimeOffset The date and time the object was last modified. Inherited from groupPolicyPresentationValue
createdDateTime DateTimeOffset The date and time the object was created. Inherited from groupPolicyPresentationValue
id String Key of the entity. Inherited from groupPolicyPresentationValue
values keyValuePair collection A list of pairs for the associated presentation.

Relationships

Relationship Type Description
definitionValue groupPolicyDefinitionValue The group policy definition value associated with the presentation value. Inherited from groupPolicyPresentationValue
presentation groupPolicyPresentation The group policy presentation associated with the presentation value. Inherited from groupPolicyPresentationValue

JSON Representation

Here is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.groupPolicyPresentationValueList",
  "lastModifiedDateTime": "String (timestamp)",
  "createdDateTime": "String (timestamp)",
  "id": "String (identifier)",
  "values": [
    {
      "@odata.type": "microsoft.graph.keyValuePair",
      "name": "String",
      "value": "String"
    }
  ]
}