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

Event representing an general failure.

Methods

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

Properties

Property Type Description
id String UUID for the object
eventDateTime DateTimeOffset Time when the event occurred .
correlationId String Id used for tracing the failure in the service.
troubleshootingErrorDetails deviceManagementTroubleshootingErrorDetails Object containing detailed information about the error and its remediation.
eventName String Event Name corresponding to the Troubleshooting Event. It is an Optional field
additionalInformation keyValuePair collection A set of string key and string value pairs which provides additional information on the Troubleshooting event

Relationships

None

JSON Representation

Here is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.deviceManagementTroubleshootingEvent",
  "id": "String (identifier)",
  "eventDateTime": "String (timestamp)",
  "correlationId": "String",
  "troubleshootingErrorDetails": {
    "@odata.type": "microsoft.graph.deviceManagementTroubleshootingErrorDetails",
    "context": "String",
    "failure": "String",
    "failureDetails": "String",
    "remediation": "String",
    "resources": [
      {
        "@odata.type": "microsoft.graph.deviceManagementTroubleshootingErrorResource",
        "text": "String",
        "link": "String"
      }
    ]
  },
  "eventName": "String",
  "additionalInformation": [
    {
      "@odata.type": "microsoft.graph.keyValuePair",
      "name": "String",
      "value": "String"
    }
  ]
}