deviceManagementTroubleshootingEvent リソースの種類
名前空間: microsoft.graph
大事な: /beta バージョンの Microsoft Graph API は変更される可能性があります。運用環境での使用はサポートされていません。
注: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。 |
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"
}
]
}