Complete the code to create a blob container with private access level.
az storage container create --name mycontainer --account-name mystorageaccount --public-access [1]The private access level means the container and blobs are not accessible publicly.
Complete the code to set the container's access level to allow public read access for blobs only.
az storage container set-permission --name mycontainer --account-name mystorageaccount --public-access [1]The blob access level allows public read access to blobs but not to container metadata.
Fix the error in the command to create a container with public read access to blobs and container metadata.
az storage container create --name mycontainer --account-name mystorageaccount --public-access [1]The container access level allows public read access to blobs and container metadata.
Fill both blanks to create a container with public read access to blobs and then check its access level.
az storage container create --name mycontainer --account-name mystorageaccount --public-access [1] az storage container show --name mycontainer --account-name mystorageaccount --query [2]
Use blob to set public read access to blobs only, and query publicAccess to check the access level.
Fill all three blanks to update a container's access level to private, verify it, and then delete the container.
az storage container set-permission --name mycontainer --account-name mystorageaccount --public-access [1] az storage container show --name mycontainer --account-name mystorageaccount --query [2] az storage container delete --name [3] --account-name mystorageaccount
Set access to private, query publicAccess to verify, and delete the container named mycontainer.