Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace: microsoft.graph
Important: APIs under the /beta version in Microsoft Graph are subject to change which could break your applications. While Intune /beta APIs are supported by Microsoft, you should use these at your own discretion. In general, /beta APIs are not recommended for use in production applications. To determine whether an API is available in v1.0, use the Version selector
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"
}
}
}
}