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.
Is there any Azure CLI command to retrieve this list? I have tried some combinations of az disk/storage without much luck.
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.