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

Setting Template

Methods

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

Properties

Property Type Description
id String Key of this setting template within the policy template which contains it. Automatically generated.
settingInstanceTemplate deviceManagementConfigurationSettingInstanceTemplate Setting Instance Template

Relationships

Relationship Type Description
settingDefinitions deviceManagementConfigurationSettingDefinition collection List of related Setting Definitions

JSON Representation

Here is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.deviceManagementConfigurationSettingTemplate",
  "id": "String (identifier)",
  "settingInstanceTemplate": {
    "@odata.type": "microsoft.graph.deviceManagementConfigurationSimpleSettingInstanceTemplate",
    "settingInstanceTemplateId": "String",
    "settingDefinitionId": "String",
    "isRequired": true,
    "simpleSettingValueTemplate": {
      "@odata.type": "microsoft.graph.deviceManagementConfigurationStringSettingValueTemplate",
      "settingValueTemplateId": "String",
      "defaultValue": {
        "@odata.type": "microsoft.graph.deviceManagementConfigurationStringSettingValueConstantDefaultTemplate",
        "constantValue": "String"
      }
    }
  }
}