你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
DeviceManagementClient.DeleteDeviceClassSubgroupAsync 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
删除设备类子组。 当启用了设备更新的设备连接到中心并报告其属性时,会自动创建此子组。 组、子组和部署不会自动清理,但出于历史记录目的而保留。 如果用户不需要保留子组的任何历史记录,并且不再需要子组,则可以调用此方法来删除子组。 如果在删除子组后再次连接此子组的设备,将自动重新创建该设备,但没有历史记录。
public virtual System.Threading.Tasks.Task<Azure.Response> DeleteDeviceClassSubgroupAsync (string groupId, string deviceClassId, Azure.RequestContext context = default);
abstract member DeleteDeviceClassSubgroupAsync : string * string * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
override this.DeleteDeviceClassSubgroupAsync : string * string * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
Public Overridable Function DeleteDeviceClassSubgroupAsync (groupId As String, deviceClassId As String, Optional context As RequestContext = Nothing) As Task(Of Response)
参数
- groupId
- String
组标识符。
- deviceClassId
- String
设备类标识符。
- context
- RequestContext
请求上下文,它可以基于每个调用替代客户端管道的默认行为。
返回
从服务返回的响应。
例外
groupId
或 deviceClassId
为 null。
groupId
或 deviceClassId
是空字符串,预期为非空。
服务返回了不成功状态代码。
示例
此示例演示如何使用所需参数调用 DeleteDeviceClassSubgroupAsync。
var credential = new DefaultAzureCredential();
var endpoint = new Uri("<https://my-service.azure.com>");
var client = new DeviceManagementClient(endpoint, "<instanceId>", credential);
Response response = await client.DeleteDeviceClassSubgroupAsync("<groupId>", "<deviceClassId>");
Console.WriteLine(response.Status);