更新 androidForWorkSettings
命名空间:microsoft.graph
重要: Microsoft /beta 版本下的 Graph API 可能会发生更改;不支持生产使用。
注意:适用于 Intune 的 Microsoft Graph API 需要适用于租户的活动 Intune 许可证。
更新 androidForWorkSettings 对象的属性。
此 API 可用于以下国家级云部署。
全局服务 | 美国政府 L4 | 美国政府 L5 (DOD) | 由世纪互联运营的中国 |
---|---|---|---|
✅ | ✅ | ✅ | ✅ |
权限
要调用此 API,需要以下权限之一。 若要了解详细信息,包括如何选择权限的信息,请参阅权限。
权限类型 | 权限(从最低特权到最高特权) |
---|---|
委派(工作或学校帐户) | DeviceManagementConfiguration.ReadWrite.All |
委派(个人 Microsoft 帐户) | 不支持。 |
应用程序 | DeviceManagementConfiguration.ReadWrite.All |
HTTP 请求
PATCH /deviceManagement/androidForWorkSettings
请求标头
标头 | 值 |
---|---|
Authorization | 持有者 {token}。 必填。 详细了解 身份验证和授权。 |
接受 | application/json |
请求正文
在请求正文中,提供 androidForWorkSettings 对象的 JSON 表示形式。
下表显示了创建 androidForWorkSettings 时所需的属性。
属性 | 类型 | 说明 |
---|---|---|
id | String | Android for Work 设置标识符 |
bindStatus | androidForWorkBindStatus | 使用 Google EMM API 绑定租户的状态。 可取值为:notBound 、bound 、boundAndValidated 、unbinding 。 |
lastAppSyncDateTime | DateTimeOffset | 应用同步的上次完成时间 |
lastAppSyncStatus | androidForWorkSyncStatus | 上次应用程序同步结果。 可取值为:success 、credentialsNotValid 、androidForWorkApiError 、managementServiceError 、unknownError 、none 。 |
ownerUserPrincipalName | String | 创建了企业的所有者 UPN |
ownerOrganizationName | String | 载入 Android for Work 时使用的组织名称 |
lastModifiedDateTime | DateTimeOffset | Android for Work 设置的上次修改时间 |
enrollmentTarget | androidForWorkEnrollmentTarget | 指示哪些用户可以在 Android for Work 设备管理中注册设备。 可取值为:none 、all 、targeted 、targetedAsEnrollmentRestrictions 。 |
targetGroupIds | String collection | 指定当 enrollmentTarget 设置为“定向”时可以在 Android for Work 设备管理中注册设备的 AAD 组。 |
deviceOwnerManagementEnabled | 布尔值 | 指示此帐户是否为使用 CloudDPC 进行 Android 设备所有者管理外部测试版。 |
响应
如果成功,此方法会在响应正文中返回 200 OK
响应代码和更新的 androidForWorkSettings 对象。
示例
请求
下面是一个请求示例。
PATCH https://graph.microsoft.com/beta/deviceManagement/androidForWorkSettings
Content-type: application/json
Content-length: 455
{
"@odata.type": "#microsoft.graph.androidForWorkSettings",
"bindStatus": "bound",
"lastAppSyncDateTime": "2016-12-31T23:57:22.8606813-08:00",
"lastAppSyncStatus": "credentialsNotValid",
"ownerUserPrincipalName": "Owner User Principal Name value",
"ownerOrganizationName": "Owner Organization Name value",
"enrollmentTarget": "all",
"targetGroupIds": [
"Target Group Ids value"
],
"deviceOwnerManagementEnabled": true
}
响应
下面是一个响应示例。 注意:为简洁起见,可能会截断此处显示的响应对象。 将从实际调用中返回所有属性。
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 568
{
"@odata.type": "#microsoft.graph.androidForWorkSettings",
"id": "97adc169-c169-97ad-69c1-ad9769c1ad97",
"bindStatus": "bound",
"lastAppSyncDateTime": "2016-12-31T23:57:22.8606813-08:00",
"lastAppSyncStatus": "credentialsNotValid",
"ownerUserPrincipalName": "Owner User Principal Name value",
"ownerOrganizationName": "Owner Organization Name value",
"lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00",
"enrollmentTarget": "all",
"targetGroupIds": [
"Target Group Ids value"
],
"deviceOwnerManagementEnabled": true
}