Home > front end >  Retrieving list of disk SKUs available
Retrieving list of disk SKUs available

Time:01-17

I am trying to get a list of all available Storage SKUs that I can use during creation of VM. When I go to portal, I see following options.

enter image description here

Is there any Azure CLI command to retrieve this list? I have tried some combinations of az disk/storage without much luck.

CodePudding user response:

You can check the available Skus for the disks here under sku option.
Description for the each SKU can be found here.

If you want to retrieve them programmatically, you could use API call:

GET https://management.azure.com/subscriptions/{subscriptionId}/providers/Microsoft.Storage/skus?api-version=2021-04-01

as described here.

  •  Tags:  
  • Related