Skip to content

Commit 8cf555b

Browse files
committed
edit pass: custom-event-quickstarts
1 parent d95866f commit 8cf555b

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

articles/event-grid/custom-event-to-eventhub.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Event Grid topics are Azure resources, and they must be placed in an Azure resou
2020

2121
Create a resource group by using the [az group create](/cli/azure/group#az-group-create) command. The following example creates a resource group named `gridResourceGroup` in the `westus2` location.
2222

23-
Select **Try it** next to the CLI example to open Azure Cloud Shell on the right pane. Select the **Copy** button to copy the command, paste it in the Cloud Shell window, and then select the Enter key to run the command.
23+
Select **Open Cloud Shell** to open Azure Cloud Shell on the right pane. Select the **Copy** button to copy the command, paste it in Cloud Shell, and then select the Enter key to run the command.
2424

2525
```azurecli-interactive
2626
az group create --name gridResourceGroup --location westus2
@@ -95,7 +95,7 @@ endpoint=$(az eventgrid topic show --name $topicname -g gridResourceGroup --quer
9595
key=$(az eventgrid topic key list --name $topicname -g gridResourceGroup --query "key1" --output tsv)
9696
```
9797

98-
To simplify this article, you use sample event data to send to the custom topic. Typically, an application or an Azure service would send the event data.
98+
For the sake of simplicity in this article, you use sample event data to send to the custom topic. Typically, an application or an Azure service would send the event data.
9999

100100
The cURL tool sends HTTP requests. In this article, you use cURL to send the event to the custom topic. The following example sends three events to the Event Grid topic:
101101

articles/event-grid/custom-event-to-function.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ In this section, you use Visual Studio Code to create a function with an Event G
6969
1. Hover over your project and select the **Deploy to Azure** button.
7070

7171
:::image type="content" source="./media/custom-event-to-function/deploy-to-azure-button.png" alt-text="Screenshot that shows the button for deploying to Azure." lightbox="./media/custom-event-to-function/deploy-to-azure-button.png":::
72-
1. In the drop-down list of the command palette, select **+ Create new function app**, and then select the Enter key.
72+
1. In the dropdown list of the command palette, select **+ Create new function app**, and then select the Enter key.
7373

7474
1. For **Name**, enter a globally unique name for the new function app, and then select the Enter key.
7575

@@ -84,7 +84,7 @@ In this section, you use Visual Studio Code to create a function with an Event G
8484
1. Right-click your function, and then select **Open in Portal**.
8585

8686
:::image type="content" source="./media/custom-event-to-function/click-to-view-functions-app.png" alt-text="Screenshot that shows selections for opening a function in the portal." lightbox="./media/custom-event-to-function/click-to-view-functions-app.png":::
87-
1. Sign in to Azure if needed, and confirm that the **Function App** page appears for your function.
87+
1. Sign in to Azure if necessary, and confirm that the **Function App** page appears for your function.
8888

8989
1. On the bottom pane, select your function.
9090

@@ -97,9 +97,9 @@ In this section, you use Visual Studio Code to create a function with an Event G
9797

9898
An Event Grid topic provides a user-defined endpoint that you post your events to.
9999

100-
1. On a new tab of the web browser window, sign in to [Azure portal](https://portal.azure.com/).
100+
1. On a new tab of the web browser window, sign in to the [Azure portal](https://portal.azure.com/).
101101
102-
1. On the search bar at the topic, search for **Event Grid Topics**, and select **Event Grid Topics**.
102+
1. On the search bar at the topic, search for **Event Grid Topics**, and then select **Event Grid Topics**.
103103

104104
:::image type="content" source="./media/custom-event-to-function/select-topics.png" alt-text="Screenshot that shows the selection of Event Grid topics." lightbox="./media/custom-event-to-function/select-topics.png" :::
105105
1. On the **Topics** page, select **+ Create** on the command bar.
@@ -163,7 +163,7 @@ The cURL tool sends HTTP requests. In this article, you use cURL to send the eve
163163

164164
### Azure CLI
165165

166-
1. In the Azure portal, select **Cloud Shell**. If you're in the PowerShell mode, select **Switch to Bash**.
166+
1. In the Azure portal, select **Cloud Shell**. If you're in Azure PowerShell mode, select **Switch to Bash**.
167167

168168
:::image type="content" source="./media/custom-event-quickstart-portal/cloud-shell-bash.png" alt-text="Screenshot that shows the Bash window in Azure Cloud Shell.":::
169169
1. Set the `topicname` and `resourcegroupname` variables that are used in the commands.
@@ -295,16 +295,16 @@ If you plan to continue working with this event, don't clean up the resources th
295295

296296
1. On the toolbar, select **Delete resource group**.
297297

298-
1. Confirm deletion by entering the name of the resource group, and then select **Delete**.
298+
1. Confirm the deletion by entering the name of the resource group, and then select **Delete**.
299299

300-
The other resource group that appears on the **Resource groups** page was created and used by the Cloud Shell window. Delete it if you don't plan to use the Cloud Shell window later.
300+
The Cloud Shell window created and used the other resource group that appears on the **Resource groups** page. Delete this resource group if you don't plan to use the Cloud Shell window later.
301301

302302
## Related content
303303

304304
Now that you know how to create topics and event subscriptions, learn more about what Event Grid can help you do:
305305

306306
* [About Event Grid](overview.md)
307-
* [Route Blob Storage events to a custom web endpoint](../storage/blobs/storage-blob-event-quickstart.md?toc=%2fazure%2fevent-grid%2ftoc.json)
307+
* [Route Azure Blob Storage events to a custom web endpoint](../storage/blobs/storage-blob-event-quickstart.md?toc=%2fazure%2fevent-grid%2ftoc.json)
308308
* [Monitor virtual machine changes with Azure Event Grid and Logic Apps](monitor-virtual-machine-changes-logic-app.md)
309309
* [Stream big data into a data warehouse](event-hubs-integration.md)
310310

articles/event-grid/custom-event-to-queue-storage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Event Grid topics are Azure resources, and they must be placed in an Azure resou
2020

2121
Create a resource group by using the [az group create](/cli/azure/group#az-group-create) command. The following example creates a resource group named `gridResourceGroup` in the `westus2` location.
2222

23-
Select **Try it** next to the CLI example to open Azure Cloud Shell on the right pane. Select the **Copy** button to copy the command, paste it in the Cloud Shell window, and then select the Enter key to run the command.
23+
Select **Open Cloud Shell** to open Azure Cloud Shell on the right pane. Select the **Copy** button to copy the command, paste it in Cloud Shell, and then select the Enter key to run the command.
2424

2525
```azurecli-interactive
2626
az group create --name gridResourceGroup --location westus2
@@ -112,7 +112,7 @@ endpoint=$(az eventgrid topic show --name $topicname -g gridResourceGroup --quer
112112
key=$(az eventgrid topic key list --name $topicname -g gridResourceGroup --query "key1" --output tsv)
113113
```
114114

115-
To simplify this article, you use sample event data to send to the custom topic. Typically, an application or an Azure service would send the event data.
115+
For the sake of simplicity in this article, you use sample event data to send to the custom topic. Typically, an application or an Azure service would send the event data.
116116

117117
The cURL tool sends HTTP requests. In this article, you use cURL to send the event to the custom topic. The following example sends three events to the Event Grid topic:
118118

0 commit comments

Comments
 (0)