Forrest logo
back to context overview

az-storage-container

List of commands for az-storage-container:

  • az-storage-container:tldr:053a2 az-storage-container: Mark the specified container for deletion.
    $ az storage container delete --account-name ${storage_account_name} --name ${container_name} --fail-not-exist
    try on your machine
    explain this command
  • az-storage-container:tldr:1c234 az-storage-container: Create a container in a storage account.
    $ az storage container create --account-name ${storage_account_name} --name ${container_name} --public-access ${access_level} --fail-on-exist
    try on your machine
    explain this command
  • az-storage-container:tldr:851cc az-storage-container: List containers in a storage account.
    $ az storage container list --account-name ${storage_account_name} --prefix ${filter_prefix}
    try on your machine
    explain this command
  • az-storage-container:tldr:9664b az-storage-container: Generate a shared access signature for the container.
    $ az storage container generate-sas --account-name ${storage_account_name} --name ${container_name} --permissions ${sas_permissions} --expiry ${expiry_date} --https-only
    try on your machine
    explain this command
back to context overview