Skip to content

Commit 396ee58

Browse files
azurecli tagging -- batch the first
1 parent 6405245 commit 396ee58

File tree

6 files changed

+20
-20
lines changed

6 files changed

+20
-20
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ Get-AzResourceGroup -Debug
118118

119119
Which returns many values, including the following response value:
120120

121-
```powershell
121+
```output
122122
DEBUG: ============================ HTTP RESPONSE ============================
123123
124124
Status Code:
@@ -137,7 +137,7 @@ New-AzResourceGroup -Name myresourcegroup -Location westus -Debug
137137

138138
Which returns many values, including the following values:
139139

140-
```powershell
140+
```output
141141
DEBUG: ============================ HTTP RESPONSE ============================
142142
143143
Status Code:

articles/azure-resource-manager/management/resource-providers-and-types.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Get-AzResourceProvider -ListAvailable | Select-Object ProviderNamespace, Registr
7979

8080
Which returns results similar to:
8181

82-
```powershell
82+
```output
8383
ProviderNamespace RegistrationState
8484
-------------------------------- ------------------
8585
Microsoft.ClassicCompute Registered
@@ -97,7 +97,7 @@ Register-AzResourceProvider -ProviderNamespace Microsoft.Batch
9797

9898
Which returns results similar to:
9999

100-
```powershell
100+
```output
101101
ProviderNamespace : Microsoft.Batch
102102
RegistrationState : Registering
103103
ResourceTypes : {batchAccounts, operations, locations, locations/quotas}
@@ -114,7 +114,7 @@ Get-AzResourceProvider -ProviderNamespace Microsoft.Batch
114114

115115
Which returns results similar to:
116116

117-
```powershell
117+
```output
118118
{ProviderNamespace : Microsoft.Batch
119119
RegistrationState : Registered
120120
ResourceTypes : {batchAccounts}
@@ -131,7 +131,7 @@ To see the resource types for a resource provider, use:
131131

132132
Which returns:
133133

134-
```powershell
134+
```output
135135
batchAccounts
136136
operations
137137
locations
@@ -148,7 +148,7 @@ To get the available API versions for a resource type, use:
148148

149149
Which returns:
150150

151-
```powershell
151+
```output
152152
2017-05-01
153153
2017-01-01
154154
2015-12-01
@@ -166,7 +166,7 @@ To get the supported locations for a resource type, use.
166166

167167
Which returns:
168168

169-
```powershell
169+
```output
170170
West Europe
171171
East US
172172
East US 2
@@ -184,7 +184,7 @@ az provider list --query "[].{Provider:namespace, Status:registrationState}" --o
184184

185185
Which returns results similar to:
186186

187-
```azurecli
187+
```output
188188
Provider Status
189189
-------------------------------- ----------------
190190
Microsoft.ClassicCompute Registered
@@ -212,7 +212,7 @@ az provider show --namespace Microsoft.Batch
212212

213213
Which returns results similar to:
214214

215-
```azurecli
215+
```output
216216
{
217217
"id": "/subscriptions/####-####/providers/Microsoft.Batch",
218218
"namespace": "Microsoft.Batch",
@@ -231,7 +231,7 @@ az provider show --namespace Microsoft.Batch --query "resourceTypes[*].resourceT
231231

232232
Which returns:
233233

234-
```azurecli
234+
```output
235235
Result
236236
---------------
237237
batchAccounts
@@ -250,7 +250,7 @@ az provider show --namespace Microsoft.Batch --query "resourceTypes[?resourceTyp
250250

251251
Which returns:
252252

253-
```azurecli
253+
```output
254254
Result
255255
---------------
256256
2017-05-01
@@ -270,7 +270,7 @@ az provider show --namespace Microsoft.Batch --query "resourceTypes[?resourceTyp
270270

271271
Which returns:
272272

273-
```azurecli
273+
```output
274274
Result
275275
---------------
276276
West Europe

articles/azure-resource-manager/templates/cross-resource-group-deployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ New-AzResourceGroupDeployment `
326326

327327
The output from the preceding example is:
328328

329-
```powershell
329+
```output
330330
Name Type Value
331331
=============== ========================= ==========
332332
parentRG String Parent resource group is parentGroup

articles/azure-resource-manager/templates/deploy-cli.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ You can target your deployment to either an Azure subscription or a resource gro
1818

1919
To deploy to a **resource group**, use [az group deployment create](/cli/azure/group/deployment?view=azure-cli-latest#az-group-deployment-create):
2020

21-
```azurecli
21+
```azurecli-interactive
2222
az group deployment create --resource-group <resource-group-name> --template-file <path-to-template>
2323
```
2424

2525
To deploy to a **subscription**, use [az deployment create](/cli/azure/deployment?view=azure-cli-latest#az-deployment-create):
2626

27-
```azurecli
27+
```azurecli-interactive
2828
az deployment create --location <location> --template-file <path-to-template>
2929
```
3030

@@ -97,7 +97,7 @@ To pass parameter values, you can use either inline parameters or a parameter fi
9797

9898
To pass inline parameters, provide the values in `parameters`. For example, to pass a string and array to a template is a Bash shell, use:
9999

100-
```azurecli
100+
```azurecli-interactive
101101
az group deployment create \
102102
--resource-group testgroup \
103103
--template-file demotemplate.json \
@@ -108,7 +108,7 @@ If you're using Azure CLI with Windows Command Prompt (CMD) or PowerShell, pass
108108

109109
You can also get the contents of file and provide that content as an inline parameter.
110110

111-
```azurecli
111+
```azurecli-interactive
112112
az group deployment create \
113113
--resource-group testgroup \
114114
--template-file demotemplate.json \

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Get-AzVMUsage -Location "South Central US"
7070

7171
Which returns:
7272

73-
```powershell
73+
```output
7474
Name Current Value Limit Unit
7575
---- ------------- ----- ----
7676
Availability Sets 0 2000 Count

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Get-AzComputeResourceSku | where {$_.Locations -icontains "centralus"}
3636

3737
The results include a list of SKUs for the location and any restrictions for that SKU. Notice that a SKU might be listed as `NotAvailableForSubscription`.
3838

39-
```powershell
39+
```output
4040
ResourceType Name Locations Zone Restriction Capability Value
4141
------------ ---- --------- ---- ----------- ---------- -----
4242
virtualMachines Standard_A0 centralus NotAvailableForSubscription MaxResourceVolumeMB 20480

0 commit comments

Comments
 (0)