deviceManagementTroubleshootingEvent 资源类型

命名空间:microsoft.graph

重要: /beta 版本下的 Microsoft Graph API 可能会更改;不支持生产使用。

注意:适用于 Intune 的 Microsoft Graph API 需要适用于租户的活动 Intune 许可证

表示一般性故障的事件。

方法

方法 返回类型 说明
列出 deviceManagementTroubleshootingEvents deviceManagementTroubleshootingEvent 集合 列出 deviceManagementTroubleshootingEvent 对象的属性和关系。
获取 deviceManagementTroubleshootingEvent deviceManagementTroubleshootingEvent 读取 deviceManagementTroubleshootingEvent 对象的属性和关系。
创建 deviceManagementTroubleshootingEvent deviceManagementTroubleshootingEvent 创建新的 deviceManagementTroubleshootingEvent 对象。
删除 deviceManagementTroubleshootingEvent 删除 deviceManagementTroubleshootingEvent
更新 deviceManagementTroubleshootingEvent deviceManagementTroubleshootingEvent 更新 deviceManagementTroubleshootingEvent 对象的属性。

属性

属性 类型 说明
id String 对象的 UUID
eventDateTime DateTimeOffset 事件发生的时间。
correlationId String 用于跟踪服务中的故障的 ID。
troubleshootingErrorDetails deviceManagementTroubleshootingErrorDetails 包含有关错误及其修正的详细信息的对象。
eventName String 与故障排除事件对应的事件名称。 它是可选字段
additionalInformation keyValuePair 集合 一组字符串键和字符串值对,提供有关故障排除事件的其他信息

关系

JSON 表示形式

下面是资源的 JSON 表示形式。

{
  "@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"
    }
  ]
}