Public/Get-MultiHypervisorVm.ps1

<#
    .DESCRIPTION
    Wrapper for Nutanix API version 0.3.
 
    .NOTES
    Author: Timothy Rasiah
#>


function Get-MultiHypervisorVm {
    [CmdletBinding()]
    param (
        $uuid,
        $name
    )

    if ($uuid) {
        $response = Send-Request -method "GET" -endpoint "/mh_vms/$($uuid)"
        return $response
    }

    $data = @{
        "kind" = "mh_vm"
    }

    if ($name) {
        $data["filter"] = "vm_name==$($name)"
    }

    $response = Send-Request -method "POST" -endpoint "/mh_vms/list" -data $data
    return $response.entities
}