Issue: To determine whether a specific VM SKU is supported, whether it is in GA or Public Preview,
And if possible have a programmatic solution for this.
Solution provided-->
- Azure Marketplace: Check the Azure Marketplace to see if the VM SKU is listed under the Virtual Machines category. VM SKUs available in the Azure Marketplace are typically GA .https://azuremarketplace.microsoft.com/en-us/
- Azure Updates Blog: The Azure Updates Blog is regularly updated with announcements about new features, updates, and availability status of Azure services, including Virtual Machines. Blog Link: Azure Updates Blog
- Azure Virtual Machines Documentation: Visit the Azure Virtual Machines documentation for detailed information about VM offerings, including their availability status, features, and supported scenarios. Microsoft regularly updates its documentation to reflect the current status of VM SKUs. Check this for you case https://learn.microsoft.com/en-us/azure/virtual-machines/ngads-v-620-series
- Azure Portal: You can also check the Azure Portal for the availability status of VM SKUs in your subscription and region. The portal provides information about VM offerings and their availability status
And solutions to fetch it programmatically
- Azure Management APIs: You can use the Azure Resource Manager REST APIs to programmatically query information about Azure VM SKUs. Specifically, you would use the
Microsoft.Compute/skus
API to list available SKUs and their details. You can filter the results based on various parameters such as location, resource type, and availability status. please check this doc --> https://learn.microsoft.com/en-us/rest/api/compute/resource-skus/list?view=rest-compute-2024-03-01&tabs=HTTP - Azure CLI: Azure CLI provides commands to list available VM SKUs and their details. You can use the
az vm list-skus
command to list SKUs available for virtual machines in a specific location. You can further filter the results based on parameters such as location, resource group, and availability status.
Please accept answer , as it helped , Thankyou!