Skip to content

Commit 0f2f2c2

Browse files
committed
Edits
1 parent ae592d4 commit 0f2f2c2

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

includes/iot-hub-howto-file-upload-java.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ This how-to contains two sections:
2020

2121
## Upload a file from a device application
2222

23+
This section describes how to upload a file from a device to an IoT hub using the [DeviceClient](/java/api/com.microsoft.azure.sdk.iot.device.deviceclient) class from the Azure IoT SDK for Java.
24+
2325
Follow this procedure to upload a file from a device to IoT hub:
2426

2527
* Connect to IoT hub

includes/iot-hub-howto-file-upload-node.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ This how-to contains two sections:
2020

2121
## Upload a file from a device application
2222

23+
This section describes how to upload a file from a device to an IoT hub using the [azure-iot-device](/javascript/api/azure-iot-device) package in the Azure IoT SDK for Node.js.
24+
2325
### Install SDK packages
2426

2527
Run this command to install the **azure-iot-device** device SDK, the **azure-iot-device-mqtt**, and the **@azure/storage-blob** packages: on your development machine:
@@ -134,7 +136,9 @@ To create a file upload notification application:
134136

135137
### Connect to the IoT hub service client
136138

137-
Create the [ServiceClient](/javascript/api/azure-iothub/client) using [fromConnectionString](/javascript/api/azure-iothub/client?#azure-iothub-client-fromconnectionstring).
139+
The [ServiceClient](/javascript/api/azure-iothub/client) class contains methods that services can use to receive file upload notifications.
140+
141+
Connect to IoT hub using [fromConnectionString](/javascript/api/azure-iothub/client?#azure-iothub-client-fromconnectionstring).
138142

139143
```javascript
140144
const Client = require('azure-iothub').Client;

includes/iot-hub-howto-file-upload-python.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ pip install azure.storage.blob
2727

2828
## Upload file from a device application
2929

30+
This section describes how to upload a file from a device to an IoT hub using the [IoTHubDeviceClient](/python/api/azure-iot-device/azure.iot.device.iothubdeviceclient) class from the Azure IoT SDK for Python.
31+
3032
Follow this procedure to upload a file from a device to IoT hub:
3133

3234
* Connect to IoT hub
@@ -123,7 +125,7 @@ Shut down the client. Once this method is called, any attempts at further client
123125
device_client.shutdown()
124126
```
125127

126-
### SDK file upload sample
128+
### SDK file upload samples
127129

128130
The SDK includes two file upload samples:
129131

0 commit comments

Comments
 (0)