auditEvent リソース タイプ

名前空間: microsoft.graph

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

監査イベントのプロパティが含まれるクラス。

メソッド

メソッド 戻り値の型 説明
List auditEvents auditEvent コレクション auditEvent オブジェクトのプロパティとリレーションシップをリストします。
Get auditEvent auditEvent auditEvent オブジェクトのプロパティとリレーションシップを読み取ります。
Create auditEvent auditEvent 新しい auditEvent オブジェクトを作成します。
Delete auditEvent なし auditEvent を削除します。
Update auditEvent auditEvent auditEvent オブジェクトのプロパティを更新します。
getAuditCategories function String コレクション まだ文書化されていません
getAuditActivityTypes function String コレクション まだ文書化されていません

プロパティ

プロパティ 説明
id String エンティティのキー。
displayName String イベントの表示名。
componentName String コンポーネント名。
actor auditActor 監査イベントに関連付けられている AAD ユーザーとアプリケーション。
activity String わかりやすいアクティビティの名前。
activityDateTime DateTimeOffset アクティビティが実行された日時 (UTC)。
activityType String 実行されたアクティビティの種類。
activityOperationType String アクティビティの HTTP 操作の種類。
activityResult String アクティビティの結果。
correlationId Guid システム内でのアクティビティに関連付けるために使用されるクライアント要求 ID。
resources auditResource コレクション 変更中のリソースです。
category String 監査のカテゴリです。

リレーションシップ

なし

JSON 表記

以下は、リソースの JSON 表記です。

{
  "@odata.type": "#microsoft.graph.auditEvent",
  "id": "String (identifier)",
  "displayName": "String",
  "componentName": "String",
  "actor": {
    "@odata.type": "microsoft.graph.auditActor",
    "type": "String",
    "auditActorType": "String",
    "userPermissions": [
      "String"
    ],
    "applicationId": "String",
    "applicationDisplayName": "String",
    "userPrincipalName": "String",
    "servicePrincipalName": "String",
    "ipAddress": "String",
    "userId": "String"
  },
  "activity": "String",
  "activityDateTime": "String (timestamp)",
  "activityType": "String",
  "activityOperationType": "String",
  "activityResult": "String",
  "correlationId": "Guid",
  "resources": [
    {
      "@odata.type": "microsoft.graph.auditResource",
      "displayName": "String",
      "modifiedProperties": [
        {
          "@odata.type": "microsoft.graph.auditProperty",
          "displayName": "String",
          "oldValue": "String",
          "newValue": "String"
        }
      ],
      "type": "String",
      "auditResourceType": "String",
      "resourceId": "String"
    }
  ],
  "category": "String"
}