mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-01 05:15:22 +02:00
az-provider: add page (#8697)
This commit is contained in:
parent
21740542b6
commit
ac6b8037dd
1 changed files with 25 additions and 0 deletions
25
pages/common/az-provider.md
Normal file
25
pages/common/az-provider.md
Normal file
|
@ -0,0 +1,25 @@
|
|||
# az provider
|
||||
|
||||
> Manage resource providers.
|
||||
> Part of `azure-cli`.
|
||||
> More information: <https://docs.microsoft.com/cli/azure/provider>.
|
||||
|
||||
- Register a provider:
|
||||
|
||||
`az provider register --namespace {{Microsoft.PolicyInsights}}`
|
||||
|
||||
- Unregister a provider:
|
||||
|
||||
`az provider unregister --namespace {{Microsoft.Automation}}`
|
||||
|
||||
- List all providers for a subscription:
|
||||
|
||||
`az provider list`
|
||||
|
||||
- Show information about a specific provider:
|
||||
|
||||
`az provider show --namespace {{Microsoft.Storage}}`
|
||||
|
||||
- List all resource types for a specific provider:
|
||||
|
||||
`az provider list --query "[?namespace=='{{Microsoft.Network}}'].resourceTypes[].resourceType"`
|
Loading…
Add table
Reference in a new issue