mobileAppIntentAndState リソースの種類

名前空間: microsoft.graph

大事な: /beta バージョンの Microsoft Graph API は変更される可能性があります。運用環境での使用はサポートされていません。

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

特定のデバイスの MobileApp Intent と Install State。

メソッド

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

プロパティ

プロパティ 説明
id String オブジェクトの UUID
managedDeviceIdentifier String Intune によって作成または収集されるデバイス識別子。
userId String デバイスを登録しようとするユーザーの識別子。
mobileAppList mobileAppIntentAndStateDetail コレクション テナントのペイロードの意図と状態の一覧。

リレーションシップ

なし

JSON 表記

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

{
  "@odata.type": "#microsoft.graph.mobileAppIntentAndState",
  "id": "String (identifier)",
  "managedDeviceIdentifier": "String",
  "userId": "String",
  "mobileAppList": [
    {
      "@odata.type": "microsoft.graph.mobileAppIntentAndStateDetail",
      "applicationId": "String",
      "displayName": "String",
      "mobileAppIntent": "String",
      "displayVersion": "String",
      "installState": "String",
      "supportedDeviceTypes": [
        {
          "@odata.type": "microsoft.graph.mobileAppSupportedDeviceType",
          "type": "String",
          "minimumOperatingSystemVersion": "String",
          "maximumOperatingSystemVersion": "String"
        }
      ]
    }
  ]
}