deviceManagementComplexSettingDefinition 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 complex setting
Inherits from deviceManagementSettingDefinition
Methods
Method | Return Type | Description |
---|---|---|
List deviceManagementComplexSettingDefinitions | deviceManagementComplexSettingDefinition collection | List properties and relationships of the deviceManagementComplexSettingDefinition objects. |
Get deviceManagementComplexSettingDefinition | deviceManagementComplexSettingDefinition | Read properties and relationships of the deviceManagementComplexSettingDefinition object. |
Create deviceManagementComplexSettingDefinition | deviceManagementComplexSettingDefinition | Create a new deviceManagementComplexSettingDefinition object. |
Delete deviceManagementComplexSettingDefinition | None | Deletes a deviceManagementComplexSettingDefinition. |
Update deviceManagementComplexSettingDefinition | deviceManagementComplexSettingDefinition | Update the properties of a deviceManagementComplexSettingDefinition 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 |
propertyDefinitionIds | String collection | The definitions of each property of the complex setting |
Relationships
None
JSON Representation
Here is a JSON representation of the resource.
{
"@odata.type": "#microsoft.graph.deviceManagementComplexSettingDefinition",
"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"
]
}
]
}
],
"propertyDefinitionIds": [
"String"
]
}