resources
| where type == "microsoft.compute/virtualmachinescalesets"
| extend
extensions = properties.virtualMachineProfile.extensionProfile.extensions,
osName = properties.virtualMachineProfile.storageProfile.osDisk.osName,
osVersion = properties.virtualMachineProfile.storageProfile.osDisk.osVersion,
osType = properties.virtualMachineProfile.storageProfile.osDisk.osType
I can get osType which "Linux" but
I want OSName (like ubuntu, Redhut)
osVersion( like version 18, 19)
what I need to do to get that.