We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Command - az resource list --resource-group MYRG --query "[].{type:type}" output - [ { "type": "Microsoft.Network/networkInterfaces" }, { "type": "Microsoft.Network/networkInterfaces" }, { "type": "Microsoft.Network/networkSecurityGroups" }, { "type": "Microsoft.Network/networkSecurityGroups" } ]
The text was updated successfully, but these errors were encountered:
mark
Sorry, something went wrong.
Hi, hope you are well
az resource list -g MYRG --query "[].{Type:type}" -o tsv | get-unique -AsString
az resource list -g MYRG --query "[].{Type:type}" -o tsv | sort | uniq
I hope I could help you, if you have any doubts, please let me know
No branches or pull requests
Command -
az resource list --resource-group MYRG --query "[].{type:type}"
output -
[
{
"type": "Microsoft.Network/networkInterfaces"
},
{
"type": "Microsoft.Network/networkInterfaces"
},
{
"type": "Microsoft.Network/networkSecurityGroups"
},
{
"type": "Microsoft.Network/networkSecurityGroups"
}
]
The text was updated successfully, but these errors were encountered: