Complete the code to get Azure Advisor recommendations using Azure CLI.
az advisor recommendation list --[1]The subscription parameter is used to specify the Azure subscription to get Advisor recommendations for.
Complete the code to filter Azure Advisor recommendations by category.
az advisor recommendation list --category [1]The Security category filters recommendations related to security best practices.
Fix the error in the command to suppress a specific Azure Advisor recommendation by its ID.
az advisor recommendation [1] --ids <recommendation-id>The suppress command is used to temporarily hide a specific recommendation by its ID.
Fill both blanks to create a JSON output of Azure Advisor recommendations filtered by resource type.
az advisor recommendation list --[1] [2] --output [3]
Use resource-type to filter by resource type and json to get output in JSON format.
Fill all three blanks to assign a suppression reason and expiration date when suppressing an Azure Advisor recommendation.
az advisor recommendation suppress --ids <recommendation-id> --[1] '[2]' --[3] '2024-12-31'
Use reason to provide why the recommendation is suppressed, expires-on to set when suppression ends, and a descriptive text like Justified maintenance window as the reason.