Skip to content

Commit 53a90b0

Browse files
authored
Merge pull request #104917 from dksimpson/DKS-US1669724-2
Fix tags in Azure CLI code blocks - batch 2
2 parents 8b71c28 + dfb7a83 commit 53a90b0

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

articles/azure-functions/functions-create-first-java-maven.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ mvn azure-functions:run
9393

9494
You see output like the following from Azure Functions Core Tools when you run the project locally:
9595

96-
```Output
96+
```output
9797
...
9898
9999
Now listening on: http://0.0.0.0:7071
@@ -111,7 +111,7 @@ Trigger the function from the command line using cURL in a new terminal window:
111111
curl -w "\n" http://localhost:7071/api/HttpTrigger-Java --data AzureFunctions
112112
```
113113

114-
```Output
114+
```output
115115
Hello AzureFunctions!
116116
```
117117
The [function key](functions-bindings-http-webhook-trigger.md#authorization-keys) isn't required when running locally. Use `Ctrl+C` in the terminal to stop the function code.
@@ -132,7 +132,7 @@ az login
132132
133133
Use the following Maven command to deploy your project to a new function app.
134134

135-
```azurecli
135+
```console
136136
mvn azure-functions:deploy
137137
```
138138

@@ -170,13 +170,13 @@ You can now use the copied URL to access your function.
170170

171171
To verify the function app running on Azure using `cURL`, replace the URL from the sample below with the URL that you copied from the portal.
172172

173-
```azurecli
173+
```console
174174
curl -w "\n" https://fabrikam-functions-20190929094703749.azurewebsites.net/api/HttpTrigger-Java?code=zYRohsTwBlZ68YF.... --data AzureFunctions
175175
```
176176

177177
This sends a POST request to the function endpoint with `AzureFunctions` in the body of the request. You see the following response.
178178

179-
```Output
179+
```output
180180
Hello AzureFunctions!
181181
```
182182

articles/azure-resource-manager/management/request-limits-and-throttling.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ az group list --verbose --debug
156156

157157
Which returns many values, including the following values:
158158

159-
```azurecli
159+
```output
160160
msrest.http_logger : Response status: 200
161161
msrest.http_logger : Response headers:
162162
msrest.http_logger : 'Cache-Control': 'no-cache'
@@ -176,7 +176,7 @@ az group create -n myresourcegroup --location westus --verbose --debug
176176

177177
Which returns many values, including the following values:
178178

179-
```azurecli
179+
```output
180180
msrest.http_logger : Response status: 201
181181
msrest.http_logger : Response headers:
182182
msrest.http_logger : 'Cache-Control': 'no-cache'

articles/azure-resource-manager/templates/error-resource-quota.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ az vm list-usage --location "South Central US"
4646

4747
Which returns:
4848

49-
```azurecli
49+
```output
5050
[
5151
{
5252
"currentValue": 0,

articles/azure-resource-manager/templates/error-sku-not-available.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ az vm list-skus --location southcentralus --size Standard_F --output table
6464

6565
The command returns results like:
6666

67-
```azurecli
67+
```output
6868
ResourceType Locations Name Zones Capabilities Restrictions
6969
--------------- -------------- ---------------- ------- -------------- --------------
7070
virtualMachines southcentralus Standard_F1 ... None

0 commit comments

Comments
 (0)