By default, the VM disk UUID property is not included in automated reports generated by Aria Operations.
This article provides steps to retrieve the 'virtual disk UUID' property.
Aria Operations 8.18.x
The below PowerShell queries can be used to retrieve the 'virtual disk UUID':
Get-VM | Get-HardDisk | Select @{N="VMName";E={$.Parent.Name}}, Name, @{N="VMDK_UUID";E={$.ExtensionData.Backing.Uuid}}
Get-VM | Get-HardDisk | Select @{N="VMName";E={$.Parent.Name}}, Name, @{N="VMDK_UUID";E={$.ExtensionData.Backing.Uuid}} | Export-Csv -Path "C:\Reports\VMDK_UUID_Report.csv" -NoTypeInformation