Skip to content

Commit e4e17ae

Browse files
committed
updated text formatting in the include files
1 parent 4a61ff6 commit e4e17ae

21 files changed

+48
-48
lines changed

articles/digital-twins/how-to-ingest-opcua-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ First, deploy a new Azure Digital Twins instance, using the guidance in [Set up
294294

295295
Next, add a model and twin to your instance. The model file that you'll upload to the instance is part of the sample project you downloaded in the [Prerequisites](#prerequisites) section, located at *Simulation Example/simulation-dtdl-model.json*.
296296

297-
You can use [Azure Digital Twins Explorer](concepts-azure-digital-twins-explorer.md) to upload the Simulation model, and create a new twin called *simulation-1*.
297+
You can use [Azure Digital Twins Explorer](concepts-azure-digital-twins-explorer.md) to upload the Simulation model, and create a new twin called simulation-1.
298298

299299
:::image type="content" source="media/how-to-ingest-opcua-data/azure-digital-twins-explorer.png" alt-text="Screenshot of Azure Digital Twins Explorer, showing the Simulation model and simulation-1 twin.":::
300300

includes/digital-twins-access-explorer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ This will open Azure Digital Twins Explorer in a new tab. It may already be conn
1515

1616
:::image type="content" source="../articles/digital-twins/media/includes/azure-digital-twins-explorer-no-environment.png" alt-text="Screenshot of Azure Digital Twins Explorer. The Azure Digital Twins URL modal displays an empty editable box for the Azure Digital Twins URL." lightbox="../articles/digital-twins/media/includes/azure-digital-twins-explorer-no-environment.png":::
1717

18-
If you see this modal, enter _**https://**_ into the box, followed by the **host name** of your instance. These values together make up the instance URL. Select Save to connect to the instance.
18+
If you see this modal, enter *https://* into the box, followed by the host name of your instance. These values together make up the instance URL. Select **Save** to connect to the instance.
1919

2020
>[!TIP]
21-
>You can find the **host name** of your instance in its Overview page in the portal.
21+
>You can find the host name of your instance in its **Overview** page in the portal.
2222
> :::image type="content" source="../articles/digital-twins/media/includes/portal-host-name.png" alt-text="Screenshot of the Azure portal showing the Overview page for an Azure Digital Twins instance. There's a highlight around the Host name value." lightbox="../articles/digital-twins/media/includes/portal-host-name.png":::

includes/digital-twins-cleanup-basic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.date: 2/4/2021
77
ms.author: baanders
88
---
99

10-
* **If you do not need any of the resources you created in this tutorial**, you can delete the Azure Digital Twins instance and all other resources from this article with the [az group delete](/cli/azure/group#az_group_delete) CLI command. This deletes all Azure resources in a resource group, as well as the resource group itself.
10+
* If you do not need any of the resources you created in this tutorial, you can delete the Azure Digital Twins instance and all other resources from this article with the [az group delete](/cli/azure/group#az_group_delete) CLI command. This deletes all Azure resources in a resource group, as well as the resource group itself.
1111

1212
> [!IMPORTANT]
1313
> Deleting a resource group is irreversible. The resource group and all the resources contained in it are permanently deleted. Make sure that you don't accidentally delete the wrong resource group or resources.

includes/digital-twins-cleanup-clear-instance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ ms.date: 2/4/2021
77
ms.author: baanders
88
---
99

10-
* **If you want to continue using the Azure Digital Twins instance you set up in this article, but clear out some or all of its models, twins, and relationships**, you can use the [az dt](/cli/azure/dt) CLI commands in an [Azure Cloud Shell](https://shell.azure.com) window to delete the elements you want to remove.
10+
* If you want to continue using the Azure Digital Twins instance you set up in this article, but clear out some or all of its models, twins, and relationships, you can use the [az dt](/cli/azure/dt) CLI commands in an [Azure Cloud Shell](https://shell.azure.com) window to delete the elements you want to remove.

includes/digital-twins-configure-function-app-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ The Azure function requires a bearer token to be passed to it. To make sure the
3838
3939
#### Configure application settings
4040
41-
Next, make the URL of your **Azure Digital Twins instance** accessible to your function by setting an [environment variable](../articles/azure-functions/functions-how-to-use-azure-function-app-settings.md?tabs=portal#use-application-settings) for it.
41+
Next, make the URL of your Azure Digital Twins instance accessible to your function by setting an [environment variable](../articles/azure-functions/functions-how-to-use-azure-function-app-settings.md?tabs=portal#use-application-settings) for it.
4242
4343
> [!TIP]
4444
> The Azure Digital Twins instance's URL is made by adding *https://* to the beginning of your instance's host name. To see the host name, along with all the properties of your instance, run `az dt show --dt-name <your-Azure-Digital-Twins-instance>`.

includes/digital-twins-configure-function-app.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -29,26 +29,26 @@ The lifecycle of this type of managed identity is tied to the lifecycle of this
2929

3030
:::image type="content" source="../articles/digital-twins/media/includes/azure-functions/portal-search-for-function-app.png" alt-text="Screenshot of the Azure portal. The function app's name is in the portal search bar, and the search result is highlighted.":::
3131

32-
1. On the function app page, in the menu on the left, select __Identity__ to work with a managed identity for the function. On the __System assigned__ page, verify that the __Status__ is set to **On**. If it's not, set it now and then **Save** the change.
32+
1. On the function app page, in the menu on the left, select **Identity** to work with a managed identity for the function. On the **System assigned** page, verify that the **Status** is set to **On**. If it's not, set it now and then **Save** the change.
3333

3434
:::image type="content" source="../articles/digital-twins/media/includes/azure-functions/verify-system-managed-identity.png" alt-text="Screenshot of the Azure portal. On the Identity page for the function app, the Status option is set to On." lightbox="../articles/digital-twins/media/includes/azure-functions/verify-system-managed-identity.png":::
3535

36-
1. Select __Azure role assignments__.
36+
1. Select **Azure role assignments**.
3737

3838
:::image type="content" source="../articles/digital-twins/media/includes/azure-functions/add-role-assignment-1.png" alt-text="Screenshot of the Azure portal. On the Azure Function's Identity page, under Permissions, the button Azure role assignments is highlighted." lightbox="../articles/digital-twins/media/includes/azure-functions/add-role-assignment-1.png":::
3939

40-
Select __+ Add role assignment (Preview)__.
40+
Select **+ Add role assignment (Preview)**.
4141

4242
:::image type="content" source="../articles/digital-twins/media/includes/azure-functions/add-role-assignment-2.png" alt-text="Screenshot of the Azure portal. On the Azure role assignments page, the button Add role assignment (Preview) is highlighted." lightbox="../articles/digital-twins/media/includes/azure-functions/add-role-assignment-2.png":::
4343

44-
1. On the __Add role assignment (Preview)__ page, select the following values:
44+
1. On the **Add role assignment (Preview)** page, select the following values:
4545

46-
* **Scope**: _Resource group_
46+
* **Scope**: **Resource group**
4747
* **Subscription**: Select your Azure subscription.
4848
* **Resource group**: Select your resource group.
49-
* **Role**: _Azure Digital Twins Data Owner_
49+
* **Role**: **Azure Digital Twins Data Owner**
5050

51-
Save the details by selecting __Save__.
51+
Save the details by selecting **Save**.
5252

5353
:::image type="content" source="../articles/digital-twins/media/includes/azure-functions/add-role-assignment-3.png" alt-text="Screenshot of the Azure portal, showing how to add a new role assignment. The dialog shows fields for Scope, Subscription, Resource group, and Role.":::
5454

@@ -59,8 +59,8 @@ To make the URL of your Azure Digital Twins instance accessible to your function
5959
To set an environment variable with the URL of your instance, first find your instance's host name:
6060

6161
1. Search for your instance in the [Azure portal](https://portal.azure.com).
62-
1. In the menu on the left, select __Overview__.
63-
1. Copy the __Host name__ value.
62+
1. In the menu on the left, select **Overview**.
63+
1. Copy the **Host name** value.
6464

6565
:::image type="content" source="../articles/digital-twins/media/includes/azure-functions/instance-host-name.png" alt-text="Screenshot of the Azure portal. On the instance's Overview page, the host name value is highlighted.":::
6666

@@ -70,23 +70,23 @@ You can now create an application setting:
7070

7171
:::image type="content" source="../articles/digital-twins/media/includes/azure-functions/portal-search-for-function-app.png" alt-text="Screenshot of the Azure portal. The function app's name is being searched in the portal search bar. The search result is highlighted.":::
7272

73-
1. On the left, select __Configuration__. Then on the __Application settings__ tab, select __+ New application setting__.
73+
1. On the left, select **Configuration**. Then on the **Application settings** tab, select **+ New application setting**.
7474

7575
:::image type="content" source="../articles/digital-twins/media/includes/azure-functions/application-setting.png" alt-text="Screenshot of the Azure portal. On the Configuration tab for the function app, the button to create a New application setting is highlighted.":::
7676

7777
1. In the window that opens, use the host name value you copied to create an application setting.
7878
* **Name**: `ADT_SERVICE_URL`
7979
* **Value**: `https://<your-Azure-Digital-Twins-host-name>`
8080

81-
Select __OK__ to create an application setting.
81+
Select **OK** to create an application setting.
8282

8383
:::image type="content" source="../articles/digital-twins/media/includes/azure-functions/add-application-setting.png" alt-text="Screenshot of the Azure portal. On the Add/Edit application setting page, the Name and Value fields are filled out. The O K button is highlighted.":::
8484

85-
1. After you create the setting, it should appear on the __Application settings__ tab. Verify that **ADT_SERVICE_URL** appears on the list. Then save the new application setting by selecting __Save__.
85+
1. After you create the setting, it should appear on the **Application settings** tab. Verify that **ADT_SERVICE_URL** appears on the list. Then save the new application setting by selecting **Save**.
8686

8787
:::image type="content" source="../articles/digital-twins/media/includes/azure-functions/application-setting-save-details.png" alt-text="Screenshot of the Azure portal. On the application settings tab, the new A D T SERVICE URL setting and the Save button are both highlighted.":::
8888

89-
1. Any changes to the application settings require an application restart, so select __Continue__ to restart your application when prompted.
89+
1. Any changes to the application settings require an application restart, so select **Continue** to restart your application when prompted.
9090

9191
:::image type="content" source="../articles/digital-twins/media/includes/azure-functions/save-application-setting.png" alt-text="Screenshot of the Azure portal. A note states that any changes to application settings will restart your application.":::
9292

includes/digital-twins-limits.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ The following table reflects the rate limits of different APIs.
4545
| Models API | Number of requests per second | 100 | Yes |
4646
| Digital Twins API | Number of read requests per second | 1,000 | Yes |
4747
| Digital Twins API | Number of patch requests per second | 1,000 | Yes |
48-
| Digital Twins API | Number of create/delete operations per second across **all twins and relationships** | 50 | Yes |
49-
| Digital Twins API | Number of create/update/delete operations per second on a **single twin** or its incoming/outgoing relationships | 10 | No |
48+
| Digital Twins API | Number of create/delete operations per second across all twins and relationships | 50 | Yes |
49+
| Digital Twins API | Number of create/update/delete operations per second on a single twin or its incoming/outgoing relationships | 10 | No |
5050
| Query API | Number of requests per second | 500 | Yes |
5151
| Query API | [Query Units](../articles/digital-twins/concepts-query-units.md) per second | 4,000 | Yes |
5252
| Event Routes API | Number of requests per second | 100 | Yes |

includes/digital-twins-permissions-required.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ ms.author: baanders
88
---
99

1010
>[!NOTE]
11-
> This section must be completed by an Azure user who has permissions to manage user access to Azure resources, including granting and delegating permissions. Common roles that meet this requirement are *Owner*, *Account admin*, or the combination of *User Access Administrator* and *Contributor*. For more information about permission requirements for Azure Digital Twins roles, see [Set up an instance and authentication](../articles/digital-twins/how-to-set-up-instance-portal.md#prerequisites-permission-requirements).
11+
> This section must be completed by an Azure user who has permissions to manage user access to Azure resources, including granting and delegating permissions. Common roles that meet this requirement are **Owner**, **Account admin**, or the combination of **User Access Administrator** and **Contributor**. For more information about permission requirements for Azure Digital Twins roles, see [Set up an instance and authentication](../articles/digital-twins/how-to-set-up-instance-portal.md#prerequisites-permission-requirements).

includes/digital-twins-prereq-instance.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ ms.date: 10/29/2020
77
ms.author: baanders
88
---
99

10-
To work with Azure Digital Twins in this article, you first need to *set up an Azure Digital Twins instance*. You also need the required permissions for using it. If you already have an Azure Digital Twins instance set up, you can use it instead.
10+
To work with Azure Digital Twins in this article, you first need to set up an Azure Digital Twins instance. You also need the required permissions for using it. If you already have an Azure Digital Twins instance set up, you can use it instead.
1111

1212
Otherwise, follow the instructions in [Set up an instance and authentication](../articles/digital-twins/how-to-set-up-instance-portal.md). The instructions contain information to help you verify that you've completed each step successfully.
1313

1414
After you set up your instance, make a note of the following values. You'll need these values to connect to the instance later:
15-
* The instance's *host name*. You can [find the host name in the Azure portal](../articles/digital-twins/how-to-set-up-instance-portal.md#verify-success-and-collect-important-values).
16-
* The *Azure subscription* that you used to create the instance. Either its name or its ID will work. You can find the subscription on your instance's **Overview** page in the [Azure portal](https://portal.azure.com).
15+
* The instance's host name. You can [find the host name in the Azure portal](../articles/digital-twins/how-to-set-up-instance-portal.md#verify-success-and-collect-important-values).
16+
* The Azure subscription that you used to create the instance. Either its name or its ID will work. You can find the subscription on your instance's **Overview** page in the [Azure portal](https://portal.azure.com).

includes/digital-twins-prereq-registration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ ms.date: 10/29/2020
77
ms.author: baanders
88
---
99

10-
To authenticate all the resources used in this article, you'll need to **set up an [Azure Active Directory (Azure AD)](../articles/active-directory/fundamentals/active-directory-whatis.md) app registration**. Follow the instructions in [Create an app registration with Azure Digital Twins access](../articles/digital-twins/how-to-create-app-registration-portal.md) to set this up.
10+
To authenticate all the resources used in this article, you'll need to set up an [Azure Active Directory (Azure AD)](../articles/active-directory/fundamentals/active-directory-whatis.md) app registration. Follow the instructions in [Create an app registration with Azure Digital Twins access](../articles/digital-twins/how-to-create-app-registration-portal.md) to set this up.
1111

1212
Once you have an app registration, you'll need the registration's **Application (client) ID**, **Directory (tenant) ID**, and **client secret** ([find in the Azure portal](../articles/digital-twins/how-to-create-app-registration-portal.md#collect-important-values)). Take note of these values to use them later to grant access to the Azure Digital Twins APIs.

0 commit comments

Comments
 (0)