从 Azure 门户更新 IOT 设备孪生

发布于 2025-01-11 11:36:31 字数 83 浏览 0 评论 0原文

我需要通过提供设备 ID 作为输入来更新多个设备孪生,即多个设备的设备孪生。门户中是否有任何工具可以帮助我提供设备 ID 作为输入并使用给定值更新孪生?

I need to update multiple device twins i.e. device twins of multiple devices by providing the device id as input. Is there any tool available in the portal that’ll help me provide device ids as input and update the twin with given value?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无远思近则忧 2025-01-18 11:36:31

正如 Matthijs 在评论中所述,门户中没有相应的内置功能。但是,您可以使用 Azure 门户中的 Azure CLI 来创建 IoT 中心作业,请参阅我的示例:

az iot hub job create --job-id job10 --job-type scheduleUpdateTwin -n rk2017-iot --twin-patch "{'properties':{'desired': {'temperature': 22.22}}}"  --query-condition "deviceId IN ['Device1', 'Device10']" 

在此处输入图像描述

在此处输入图像描述

As stated by Matthijs in the comment, there is no built-in feature for that in the portal. However, you can use for that needs an Azure CLI in the Azure Portal for creating an IoT Hub job, see my example:

az iot hub job create --job-id job10 --job-type scheduleUpdateTwin -n rk2017-iot --twin-patch "{'properties':{'desired': {'temperature': 22.22}}}"  --query-condition "deviceId IN ['Device1', 'Device10']" 

enter image description here

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文