logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Azure Provider - Manage Resource Providers | Online Free DevTools by Hexmos

Manage Azure resource providers with Az Provider. Register, unregister, list and show information. Free online tool, no registration required.

az-provider

Manage resource providers. Part of azure-cli (also known as az). More information: https://learn.microsoft.com/cli/azure/provider.

  • Register a provider:

az provider register {{[-n|--namespace]}} {{Microsoft.PolicyInsights}}

  • Unregister a provider:

az provider unregister {{[-n|--namespace]}} {{Microsoft.Automation}}

  • List all providers for a subscription:

az provider list

  • Show information about a specific provider:

az provider show {{[-n|--namespace]}} {{Microsoft.Storage}}

  • List all resource types for a specific provider:

az provider list --query "[?namespace=='{{Microsoft.Network}}'].resourceTypes[].resourceType"

See Also