命名空间:microsoft.graph
注意:适用于 Intune 的 Microsoft Graph API 需要适用于租户的活动 Intune 许可证。
iOS 设备功能配置的配置文件。
继承自 appleDeviceFeaturesConfigurationBase
方法
属性
| 属性 | 类型 | 说明 |
|---|---|---|
| id | String | 实体的键。 继承自 deviceConfiguration |
| lastModifiedDateTime | DateTimeOffset | 上次修改对象的日期/时间。 继承自 deviceConfiguration |
| createdDateTime | DateTimeOffset | 创建对象的日期/时间。 继承自 deviceConfiguration |
| description | String | 管理员提供的设备配置的说明。 继承自 deviceConfiguration |
| displayName | String | 管理员提供的设备配置的名称。 继承自 deviceConfiguration |
| version | Int32 | 设备配置的版本。 继承自 deviceConfiguration |
| assetTagTemplate | String | 设备的资产标签信息,显示在登录窗口和锁定屏幕上。 |
| lockScreenFootnote | String | 显示在登录窗口和锁定屏幕上的脚注。 在 iOS 9.3.1 及更高版本中可用。 |
| homeScreenDockIcons | iosHomeScreenItem 集合 | 主屏幕 Dock 上显示的应用和文件夹的列表。 该集合最多可包含 500 个元素。 |
| homeScreenPages | iosHomeScreenPage 集合 | 主屏幕上的页面的列表。 该集合最多可包含 500 个元素。 |
| notificationSettings | iosNotificationSettings 集合 | 每个捆绑 ID 的通知设置。仅适用于监督模式下的设备(iOS 9.3 及更高版本)。 该集合最多可包含 500 个元素。 |
关系
| 关系 | 类型 | 说明 |
|---|---|---|
| assignments | deviceConfigurationAssignment 集合 | 设备配置文件的分配列表。 继承自 deviceConfiguration |
| deviceStatuses | deviceConfigurationDeviceStatus 集合 | 按设备的设备配置安装状态。 继承自 deviceConfiguration |
| userStatuses | deviceConfigurationUserStatus 集合 | 按用户排列的设备配置安装状态。 继承自 deviceConfiguration |
| deviceStatusOverview | deviceConfigurationDeviceOverview | 设备配置设备状态概述 继承自 deviceConfiguration |
| userStatusOverview | deviceConfigurationUserOverview | 设备配置用户状态概述 继承自 deviceConfiguration |
| deviceSettingStateSummaries | settingStateDeviceSummary 集合 | 设备配置设置状态设备摘要 继承自 deviceConfiguration |
JSON 表示形式
下面是资源的 JSON 表示形式。
{
"@odata.type": "#microsoft.graph.iosDeviceFeaturesConfiguration",
"id": "String (identifier)",
"lastModifiedDateTime": "String (timestamp)",
"createdDateTime": "String (timestamp)",
"description": "String",
"displayName": "String",
"version": 1024,
"assetTagTemplate": "String",
"lockScreenFootnote": "String",
"homeScreenDockIcons": [
{
"@odata.type": "microsoft.graph.iosHomeScreenFolder",
"displayName": "String",
"pages": [
{
"@odata.type": "microsoft.graph.iosHomeScreenFolderPage",
"displayName": "String",
"apps": [
{
"@odata.type": "microsoft.graph.iosHomeScreenApp",
"displayName": "String",
"bundleID": "String"
}
]
}
]
}
],
"homeScreenPages": [
{
"@odata.type": "microsoft.graph.iosHomeScreenPage",
"displayName": "String",
"icons": [
{
"@odata.type": "microsoft.graph.iosHomeScreenFolder",
"displayName": "String",
"pages": [
{
"@odata.type": "microsoft.graph.iosHomeScreenFolderPage",
"displayName": "String",
"apps": [
{
"@odata.type": "microsoft.graph.iosHomeScreenApp",
"displayName": "String",
"bundleID": "String"
}
]
}
]
}
]
}
],
"notificationSettings": [
{
"@odata.type": "microsoft.graph.iosNotificationSettings",
"bundleID": "String",
"appName": "String",
"publisher": "String",
"enabled": true,
"showInNotificationCenter": true,
"showOnLockScreen": true,
"alertType": "String",
"badgesEnabled": true,
"soundsEnabled": true
}
]
}