I am trying to get the hardware information in my nodes report. How do I get that? Any suggestions or ideas please?
Here's the below screenshot which displays hardware information of any node on the node details page. Whether it is virtually hosted or a physical one.

I was working on SWQL which gets the list of all the VMs monitored under virtualization as well as which are managed nodes. I would like to add hardware information too in this query. Any leads would be appreciated. Thanks.
SELECT n.Name as [VM],n.IPAddress,n.PowerState ,n.BootTime,n.ProcessorCount,n.Status,h.HostName, d.Name as [Datacenter]
, c.Name as [Cluster], v.DisplayName AS [Vcenter]
, Case
When n.NodeID IS NULL Then 'No'
When n.NodeID IS Not Null Then 'Yes'
End as [Managed Node], P.Name
FROM Orion.VIM.VirtualMachines n
Join Orion.VIM.Hosts h on n.HostID = h.HostID
Left Outer Join Orion.VIM.Clusters c on c.ClusterID = h.ClusterID
Left Outer Join Orion.VIM.DataCenters d on d.DataCenterID = h.DataCenterID
Left Outer Join Orion.Vim.Platform P on P.PlatformID = n.PlatformID
Left Outer Join Orion.VIM.VCenters v on v.VCenterID = d.VCenterID
Left Outer Join Orion.Nodes NN ON n.NodeID = NN.NodeID
Left Outer Join Orion.NodesCustomProperties NC ON NC.NodeID = n.NodeID