你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
DeviceManagementClient.GetDeviceClassSubgroupUpdateCompliance 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取设备类子组更新符合性信息,例如有多少设备在其最新更新中,有多少设备需要新更新,以及有多少设备正在进行接收新更新。
public virtual Azure.Response GetDeviceClassSubgroupUpdateCompliance (string groupId, string deviceClassId, Azure.RequestContext context = default);
abstract member GetDeviceClassSubgroupUpdateCompliance : string * string * Azure.RequestContext -> Azure.Response
override this.GetDeviceClassSubgroupUpdateCompliance : string * string * Azure.RequestContext -> Azure.Response
Public Overridable Function GetDeviceClassSubgroupUpdateCompliance (groupId As String, deviceClassId As String, Optional context As RequestContext = Nothing) As Response
参数
- groupId
- String
组标识符。
- deviceClassId
- String
设备类标识符。
- context
- RequestContext
请求上下文,可以基于每个调用替代客户端管道的默认行为。
返回
从服务返回的响应。 响应正文架构的详细信息,请参阅下面的“备注”部分。
例外
groupId
或 deviceClassId
为 null。
groupId
或 deviceClassId
是空字符串,预期为非空。
服务返回了非成功状态代码。
示例
此示例演示如何使用所需的参数调用 GetDeviceClassSubgroupUpdateCompliance 并分析结果。
var credential = new DefaultAzureCredential();
var endpoint = new Uri("<https://my-service.azure.com>");
var client = new DeviceManagementClient(endpoint, "<instanceId>", credential);
Response response = client.GetDeviceClassSubgroupUpdateCompliance("<groupId>", "<deviceClassId>");
JsonElement result = JsonDocument.Parse(response.ContentStream).RootElement;
Console.WriteLine(result.GetProperty("totalDeviceCount").ToString());
Console.WriteLine(result.GetProperty("onLatestUpdateDeviceCount").ToString());
Console.WriteLine(result.GetProperty("newUpdatesAvailableDeviceCount").ToString());
Console.WriteLine(result.GetProperty("updatesInProgressDeviceCount").ToString());
注解
下面是响应有效负载的 JSON 架构。
响应正文:
的 UpdateCompliance
架构:
{
totalDeviceCount: number, # Required. Total number of devices.
onLatestUpdateDeviceCount: number, # Required. Number of devices on the latest update.
newUpdatesAvailableDeviceCount: number, # Required. Number of devices with a newer update available.
updatesInProgressDeviceCount: number, # Required. Number of devices with update in-progress.
}