Complete the code to create a new Azure dashboard with a specified name.
az portal dashboard create --name [1]The command creates a new Azure dashboard named 'dashboard1'. You need to provide the dashboard name after the --name flag.
Complete the code to list all Azure dashboards in your subscription.
az portal dashboard [1]The list command shows all dashboards in your Azure subscription.
Fix the error in the command to delete an Azure dashboard named 'OldDash'.
az portal dashboard [1] --name OldDashThe correct command to delete a dashboard is delete. Other options are invalid and cause errors.
Fill both blanks to export an Azure dashboard named 'ProdDash' to a JSON file.
az portal dashboard [1] --name [2] --output json > dashboard.json
The export command exports the dashboard named 'ProdDash' to JSON format.
Fill all three blanks to update an Azure dashboard named 'DevDash' with a new JSON file.
az portal dashboard [1] --name [2] --input-path [3]
The import command updates the dashboard 'DevDash' using the JSON file 'dashboard_update.json'.