We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
az acr show-usage
1 parent 46e0b42 commit d849be0Copy full SHA for d849be0
src/azure-cli/azure/cli/command_modules/acr/_help.py
@@ -898,6 +898,12 @@
898
- name: Get the storage usage for an Azure Container Registry.
899
text: >
900
az acr show-usage -n myregistry
901
+ - name: Get the current amount of storage used by the registry based on the included storage of its SKU (in bytes).
902
+ text: >
903
+ az acr show-usage -n myregistry --query "value[?name=='Size'] | [0]"
904
+ - name: Get the current amount of storage used by the registry and the maximum storage capacity allowed.
905
906
+ az acr show-usage -n myregistry --query "value[?name=='MaximumStorageCapacity'] | [0]"
907
"""
908
909
helps['acr task'] = """
0 commit comments