Skip to content

Commit 21ddb3e

Browse files
Merge pull request #213122 from esha0611/release-device-update-refresh
Release device update refresh
2 parents 9e8a46e + aed1b47 commit 21ddb3e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/iot-hub-device-update/device-update-plug-and-play.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
title: Understand how Device Update for IoT Hub uses IoT Plug and Play | Microsoft Docs
33
description: Device Update for IoT Hub uses to discover and manage devices that are over-the-air update capable.
4-
author: ValOlson
5-
ms.author: valls
4+
author: EshaShah
5+
ms.author: eshashah
66
ms.date: 1/26/2022
77
ms.topic: conceptual
88
ms.service: iot-hub-device-update
@@ -48,7 +48,7 @@ The **deviceProperties** field contains the manufacturer and model information f
4848
|----|------|---------|-----------|
4949
|manufacturer|string|device to cloud|The device manufacturer of the device, reported through `deviceProperties`. This property is read from one of two places - first, the DeviceUpdateCore interface attempts to read the 'aduc_manufacturer' value from the [Configuration file](device-update-configuration-file.md). If the value isn't populated in the configuration file, it defaults to reporting the compile-time definition for ADUC_DEVICEPROPERTIES_MANUFACTURER. This property is reported only at boot time. <br><br> Default value: 'Contoso'.|
5050
|model|string|device to cloud|The device model of the device, reported through `deviceProperties`. This property is read from one of two places - first, the DeviceUpdateCore interface attempts to read the 'aduc_model' value from the [Configuration file](device-update-configuration-file.md). If the value isn't populated in the configuration file, it defaults to reporting the compile-time definition for ADUC_DEVICEPROPERTIES_MODEL. This property is reported only at boot time. <br><br> Default value: 'Video'|
51-
|interfaceId|string|device to cloud|This property is used by the service to identify the interface version being used by the Device Update agent. The interface ID is required by Device Update service to manage and communicate with the agent. <br><br> Default value: 'dtmi:azure:iot:deviceUpdateModel;1' for devices using DU agent version 0.8.0.|
51+
|interfaceId|string|device to cloud|This property is used by the service to identify the interface version being used by the Device Update agent. The interface ID is required by Device Update service to manage and communicate with the agent. <br><br> Default value: 'dtmi:azure:iot:deviceUpdate;1' for devices using DU agent version 0.8.0.|
5252
|aduVer|string|device to cloud|Version of the Device Update agent running on the device. This value is read from the build only if ENABLE_ADU_TELEMETRY_REPORTING is set to 1 (true) during compile time. Customers can choose to opt out of version reporting by setting the value to 0 (false). [How to customize Device Update agent properties](https://github.com/Azure/iot-hub-device-update/blob/main/docs/agent-reference/how-to-build-agent-code.md).|
5353
|doVer|string|device to cloud|Version of the Delivery Optimization agent running on the device. The value is read from the build only if ENABLE_ADU_TELEMETRY_REPORTING is set to 1 (true) during compile time. Customers can choose to opt out of the version reporting by setting the value to 0 (false). [How to customize Delivery Optimization agent properties](https://github.com/microsoft/do-client/blob/main/README.md#building-do-client-components).|
5454
|Custom compatibility Properties|User Defined|device to cloud|Implementer can define other device properties to be used for the compatibility check while targeting the update deployment.|
@@ -62,7 +62,7 @@ IoT Hub device twin example:
6262
"deviceProperties": {
6363
"manufacturer": "contoso",
6464
"model": "virtual-vacuum-v1",
65-
"interfaceId": "dtmi:azure:iot:deviceUpdateModel;1",
65+
"interfaceId": "dtmi:azure:iot:deviceUpdate;1",
6666
"aduVer": "DU;agent/0.8.0-rc1-public-preview",
6767
"doVer": "DU;lib/v0.6.0+20211001.174458.c8c4051,DU;agent/v0.6.0+20211001.174418.c8c4051"
6868
},

0 commit comments

Comments
 (0)