Describe the bug
az acr task identity show renders incorrect result for output formats table and tsv.
In particular:
az acr task identity show -n redactedName -r redactedRegistry -o table renders wrong headers and no meaningful output.
Output format that shows the expected output:
Output format that does not show the expected data:
To Reproduce
az acr task identity show -n redactedName -r redactedRegistry -o table
NAME PLATFORM STATUS SOURCE REPOSITORY TRIGGERS
------ ---------- -------- ------------------- ----------
One entry would be expected with different headers. (The printed headers look like the headers of az acr task list -r ... -o table.)
az acr task identity show -n redactedName -r redactedRegistry -o json renders expected output:
{
"principalId": null,
"tenantId": null,
"type": "UserAssigned",
"userAssignedIdentities": {
"/subscriptions/redacted": {
"clientId": "redacted",
"principalId": "redacted"
}
}
}
Expected behavior
I expect some meaningful output data, regardless of --output format.
Errors:
No errors are thrown.
Additional Context
Describe the bug
az acr task identity showrenders incorrect result for output formats table and tsv.In particular:
az acr task identity show -n redactedName -r redactedRegistry -o tablerenders wrong headers and no meaningful output.Output format that shows the expected output:
Output format that does not show the expected data:
To Reproduce
az acr task identity show -n redactedName -r redactedRegistry -o tableOne entry would be expected with different headers. (The printed headers look like the headers of
az acr task list -r ... -o table.)az acr task identity show -n redactedName -r redactedRegistry -o jsonrenders expected output:Expected behavior
I expect some meaningful output data, regardless of --output format.
Errors:
No errors are thrown.
Additional Context