Azure Resource Providers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
az provider list --query "[].{Provider:namespace, Status:registrationState}" --out table | |
# register the Microsoft.Batch provider | |
az provider register --namespace Microsoft.Batch | |
# show the provider registration state | |
az provider show --namespace Microsoft.Batch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Get-AzResourceProvider -ListAvailable | Select-Object ProviderNamespace, RegistrationState | |
# register a provider | |
Register-AzResourceProvider -ProviderNamespace Microsoft.Batch | |
# see information about the provider | |
Get-AzResourceProvider -ProviderNamespace Microsoft.Batch |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment