Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/azure-cli/azure/cli/command_modules/acr/_help.py
Original file line number Diff line number Diff line change
Expand Up @@ -898,6 +898,12 @@
- name: Get the storage usage for an Azure Container Registry.
text: >
az acr show-usage -n myregistry
- name: Get the current amount of storage used by the registry based on the included storage of its SKU (in bytes).
text: >
az acr show-usage -n myregistry --query "value[?name=='Size'] | [0]"
- name: Get the current amount of storage used by the registry and the maximum storage capacity allowed.
text: >
az acr show-usage -n myregistry --query "value[?name=='MaximumStorageCapacity'] | [0]"
"""

helps['acr task'] = """
Expand Down