You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Create a provisioned v1 or pay-as-you-go storage account (PowerShell)
182
188
To create a provisioned v1 or pay-as-you-go storage account using PowerShell, use the `New-AzStorageAccount` cmdlet in the Az.Storage PowerShell module. This cmdlet has many options; only the required options are shown. To learn more about advanced options, see the [`New-AzStorageAccount` cmdlet documentation](/powershell/module/az.storage/new-azstorageaccount).
To view the settings and service usage for the Provisiond V2 storage account, use the following command.
237
+
238
+
```bash
239
+
az storage account file-service-usage --account-name $storageAccountName -g $resourceGroupName
240
+
```
241
+
230
242
### Create a provisioned v1 or pay-as-you-go storage account (Azure CLI)
231
243
To create a provisioned v1 or pay-as-you-go storage account using Azure CLI, use the `az storage account create` command. This command has many options; only the required options are shown. To learn more about the advanced options, see the [`az storage account create` command documentation](/cli/azure/storage/account).
232
244
@@ -814,6 +826,115 @@ az storage share-rm delete \
814
826
815
827
---
816
828
829
+
## Region supportability base on different billing models
830
+
You can verify region supportability for various billing models using the following commands.
831
+
# [Portal](#tab/azure-portal)
832
+
To view region supportability based on different billing models, use Azure PowerShell or Azure CLI.
833
+
834
+
# [PowerShell](#tab/azure-powershell)
835
+
```powershell
836
+
# Login to Azure account
837
+
Connect-AzAccount
838
+
839
+
# Track down the subscription ID in GUID format
840
+
$subscriptionID = "your-subscription-id-number"
841
+
842
+
# Get Token
843
+
$token = Get-AzAccessToken
844
+
845
+
# Invoke SRP list SKU API, and get the returned SKU list
-[Planning for an Azure Files deployment](storage-files-planning.md) or [Planning for an Azure File Sync deployment](../file-sync/file-sync-planning.md).
0 commit comments