deviceManagementAbstractComplexSettingDefinition 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 an abstract complex setting

Inherits from deviceManagementSettingDefinition

Methods

Method Return Type Description
List deviceManagementAbstractComplexSettingDefinitions deviceManagementAbstractComplexSettingDefinition collection List properties and relationships of the deviceManagementAbstractComplexSettingDefinition objects.
Get deviceManagementAbstractComplexSettingDefinition deviceManagementAbstractComplexSettingDefinition Read properties and relationships of the deviceManagementAbstractComplexSettingDefinition object.
Create deviceManagementAbstractComplexSettingDefinition deviceManagementAbstractComplexSettingDefinition Create a new deviceManagementAbstractComplexSettingDefinition object.
Delete deviceManagementAbstractComplexSettingDefinition None Deletes a deviceManagementAbstractComplexSettingDefinition.
Update deviceManagementAbstractComplexSettingDefinition deviceManagementAbstractComplexSettingDefinition Update the properties of a deviceManagementAbstractComplexSettingDefinition 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
implementations String collection List of definition IDs for all possible implementations of this abstract complex setting

Relationships

None

JSON Representation

Here is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.deviceManagementAbstractComplexSettingDefinition",
  "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"
          ]
        }
      ]
    }
  ],
  "implementations": [
    "String"
  ]
}