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

Entity representing the defintion for a collection setting

Inherits from deviceManagementSettingDefinition

Methods

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

Properties

Property Type Description
id String The ID of the setting definition Inherited from deviceManagementSettingDefinition
valueType deviceManangementIntentValueType The data type of the value Inherited from deviceManagementSettingDefinition. Possible values are: integer, boolean, string, complex, collection, abstractComplex.
displayName String The setting's display name Inherited from deviceManagementSettingDefinition
isTopLevel Boolean If the setting is top level, it can be configured without the need to be wrapped in a collection or complex setting Inherited from deviceManagementSettingDefinition
description String The setting's description Inherited from deviceManagementSettingDefinition
placeholderText String Placeholder text as an example of valid input Inherited from deviceManagementSettingDefinition
documentationUrl String Url to setting documentation Inherited from deviceManagementSettingDefinition
headerTitle String title of the setting header represents a category/section of a setting/settings Inherited from deviceManagementSettingDefinition
headerSubtitle String subtitle of the setting header for more details about the category/section Inherited from deviceManagementSettingDefinition
keywords String collection Keywords associated with the setting Inherited from deviceManagementSettingDefinition
constraints deviceManagementConstraint collection Collection of constraints for the setting value Inherited from deviceManagementSettingDefinition
dependencies deviceManagementSettingDependency collection Collection of dependencies on other settings Inherited from deviceManagementSettingDefinition
elementDefinitionId String The Setting Definition ID that describes what each element of the collection looks like

Relationships

None

JSON Representation

Here is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.deviceManagementCollectionSettingDefinition",
  "id": "String (identifier)",
  "valueType": "String",
  "displayName": "String",
  "isTopLevel": true,
  "description": "String",
  "placeholderText": "String",
  "documentationUrl": "String",
  "headerTitle": "String",
  "headerSubtitle": "String",
  "keywords": [
    "String"
  ],
  "constraints": [
    {
      "@odata.type": "microsoft.graph.deviceManagementSettingAppConstraint",
      "supportedTypes": [
        "String"
      ]
    }
  ],
  "dependencies": [
    {
      "@odata.type": "microsoft.graph.deviceManagementSettingDependency",
      "definitionId": "String",
      "constraints": [
        {
          "@odata.type": "microsoft.graph.deviceManagementSettingAppConstraint",
          "supportedTypes": [
            "String"
          ]
        }
      ]
    }
  ],
  "elementDefinitionId": "String"
}