什么情况下,设备状态会变为禁用或删除
Under what circumstances, the status of the device will change to disabled or deleted
设备有四种状态,我只找到ACTIVE和PROVISIONING,设备状态怎么会变成DISABLED或DELETED?
已禁用 - 设备已禁用。
DELETED - 设备已删除。 API 调用永远不会返回此状态,但会在设备确认删除后用于发布到云端的最终状态报告 Pub/Sub。
如果您想更改设备state
,您需要通过补丁请求修改该字段。
您可以通过调用 enterprises.devices.patch
来完成此操作
请注意,调用 enterprises.devices.patch
时,ACTIVE
和 DISABLED
是唯一允许的值。要使设备进入 DELETED
状态,请调用 enterprises.devices.delete
您可以在此页面上找到更多信息https://developers.google.com/android/management/reference/rest/v1/enterprises.devices
设备有四种状态,我只找到ACTIVE和PROVISIONING,设备状态怎么会变成DISABLED或DELETED?
已禁用 - 设备已禁用。
DELETED - 设备已删除。 API 调用永远不会返回此状态,但会在设备确认删除后用于发布到云端的最终状态报告 Pub/Sub。
如果您想更改设备state
,您需要通过补丁请求修改该字段。
您可以通过调用 enterprises.devices.patch
请注意,调用 enterprises.devices.patch
时,ACTIVE
和 DISABLED
是唯一允许的值。要使设备进入 DELETED
状态,请调用 enterprises.devices.delete
您可以在此页面上找到更多信息https://developers.google.com/android/management/reference/rest/v1/enterprises.devices