我正在尝试将 Azure 资源图查询的默认响应更改为 Azure 门户使用的类似响应。我的查询是:
resourcecontainers | where type == "microsoft.resources/subscriptions" | project name, tags
标签的响应来自哪里:
"tags": {
"TagA": "TeamA",
"TagB": "TeamB",
"TagC": "TeamC"
},
我想把它改成:
"tags": [
{
"name": "TagA",
"value": "TeamA"
},
{
"name": "TagB",
"value": "TeamB"
},
{
"name": "TagC",
"value": "TeamC"
}
]
怎么做?我发现的所有示例都仅适用于一个标签或一组静态标签。我的需要支持动态数量的标签。