Complete the code to create a new management group in Azure.
az account management-group create --name [1]The --name parameter specifies the name of the new management group to create.
Complete the code to list all subscriptions under a specific management group.
az account management-group subscription list --name [1]The --name parameter specifies the management group whose subscriptions you want to list.
Fix the error in the command to move a subscription to a different management group.
az account management-group subscription add --subscription [1] --name NewGroupThe --subscription parameter requires the subscription ID to specify which subscription to move.
Fill both blanks to assign a subscription to a management group using Azure CLI.
az account management-group subscription add --subscription [1] --name [2]
The --subscription parameter needs the subscription ID, and --name needs the target management group name.
Fill all three blanks to create a management group, add a subscription, and list subscriptions under it.
az account management-group create --name [1] az account management-group subscription add --subscription [2] --name [3] az account management-group subscription list --name [1]
First, create the management group named 'FinanceGroup'. Then add the subscription with the given ID to 'FinanceGroup'. Finally, list subscriptions under 'FinanceGroup'.