You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Azure Resource Graph queries filter specifically on type == 'microsoft.compute/virtualmachines/patchinstallationresults', however as a result you disregard all results coming from for example the type microsoft.hybridcompute/machines/patchinstallationresults.
You could change it the query to use :
patchinstallationresources
| where type == 'microsoft.compute/virtualmachines/patchinstallationresults'or type == 'microsoft.hybridcompute/machines/patchinstallationresults'
However this might bring in problems in the future if additional types are added. You are maybe better of with this:
patchinstallationresources
| where type endswith'/patchinstallationresults'
The text was updated successfully, but these errors were encountered:
The Azure Resource Graph queries filter specifically on type == 'microsoft.compute/virtualmachines/patchinstallationresults', however as a result you disregard all results coming from for example the type microsoft.hybridcompute/machines/patchinstallationresults.
You could change it the query to use :
However this might bring in problems in the future if additional types are added. You are maybe better of with this:
The text was updated successfully, but these errors were encountered: