1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-02 21:55:44 +02:00
tldr/pages/common/az-provider.md

26 lines
675 B
Markdown
Raw Normal View History

2022-10-09 06:41:10 +03:00
# az provider
> Manage resource providers.
> Part of `azure-cli` (also known as `az`).
> More information: <https://learn.microsoft.com/cli/azure/provider>.
2022-10-09 06:41:10 +03:00
- Register a provider:
`az provider register {{[-n|--namespace]}} {{Microsoft.PolicyInsights}}`
2022-10-09 06:41:10 +03:00
- Unregister a provider:
`az provider unregister {{[-n|--namespace]}} {{Microsoft.Automation}}`
2022-10-09 06:41:10 +03:00
- List all providers for a subscription:
`az provider list`
- Show information about a specific provider:
`az provider show {{[-n|--namespace]}} {{Microsoft.Storage}}`
2022-10-09 06:41:10 +03:00
- List all resource types for a specific provider:
`az provider list --query "[?namespace=='{{Microsoft.Network}}'].resourceTypes[].resourceType"`