I want to know if there is any way where I can pull the vm sizes that are available for my subscription.
I referred to the below article and command to pull the output.
I selected a subsctiption and then ran the below command to get the available vm sizes. "Get-AzComputeResourceSku | Where-Object {$.Locations.Contains("northeurope") -and $.Restrictions.ReasonCode -ne 'NotAvailableForSubscription'}"
The output of above command is good, its giving me vm sizes which are available and not available at a subscription level. The problem is the output shows some VM skus are not available at subscription but I can able to create vm where it shows vm skus is not available.
I need help to get the vm sizes available to a subscription which are currently active and which are actually available for deployment and which are really not available for the subscription..