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

Represents an ADMX dropdownList element and an ADMX enum element.

Inherits from groupPolicyUploadedPresentation

Methods

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

Properties

Property Type Description
label String Localized text label for any presentation entity. The default value is empty. Inherited from groupPolicyPresentation
id String Key of the entity. Inherited from groupPolicyPresentation
lastModifiedDateTime DateTimeOffset The date and time the entity was last modified. Inherited from groupPolicyPresentation
defaultItem groupPolicyPresentationDropdownListItem Localized string value identifying the default choice of the list of items.
items groupPolicyPresentationDropdownListItem collection Represents a set of localized display names and their associated values.
required Boolean Requirement to enter a value in the parameter box. The default value is false.

Relationships

Relationship Type Description
definition groupPolicyDefinition The group policy definition associated with the presentation. Inherited from groupPolicyPresentation

JSON Representation

Here is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.groupPolicyPresentationDropdownList",
  "label": "String",
  "id": "String (identifier)",
  "lastModifiedDateTime": "String (timestamp)",
  "defaultItem": {
    "@odata.type": "microsoft.graph.groupPolicyPresentationDropdownListItem",
    "displayName": "String",
    "value": "String"
  },
  "items": [
    {
      "@odata.type": "microsoft.graph.groupPolicyPresentationDropdownListItem",
      "displayName": "String",
      "value": "String"
    }
  ],
  "required": true
}