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 manifest list-metadata
1 parent 7bb3c8e commit 5bca10bCopy full SHA for 5bca10b
src/azure-cli/azure/cli/command_modules/acr/_help.py
@@ -704,6 +704,10 @@
704
text: az acr manifest list-metadata -r myregistry -n hello-world
705
- name: List the metadata of the manifests in the repository 'hello-world'.
706
text: az acr manifest list-metadata myregistry.azurecr.io/hello-world
707
+ - name: List the metadata of all manifests (tagged/untagged) in the repository 'hello-world'.
708
+ text: az acr manifest list-metadata -r myregistry -n hello-world --query "[]"
709
+ - name: List the metadata of untagged manifests in the repository 'hello-world'.
710
+ text: az acr manifest list-metadata -r myregistry -n hello-world --query "[?tags==null]"
711
"""
712
713
helps['acr manifest update-metadata'] = """
0 commit comments