deviceManagementTroubleshootingEvent リソースの種類

名前空間: microsoft.graph

注: Intune 用 Microsoft Graph API には、テナントの 有効な Intune ライセンスが必要です。

一般エラーを表すイベント。

メソッド

メソッド 戻り値の型 説明
List deviceManagementTroubleshootingEvents deviceManagementTroubleshootingEvent コレクション deviceManagementTroubleshootingEvent オブジェクトのプロパティとリレーションシップをリストします。
Get deviceManagementTroubleshootingEvent deviceManagementTroubleshootingEvent deviceManagementTroubleshootingEvent オブジェクトのプロパティとリレーションシップを読み取ります。
Create deviceManagementTroubleshootingEvent deviceManagementTroubleshootingEvent 新しい deviceManagementTroubleshootingEvent オブジェクトを作成します。
Delete deviceManagementTroubleshootingEvent なし deviceManagementTroubleshootingEvent を削除します。
Update deviceManagementTroubleshootingEvent deviceManagementTroubleshootingEvent deviceManagementTroubleshootingEvent オブジェクトのプロパティを更新します。

プロパティ

プロパティ 説明
id String オブジェクトの UUID
eventDateTime DateTimeOffset イベントが発生した時刻。
correlationId String サービスのエラーをトレースするための ID。
ErrorDetails のトラブルシューティング 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"
    }
  ]
}