Skip to content

Commit efb19b6

Browse files
authored
Merge pull request #310743 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents fa606a9 + cca93ef commit efb19b6

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

articles/azure-functions/functions-bindings-http-webhook-trigger.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -700,7 +700,7 @@ By default when you create a function for an HTTP trigger, the function is addre
700700
https://<APP_NAME>.azurewebsites.net/api/<FUNCTION_NAME>
701701
```
702702

703-
You can customize this route using the optional `route` property on the HTTP trigger's input binding. You can use any [Web API Route Constraint](https://www.asp.net/web-api/overview/web-api-routing-and-actions/attribute-routing-in-web-api-2#constraints) with your parameters.
703+
You can customize this route using the optional `route` property on the HTTP trigger's input binding. You can use any [ASP.NET Core Route Constraint](/aspnet/core/fundamentals/routing#route-constraints) with your parameters.
704704

705705
::: zone pivot="programming-language-csharp"
706706

articles/event-grid/mqtt-publish-and-subscribe-cli.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,16 @@ After a successful installation by using the step CLI, open a Command Prompt win
6666

6767
## Create a namespace
6868

69+
Create a resource group.
70+
71+
```azurecli-interactive
72+
az group create --name {Resource Group} --location {Location}
73+
```
74+
6975
Use this command to create a namespace. Update the command with your resource group and a namespace name.
7076

7177
```azurecli-interactive
72-
az eventgrid namespace create --resource-group {Resource Group} --name {Namespace Name} --topic-spaces-configuration "{state:Enabled}"
78+
az eventgrid namespace create --location {Location} --resource-group {Resource Group} --name {Namespace Name} --topic-spaces-configuration "{state:Enabled}"
7379
```
7480

7581
To keep this quickstart simple, create a namespace with minimal properties. For more information about network, security, and settings on other tabs, see [Create and manage namespaces](create-view-manage-namespaces.md).

0 commit comments

Comments
 (0)