Help with 'op_Division'.

I am a beginner…
Here is what I am trying to accomplish:
$id=get-ntnxcluster
$TotalTb=$id.usageStats.‘storage.capacity_bytes’[0]
[int]$Total=$TotalTb/1tb
$AvailableTb=$id.usageStats.‘storage.free_bytes’[0]
[int]$Available=$AvailableTb/1tb
$FreeTb=$id.usageStats.‘storage.usage_bytes’[0]
[int]$Free=$FreeTb/1tb
My problem is that $TotalTb, $AvailableTb and $Freetb have 2 entries so I am only getting the first entry in $Total,$Available,$Free divided.

Thanks,
Marcia

I do not have a Nutanix environment to test, but this logic should work to get disk stats.

$id.usageStats | ForEach-Object {
[pscustomobject]@{
        Capacity = "{0:N2}" -f ($_.'storage.capacity_bytes' / 1TB)
        Free = "{0:N2}" -f ($_.'storage.free_bytes' / 1TB)
        Usage = "{0:N2}" -f ($_.'storage.usage_bytes' / 1TB)
}}