mobileApp リソースの種類
名前空間: microsoft.graph
注:Intune 用 Microsoft Graph API には、テナントの有効な Intune ライセンスが必要です。
Intune モバイル アプリの基本プロパティを含む抽象クラスです。 注: $expand=assignments
を使用したモバイル アプリの一覧表示は非推奨になりました。 代わりに、assignments
で$expand
クエリを実行せずにアプリの一覧を取得します。 次に、個々のアプリケーションで拡張を実行します。
メソッド
メソッド | 戻り値の型 | 説明 |
---|---|---|
mobileApps のリスト | mobileApp コレクション | mobileApp オブジェクトのプロパティとリレーションシップをリストします。 |
MobileApp の取得 | mobileApp | mobileApp オブジェクトのプロパティとリレーションシップを読み取ります。 |
アクションの割り当て | なし | まだ文書化されていません |
プロパティ
プロパティ | 型 | 説明 |
---|---|---|
id | String | エンティティのキー。 |
displayName | String | 管理者が提供またはインポートしたアプリのタイトルです。 |
description | String | アプリの説明。 |
publisher | String | アプリの発行元。 |
largeIcon | mimeContent | アプリの詳細に表示され、アイコンのアップロードに使用される大きいアイコン。 |
createdDateTime | DateTimeOffset | アプリが作成された日時。 |
lastModifiedDateTime | DateTimeOffset | アプリが最後に変更された日時。 |
isFeatured | Boolean | アプリが管理者のおすすめとしてマークされたかどうかを示す値。 |
privacyInformationUrl | String | プライバシーに関する声明の URL。 |
informationUrl | String | 詳細情報の URL。 |
owner | String | アプリの所有者。 |
developer | String | アプリの開発者。 |
notes | String | アプリ用のメモ。 |
publishingState | mobileAppPublishingState | アプリの発行の状態。 アプリが発行されていない限り、アプリを割り当てることができません。 可能な値は、notPublished 、processing 、published です。 |
関係
リレーションシップ | 型 | 説明 |
---|---|---|
categories | mobileAppCategory コレクション | このアプリのカテゴリのリストです。 |
assignments | mobileAppAssignment コレクション | このモバイル アプリのグループ割り当てのリスト。 |
JSON 表記
以下は、リソースの JSON 表記です。
{
"@odata.type": "#microsoft.graph.mobileApp",
"id": "String (identifier)",
"displayName": "String",
"description": "String",
"publisher": "String",
"largeIcon": {
"@odata.type": "microsoft.graph.mimeContent",
"type": "String",
"value": "binary"
},
"createdDateTime": "String (timestamp)",
"lastModifiedDateTime": "String (timestamp)",
"isFeatured": true,
"privacyInformationUrl": "String",
"informationUrl": "String",
"owner": "String",
"developer": "String",
"notes": "String",
"publishingState": "String"
}