0

使用 Azure 资源图资源管理器 https://portal.azure.com/#blade/HubsExtension/BrowseResource/resourceType/Microsoft.Storage%2FStorageAccounts

我需要显示一个附加列:

URI or URL to access
Tags
Size

此查询未显示我需要的那两个附加列:

resources
| where type =~ 'Microsoft.Storage/storageAccounts'
| extend allowBlobPublicAccess = parse_json(properties).allowBlobPublicAccess
| project subscriptionId, resourceGroup, name, allowBlobPublicAccess

这个 PowerShell 也根本没有帮助:Get-AzStorageAccount

4

1 回答 1

1

似乎 Size 没有出现在 Azure 资源资源管理器公开的数据中。

对于其余列 - 您可以使用以下查询来获取它:

resources
| where type =~ 'Microsoft.Storage/storageAccounts'
| extend props = parse_json(properties)
| extend blobEndpoint = tostring(props.primaryEndpoints.blob), allowBlobPublicAccess=props.allowBlobPublicAccess
| project tags, subscriptionId, resourceGroup, name, blobEndpoint, allowBlobPublicAccess
于 2020-10-01T10:07:05.310 回答