Skip to content

Commit 40ee987

Browse files
Update storage-how-to-create-file-share.md
1 parent 4b65ef6 commit 40ee987

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

articles/storage/files/storage-how-to-create-file-share.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,11 @@ Storage accounts have two properties, kind and SKU, which dictate the billing mo
5454
If you're creating an HDD file share, you can choose between the provisioned v2 and pay-as-you-go billing models. Both models are fully supported, however, we recommend provisioned v2 for new file share deployments. Provisioned v2 file shares are currently available in a limited subset of regions; see [provisioned v2 availability](./understanding-billing.md#provisioned-v2-availability) for more information.
5555

5656
### Region supportability base on different billing models
57-
To view region supportability on different billing models on CLI, use the following command.
58-
# [PowerShell](#tab/azure-powershell1)
59-
### To view Region supportability on different billing models (PowerShell)
57+
# [Portal](#tab/azure-portal)
58+
To view region supportability based on different billing models, use Azure PowerShell or Azure CLI.
59+
60+
# [PowerShell](#tab/azure-powershell)
61+
### Region supportability on different billing models (PowerShell)
6062
```powershell
6163
# Login to Azure account
6264
Connect-AzAccount
@@ -128,8 +130,8 @@ if ($filteredResult.Count -eq 0) {
128130
}
129131
```
130132

131-
# [Azure CLI](#tab/azure-cli1)
132-
### To view Region supportability on different billing models (Azure CLI)
133+
# [Azure CLI](#tab/azure-cli)
134+
### Region supportability on different billing models (Azure CLI)
133135
This script use jq command line JSON processor, to download, please visit https://jqlang.org/download/
134136
```bash
135137
# Login to Azure account
@@ -284,7 +286,7 @@ $storageAccountSku = "StandardV2_LRS"
284286
New-AzStorageAccount -ResourceGroupName $resourceGroupName -AccountName $storageAccountName -SkuName $storageAccountSku -Kind $storageAccountKind -Location $region
285287
```
286288

287-
To view the settings and statistics of the Provisiond V2 storage account, use the following command.
289+
To view the settings and service usage for the Provisiond V2 storage account, use the following command.
288290

289291
```powershell
290292
Get-AzStorageFileServiceUsage -ResourceGroupName $resourceGroupName -StorageAccountName $storageAccountName
@@ -339,7 +341,7 @@ storageAccountSku="StandardV2_LRS"
339341
az storage account create --resource-group $resourceGroupName --name $storageAccountName --location $region --kind $storageAccountKind --sku $storageAccountSku --output none
340342
```
341343

342-
To view the settings and statistic of the Provisiond V2 storage account, use the following command.
344+
To view the settings and service usage for the Provisiond V2 storage account, use the following command.
343345

344346
```bash
345347
az storage account file-service-usage --account-name $storageAccountName -g $resourceGroupName

0 commit comments

Comments
 (0)