Skip to content

Commit 8feefc3

Browse files
committed
Draft, in progress
1 parent 075b531 commit 8feefc3

6 files changed

+13
-13
lines changed

articles/iot-hub/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ landingContent:
8787
links:
8888
- text: Learn about Azure IoT SDKs
8989
url: iot-hub-devguide-sdks.md
90-
- text: Use the Azure IoT Tools for VS Code
90+
- text: Use the Azure IoT Hub extension for VS Code
9191
url: https://marketplace.visualstudio.com/items?itemName=vsciot-vscode.azure-iot-toolkit
9292
- text: Supported device protocols
9393
url: iot-hub-devguide-protocols.md

articles/iot-hub/iot-hub-create-use-iot-toolkit.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: Create an Azure IoT Hub using Azure IoT Tools for Visual Studio Code
3-
description: Learn how to use the Azure IoT tools for Visual Studio Code to create an Azure IoT hub in a resource group.
2+
title: Create an Azure IoT hub using the Azure IoT Hub extension for Visual Studio Code
3+
description: Learn how to use the Azure IoT Hub extension for Visual Studio Code to create an Azure IoT hub in a resource group.
44
author: formulahendry
55

66
ms.author: junhan
@@ -9,19 +9,19 @@ ms.topic: how-to
99
ms.date: 01/04/2019
1010
---
1111

12-
# Create an IoT hub using the Azure IoT Tools for Visual Studio Code
12+
# Create an IoT hub using the Azure IoT Hub extension for Visual Studio Code
1313

1414
[!INCLUDE [iot-hub-resource-manager-selector](../../includes/iot-hub-resource-manager-selector.md)]
1515

16-
This article shows you how to use the [Azure IoT Tools for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=vsciot-vscode.azure-iot-toolkit) to create an Azure IoT hub. You can create one without an existing IoT project or create one from an existing IoT project.
16+
This article shows you how to use the [Azure IoT Hub extension for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=vsciot-vscode.azure-iot-toolkit) to create an Azure IoT hub. You can create one without an existing IoT project or create one from an existing IoT project.
1717

1818
[!INCLUDE [updated-for-az](../../includes/updated-for-az.md)]
1919

2020
## Prerequisites
2121

2222
- [Visual Studio Code](https://code.visualstudio.com/)
2323

24-
- [Azure IoT Tools](https://marketplace.visualstudio.com/items?itemName=vsciot-vscode.azure-iot-toolkit) installed for Visual Studio Code
24+
- [Azure IoT Hub extension](https://marketplace.visualstudio.com/items?itemName=vsciot-vscode.azure-iot-toolkit) installed for Visual Studio Code
2525

2626
- An Azure resource group: [create a resource group](../azure-resource-manager/management/manage-resource-groups-portal.md#create-resource-groups) in the Azure portal
2727

@@ -45,7 +45,7 @@ The following steps show how to create an IoT Hub without an IoT Project in Visu
4545

4646
6. Select your resource group.
4747

48-
7. Select a location.
48+
7. Select a region.
4949

5050
8. Select a pricing tier.
5151

@@ -64,7 +64,7 @@ This method allows you to provision in Visual Studio Code without leaving your d
6464
:::image type="content" source="media/iot-hub-create-use-iot-toolkit/provision.png" alt-text="A screenshot that shows how to open the command palette in VS Code." lightbox="media/iot-hub-create-use-iot-toolkit/provision.png":::
6565

6666
> [!NOTE]
67-
> If you have not signed in Azure. Follow the pop-up notification for signing in.
67+
> If you have not signed into Azure, follow the pop-up notification for signing in.
6868
6969
1. Select the subscription you want to use.
7070

articles/iot-hub/iot-hub-dev-guide-sas.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ HTTPS implements authentication by including a valid token in the **Authorizatio
222222
For example, Username (DeviceId is case-sensitive):
223223
`iothubname.azure-devices.net/DeviceId`
224224

225-
Password (You can generate a SAS token with the CLI extension command [az iot hub generate-sas-token](/cli/azure/iot/hub#az-iot-hub-generate-sas-token), or the [Azure IoT Tools for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=vsciot-vscode.azure-iot-toolkit)):
225+
Password (You can generate a SAS token with the CLI extension command [az iot hub generate-sas-token](/cli/azure/iot/hub#az-iot-hub-generate-sas-token), or the [Azure IoT Hub extension for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=vsciot-vscode.azure-iot-toolkit)):
226226

227227
`SharedAccessSignature sr=iothubname.azure-devices.net%2fdevices%2fDeviceId&sig=kPszxZZZZZZZZZZZZZZZZZAhLT%2bV7o%3d&se=1487709501`
228228

@@ -314,7 +314,7 @@ The result, which grants access to all functionality for device1, would be:
314314
`SharedAccessSignature sr=myhub.azure-devices.net%2fdevices%2fdevice1&sig=13y8ejUk2z7PLmvtwR5RqlGBOVwiq7rQR3WZ5xZX3N4%3D&se=1456971697`
315315

316316
> [!NOTE]
317-
> It's possible to generate a SAS token with the CLI extension command [az iot hub generate-sas-token](/cli/azure/iot/hub#az-iot-hub-generate-sas-token), or the [Azure IoT Tools for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=vsciot-vscode.azure-iot-toolkit).
317+
> It's possible to generate a SAS token with the CLI extension command [az iot hub generate-sas-token](/cli/azure/iot/hub#az-iot-hub-generate-sas-token), or the [Azure IoT Hub extension for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=vsciot-vscode.azure-iot-toolkit).
318318
319319
#### Use a shared access policy to access on behalf of a device
320320

articles/iot-hub/iot-hub-devguide-device-twins.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,4 +366,4 @@ To try out some of the concepts described in this article, see the following IoT
366366

367367
* [How to use the device twin](device-twins-node.md)
368368
* [How to use device twin properties](tutorial-device-twins.md)
369-
* [Device management with Azure IoT Tools for VS Code](iot-hub-device-management-iot-toolkit.md)
369+
* [Device management with the Azure IoT Hub extension for VS Code](iot-hub-device-management-iot-toolkit.md)

articles/iot-hub/iot-hub-devguide-direct-methods.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,4 +222,4 @@ Now you have learned how to use direct methods, you may be interested in the fol
222222
If you would like to try out some of the concepts described in this article, you may be interested in the following IoT Hub tutorial:
223223
224224
* [Use direct methods](quickstart-control-device.md)
225-
* [Device management with Azure IoT Tools for VS Code](iot-hub-device-management-iot-toolkit.md)
225+
* [Device management with the Azure IoT Hub extension for VS Code](iot-hub-device-management-iot-toolkit.md)

articles/iot-hub/iot-hub-raspberry-pi-kit-c-get-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ You should see the following output that shows the sensor data and the messages
225225

226226
## Read the messages received by your hub
227227

228-
One way to monitor messages received by your IoT hub from your device is to use the Azure IoT Tools for Visual Studio Code. To learn more, see [Use Azure IoT Tools for Visual Studio Code to send and receive messages between your device and IoT Hub](iot-hub-vscode-iot-toolkit-cloud-device-messaging.md).
228+
One way to monitor messages received by your IoT hub from your device is to use the Azure IoT Tools for Visual Studio Code. To learn more, see [Use Azure IoT Hub extension for Visual Studio Code to send and receive messages between your device and IoT Hub](iot-hub-vscode-iot-toolkit-cloud-device-messaging.md).
229229

230230
For more ways to process data sent by your device, continue on to the next section.
231231

0 commit comments

Comments
 (0)