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

Conflict summary for a set of device configuration policies.

Methods

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

Properties

Property Type Description
conflictingDeviceConfigurations settingSource collection The set of policies in conflict with the given setting
id String The id for this set of conflicting policies. This id is the ids of all the policies in ConflictingDeviceConfigurations in lexicographical order separated by underscores.
contributingSettings String collection The set of settings in conflict with the given policies
deviceCheckinsImpacted Int32 The count of checkins impacted by the conflicting policies and settings

Relationships

None

JSON Representation

Here is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.deviceConfigurationConflictSummary",
  "conflictingDeviceConfigurations": [
    {
      "@odata.type": "microsoft.graph.settingSource",
      "id": "String",
      "displayName": "String",
      "sourceType": "String"
    }
  ],
  "id": "String (identifier)",
  "contributingSettings": [
    "String"
  ],
  "deviceCheckinsImpacted": 1024
}