I am trying to find some reference for kusto queries for azure. In particular, I would like to find out how to query resources such as dns record sets. I am able, through a trial and error approach to extract for example dns zones, by using the following code:
query = "Resources " \
"| where type =~ 'Microsoft.Network/dnszones' "
but I'm stuck when dealing with record sets, because, based on the doc reference it should be something like this:
query = "Resources " \
"| where type =~ 'Microsoft.Network/dnszones/{zone_name}/all' "
but it doesn't work. I know this is not the proper reference to follow, because it's for rest api, so if anyone could help with the correct one, it'd be great.