File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
src/azure-cli/azure/cli/command_modules/acr Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 704704 text: az acr manifest list-metadata -r myregistry -n hello-world
705705 - name: List the metadata of the manifests in the repository 'hello-world'.
706706 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+ - name: List the metadata of untagged manifests by digests for the repository 'hello-world'.
712+ text: az acr manifest list-metadata -r myregistry -n hello-world --query "[?tags==null].digests"
707713"""
708714
709715helps ['acr manifest update-metadata' ] = """
You can’t perform that action at this time.
0 commit comments