mobileApp 资源类型
命名空间:microsoft.graph
注意:适用于 Intune 的 Microsoft Graph API 需要适用于租户的活动 Intune 许可证。
包含 Intune 移动应用基属性的抽象类。 注意:已弃用列出移动应用 $expand=assignments
。 而是获取应用列表,而不 $expand
对 进行 assignments
查询。 然后,在单个应用程序上执行扩展。
方法
方法 | 返回类型 | 说明 |
---|---|---|
List mobileApps | mobileApp 集合 | 列出 mobileApp 对象的属性和关系。 |
Get mobileApp | mobileApp | 读取 mobileApp 对象的属性和关系。 |
assign 操作 | 无 | 尚未记录 |
属性
属性 | 类型 | 说明 |
---|---|---|
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 。 |
Relationships
关系 | 类型 | 说明 |
---|---|---|
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"
}