Goal here is to query a list of frequently used compute instance size under Azure Machine Learning and Azure Databricks using Azure Resource Graph Explorer from Azure Portal using Kusto query. From the documentation here, there is a list of resources can be queried but there isn't any compute under microsoft.machinelearningservices/
(not classic studio) and Microsoft.Databricks/workspaces
.
Below is what was tried, to get VM instance size but not showing what we have under Azure Machine Learning/Azure Databricks.
Resources
| project name, location, type, vmSize=tostring(properties.hardwareProfile.vmSize)
| where type =~ 'Microsoft.Compute/virtualMachines'
| order by name desc