Complete the code to list all storage accounts in your Azure subscription.
az storage account [1]The list command shows all storage accounts in your subscription.
Complete the code to create a new blob container named 'mycontainer' in a storage account.
az storage container [1] --name mycontainer --account-name mystorageaccountThe create command makes a new blob container inside the storage account.
Fix the error in the command to upload a file named 'data.txt' to a blob container.
az storage blob upload --container-name mycontainer --file data.txt --name [1] --account-name mystorageaccountThe --name parameter should be the blob name, usually the file name like 'data.txt'.
Fill both blanks to download a blob named 'report.pdf' from a container to a local file.
az storage blob download --container-name [1] --name [2] --file localreport.pdf --account-name mystorageaccount
The container name is 'mycontainer' and the blob name is 'report.pdf' to download the correct file.
Fill all three blanks to delete a storage account named 'mystorageaccount' in resource group 'mygroup'.
az storage account [1] --name [2] --resource-group [3]
Use delete to remove the storage account named 'mystorageaccount' in the resource group 'mygroup'.