Skip to content

Commit 6de9f56

Browse files
committed
modify sample link and address grammar issues
1 parent 307e746 commit 6de9f56

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

articles/iot-dps/how-to-manage-enrollments-sdks.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ ms.custom: mvc
1818
# How to manage device enrollments with Azure Device Provisioning Service SDKs
1919
A *device enrollment* creates a record of a single device or a group of devices that may at some point register with the Device Provisioning Service. The enrollment record contains the initial desired configuration for the device(s) as part of that enrollment, including the desired IoT hub. This article shows you how to manage device enrollments for your provisioning service programmatically using the Azure IoT Provisioning Service SDKs. The SDKs are available on GitHub in the same repository as Azure IoT SDKs.
2020

21+
## Samples
2122
This article reviews the high level concepts for managing device enrollments for your provisioning service programmatically using the Azure IoT Provisioning Service SDKs. Exact API calls may be different due to language differences. Please review the samples we provide on GitHub for details:
2223
* [Java Provisioning Service Client samples](https://github.com/Azure/azure-iot-sdk-java/tree/master/provisioning/provisioning-samples)
2324
* [Node.js Provisioning Service Client samples](https://github.com/Azure/azure-iot-sdk-node/tree/master/provisioning/service/samples)
@@ -56,7 +57,7 @@ There are two ways you can enroll your devices with the provisioning service:
5657

5758
After you have successfully created an enrollment, the Device Provisioning Service would return an enrollment result.
5859

59-
This workflow is demonstrated in our samples in detail.
60+
This workflow is demonstrated in the [samples](#samples).
6061

6162
## Update an enrollment entry
6263

@@ -72,14 +73,14 @@ You can update an enrollment entry following this workflow:
7273
2. Modify the parameter of the latest enrollment as necessary.
7374
3. Using the latest enrollment, call Service SDK API ```createOrUpdateEnrollmentGroup``` to update your enrollment entry.
7475

75-
This workflow is demonstrated in our samples in detail.
76+
This workflow is demonstrated in the [samples](#samples).
7677

7778
## Remove an enrollment entry
7879

7980
* **Individual enrollment** can be deleted by calling Service SDK API ```deleteIndividualEnrollment``` using ```registrationId```.
8081
* **Group enrollment** can be deleted by calling Service SDK API ```deleteEnrollmentGroup``` using ```enrollmentGroupId```.
8182

82-
This workflow is demonstrated in our samples in detail.
83+
This workflow is demonstrated in the [samples](#samples).
8384

8485
## Bulk operation on individual enrollments
8586

@@ -90,4 +91,4 @@ You can perform bulk operation to create, update, or remove multiple individual
9091

9192
After you have successfully performed an operation, the Device Provisioning Service would return a bulk operation result.
9293

93-
This workflow is demonstrated in our samples in detail.
94+
This workflow is demonstrated in the [samples](#samples).

articles/iot-dps/how-to-manage-enrollments.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ There are two ways you can enroll your devices with the provisioning service:
2727

2828
* An **Enrollment group** is an entry for a group of devices that share a common attestation mechanism of X.509 certificates, signed by the same signing certificate, which can be the [root certificate](https://docs.microsoft.com/en-us/azure/iot-dps/concepts-security#root-certificate) or the [intermediate certificate](https://docs.microsoft.com/en-us/azure/iot-dps/concepts-security#intermediate-certificate), used to produce device certificate on physical device. We recommend using an enrollment group for a large number of devices which share a desired initial configuration, or for devices all going to the same tenant. Note that you can only enroll devices that use the X.509 attestation mechanism as *enrollment groups*.
2929

30-
You can create an enrollment group in the portal for a group of devices using the following steps.
30+
You can create an enrollment group in the portal for a group of devices using the following steps:
3131

32-
1. Log in to the Azure portal and click **All resources** from the left hand menu.
32+
1. Log in to the Azure portal and click **All resources** from the left-hand menu.
3333
2. Click the Device Provisioning service you want to enroll your device to from the list of resources.
3434
3. In your provisioning service, click **Manage enrollments**, then select **Enrollment Groups** tab.
3535
4. Click the **Add** button at the top, and enter the information required for the enrollment list entry. Upload the root certificate for the group of devices.
@@ -40,9 +40,9 @@ There are two ways you can enroll your devices with the provisioning service:
4040

4141
* An **Individual enrollment** is an entry for a single device that may register. Individual enrollments may use either x509 certificates or SAS tokens (in a real or virtual TPM) as attestation mechanisms. We recommend using individual enrollments for devices which require unique initial configurations, or for devices which can only use SAS tokens via TPM or virtual TPM as the attestation mechanism. Individual enrollments may have the desired IoT hub device ID specified.
4242

43-
You can create an individual enrollment in the portal using the following steps.
43+
You can create an individual enrollment in the portal using the following steps:
4444

45-
1. Log in to the Azure portal and click **All resources** from the left hand menu.
45+
1. Log in to the Azure portal and click **All resources** from the left-hand menu.
4646
2. Click the Device Provisioning service you want to enroll your device to from the list of resources.
4747
3. In your provisioning service, click **Manage enrollments**, then select **Individual Enrollments** tab.
4848
4. Click the **Add** button at the top.
@@ -53,7 +53,7 @@ There are two ways you can enroll your devices with the provisioning service:
5353

5454

5555
## Update an enrollment entry
56-
You can update an existing enrollment entry in the portal using the following steps.
56+
You can update an existing enrollment entry in the portal using the following steps:
5757

5858
1. Open your Device Provisioning service in the Azure portal and click **Manage Enrollments**.
5959
2. Navigate to the enrollment entry you want to modify. Click the entry, which opens a summary information about your device enrollment.
@@ -64,7 +64,7 @@ You can update an existing enrollment entry in the portal using the following st
6464

6565

6666
## Remove a device enrollment
67-
In cases where your device(s) do not need to be provisioned to any IoT hub, you can remove the related enrollment entry in the portal using the following steps.
67+
In cases where your device(s) do not need to be provisioned to any IoT hub, you can remove the related enrollment entry in the portal using the following steps:
6868

6969
1. Open your Device Provisioning service in the Azure portal and click **Manage Enrollments**.
7070
2. Navigate to and select the enrollment entry you want to remove.

0 commit comments

Comments
 (0)