Skip to content

Commit f3b6537

Browse files
committed
updates to CLI qs
1 parent 67b6dd4 commit f3b6537

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

articles/event-hubs/event-hubs-quickstart-cli.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ In this quickstart, you will create an event hub using Azure CLI.
1818
- This article requires version 2.0.4 or later of the Azure CLI. If using Azure Cloud Shell, the latest version is already installed.
1919

2020
## Create a resource group
21-
A resource group is a logical collection of Azure resources. All resources are deployed and managed in a resource group. Run the following command to create a resource group. Select **Copy** to copy the command and paste it into the Cloud Shell, and run it.
21+
Run the following command to create a resource group. A resource group is a logical collection of Azure resources. All resources are deployed and managed in a resource group.
22+
23+
Select **Copy** to copy the command and paste it into the Cloud Shell or CLI window, and run it. Update the resource group name and the region if you like.
2224

2325
```azurecli-interactive
2426
rgName="contosorg$RANDOM"
@@ -43,7 +45,7 @@ You see the output similar to the following one. You see the resource group name
4345
```
4446

4547
## Create an Event Hubs namespace
46-
An Event Hubs namespace provides a unique scoping container, referenced by its fully qualified domain name, in which you create one or more event hubs. To create a namespace in your resource group, run the following command:
48+
Run the following command to create an Event Hubs namespace. An Event Hubs namespace provides a unique scoping container, referenced by its fully qualified domain name, in which you create one or more event hubs. Update the name of the namespace if you like.
4749

4850
```azurecli-interactive
4951
# Create an Event Hubs namespace. Specify a name for the Event Hubs namespace.
@@ -83,7 +85,7 @@ You see the output similar to the following one. You see the name of the namespa
8385
```
8486

8587
## Create an event hub
86-
Run the following command to create an event hub.
88+
Run the following command to create an event hub. Update the name of the event hub if you like.
8789

8890
```azurecli-interactive
8991
# Create an event hub. Specify a name for the event hub.
@@ -127,6 +129,12 @@ az group delete --name $rgName
127129

128130
## Next steps
129131

130-
> [!div class="nextstepaction"]
131-
> See the **Send and receive events** tutorials: [.NET Core](event-hubs-dotnet-standard-getstarted-send.md), [Java](event-hubs-java-get-started-send.md), [Python](event-hubs-python-get-started-send.md), [JavaScript](event-hubs-node-get-started-send.md)
132+
In this article, you created a resource group, an Event Hubs namespace, and an event hub. For step-by-step instructions to send events to (or) receive events from an event hub, see the **Send and receive events** tutorials:
132133

134+
- [.NET Core](event-hubs-dotnet-standard-getstarted-send.md)
135+
- [Java](event-hubs-java-get-started-send.md)
136+
- [Python](event-hubs-python-get-started-send.md)
137+
- [JavaScript](event-hubs-node-get-started-send.md)
138+
- [Go](event-hubs-go-get-started-send.md)
139+
- [C (send only)](event-hubs-c-getstarted-send.md)
140+
- [Apache Storm (receive only)](event-hubs-storm-getstarted-receive.md)

0 commit comments

Comments
 (0)