Complete the code to create an Azure Savings Plan with a one-year commitment.
az savingsplan create --name mySavingsPlan --term [1]The commitment period for this Savings Plan is set to one year using P1Y.
Complete the code to specify the scope of the Azure Savings Plan to a subscription.
az savingsplan create --name mySavingsPlan --scope [1]The scope subscription limits the Savings Plan to a single Azure subscription.
Fix the error in the command to specify the product type for the Azure Savings Plan.
az savingsplan create --name mySavingsPlan --product [1]The product type must be Compute to be valid in the Azure CLI.
Fill both blanks to create a Savings Plan with a three-year commitment and scope set to management group.
az savingsplan create --term [1] --scope [2]
The commitment is set to P3Y and the scope to management-group to apply savings across multiple subscriptions.
Fill all three blanks to create a Savings Plan named 'plan1' with a one-year commitment, product 'Compute', and scope 'subscription'.
az savingsplan create --name [1] --term [2] --product [3] --scope "/subscriptions/12345678-1234-1234-1234-123456789012"
The Savings Plan is named plan1, has a P1Y commitment, and targets the Compute product.