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

Integer Setting Value Template

Inherits from deviceManagementConfigurationSimpleSettingValueTemplate

Properties

Property Type Description
settingValueTemplateId String Setting Value Template Id Inherited from deviceManagementConfigurationSimpleSettingValueTemplate
defaultValue deviceManagementConfigurationIntegerSettingValueDefaultTemplate Integer Setting Value Default Template.
recommendedValueDefinition deviceManagementConfigurationIntegerSettingValueDefinitionTemplate Recommended value definition.
requiredValueDefinition deviceManagementConfigurationIntegerSettingValueDefinitionTemplate Required value definition.

Relationships

None

JSON Representation

Here is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.deviceManagementConfigurationIntegerSettingValueTemplate",
  "settingValueTemplateId": "String",
  "defaultValue": {
    "@odata.type": "microsoft.graph.deviceManagementConfigurationIntegerSettingValueConstantDefaultTemplate",
    "constantValue": 1024
  },
  "recommendedValueDefinition": {
    "@odata.type": "microsoft.graph.deviceManagementConfigurationIntegerSettingValueDefinitionTemplate",
    "minValue": 1024,
    "maxValue": 1024
  },
  "requiredValueDefinition": {
    "@odata.type": "microsoft.graph.deviceManagementConfigurationIntegerSettingValueDefinitionTemplate",
    "minValue": 1024,
    "maxValue": 1024
  }
}