16 December, 2019

Best Way To Update Storage Account SKU Plan Example

How to Update Existing Storage Account SKU Plan?

​The updates operation allow updating
  • The SKU, 
  • Encryption, 
  • Access tier, 
  •  Tags 
  •  It can also be used to map the account to a custom domain
Only one custom domain is supported per storage account. The change of the custom domain is not supported. In order to replace an old custom domain, the old value must be cleared/unregistered before a new value can be set. 


PowerShell: Update Storage Account SKU Example

Set-AzureRmStorageAccount -ResourceGroupName "YourResourceGroup" -AccountName "YourSorageAccounNAME" -Type "Standard_LRS"

Visit MSDN For More Powershell Commands


Azure API: Update Storage Account SKU Example



PATCH https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}?api-version=2019-06-01

Visit MSDN for the latest updates

https://docs.microsoft.com/en-us/rest/api/storagerp/storageaccounts/update


No comments:

Post a Comment

Microservices vs Monolithic Architecture

 Microservices vs Monolithic Architecture Here’s a clear side-by-side comparison between Microservices and Monolithic architectures — fro...