mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
31 lines
838 B
Plaintext
31 lines
838 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# az advisor
|
|
|
|
> Manage Azure subscription information.
|
|
> Part of `azure-cli` (also known as `az`).
|
|
> More information: <https://learn.microsoft.com/cli/azure/advisor>.
|
|
|
|
- List Azure Advisor configuration for the entire subscription:
|
|
|
|
`az advisor configuration list`
|
|
|
|
- Show Azure Advisor configuration for the given subscription or resource group:
|
|
|
|
`az advisor configuration show {{[-g|--resource-group]}} {{resource_group}}`
|
|
|
|
- List Azure Advisor recommendations:
|
|
|
|
`az advisor recommendation list`
|
|
|
|
- Enable Azure Advisor recommendations:
|
|
|
|
`az advisor recommendation enable {{[-g|--resource-group]}} {{resource_group}}`
|
|
|
|
- Disable Azure Advisor recommendations:
|
|
|
|
`az advisor recommendation disable {{[-g|--resource-group]}} {{resource_group}}`
|