Azure Resource Graph supported resource types are actually not supported via bulk api

Tim Jin 20 Reputation points
2025-08-05T06:23:53.7133333+00:00

https://learn.microsoft.com/en-us/azure/governance/resource-graph/reference/supported-tables-resources#elasticsanresources

It clearly says on the above official microsoft website that the following resources are supported via bulk apis (resource graph):

  • microsoft.elasticsan/elasticsans
  • microsoft.elasticsan/elasticsans/volumegroups
  • microsoft.elasticsan/elasticsans/volumegroups/volumes
  • microsoft.security/pricings

However, elasticsans/volumegroups and microsoft.security/pricings are actually not supported.

What is the reason that causes this mismatch? Or, when do you plan to support them via azure resource graph?

Azure Monitor
Azure Monitor
An Azure service that is used to collect, analyze, and act on telemetry data from Azure and on-premises environments.
{count} votes

Accepted answer
  1. Siva shunmugam Nadessin 160 Reputation points Microsoft External Staff Moderator
    2025-08-08T04:36:56.64+00:00

    Hello Tim Jin,

    We should build the query with the help of ElasticsanResources table as per the below screenshot.

    User's image

    Reference Document:

    Understand the query language - Azure Resource Graph | Microsoft Learn

    Try using the below query and see if it helps.

    Search-AzGraph -Query "ElasticsanResources | where type == 'microsoft.elasticsan/elasticsans/volumegroups' | project Subscription= subscriptionId, name, location, resourceGroup,id"
    

    If it doesn’t help make sure you have created the volumes. Below is the reference document on how to create.

    az elastic-san volume-group | Microsoft Learn

    and If you found the comment/answer helpful, please consider clicking "Upvote it/accept the answer".

    Thank You,

    Siva shunmugam.

    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.