restrictedAppsViolation リソースの種類

名前空間: microsoft.graph

重要: Microsoft Graph /beta バージョンの API は変更される場合があります。実稼働での使用はサポートされていません。

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

ユーザーごとのデバイスごとの制限付きアプリ構成プロファイルの違反

メソッド

メソッド 戻り値の型 説明
制限付きAppsViolationsの一覧 restrictedAppsViolation コレクション RestrictedAppsViolation オブジェクトのプロパティとリレーションシップを一覧表示します。
制限付きAppsViolationを取得する restrictedAppsViolation RestrictedAppsViolation オブジェクトのプロパティとリレーションシップを読み取る。
RestrictedAppsViolation の作成 restrictedAppsViolation 新しい restrictedAppsViolation オブジェクトを作成 します。
RestrictedAppsViolation の削除 なし 制限付き AppsViolation を削除します
制限付きAppsViolationの更新 restrictedAppsViolation RestrictedAppsViolation オブジェクトのプロパティを更新します。

プロパティ

プロパティ 説明
id 文字列 オブジェクトの一意の識別子。 accountId、deviceId、policyId、userId から構成される
userId String ユーザー一意識別子、Guid である必要があります
userName String ユーザー名
managedDeviceId 文字列 管理対象デバイスの一意の識別子は Guid である必要があります
deviceName String デバイス名
deviceConfigurationId String デバイス構成プロファイルの一意の識別子は Guid である必要があります
deviceConfigurationName String デバイス構成プロファイル名
platformType policyPlatformType プラットフォームの種類。 使用可能な値は、androidandroidForWorkiOSmacOSwindowsPhone81windows81AndLaterwindows10AndLaterandroidWorkProfilewindows10XProfileandroidAOSPall です。
restrictedAppsState restrictedAppsState 制限付きアプリの状態。 可能な値は、prohibitedAppsnotApprovedApps です。
restrictedApps managedDeviceReportedApp コレクション 違反した制限付きアプリの一覧

リレーションシップ

なし

JSON 表記

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

{
  "@odata.type": "#microsoft.graph.restrictedAppsViolation",
  "id": "String (identifier)",
  "userId": "String",
  "userName": "String",
  "managedDeviceId": "String",
  "deviceName": "String",
  "deviceConfigurationId": "String",
  "deviceConfigurationName": "String",
  "platformType": "String",
  "restrictedAppsState": "String",
  "restrictedApps": [
    {
      "@odata.type": "microsoft.graph.managedDeviceReportedApp",
      "appId": "String"
    }
  ]
}