Public/Get-Cluster.ps1

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


function Get-Cluster {
    [CmdletBinding()]
    param (
        $uuid
    )

    $data = @{
        "kind" = "cluster"
    }
    
    if (-not $uuid) {
        $response = Send-Request -method "POST" -endpoint "/clusters/list" -data $data
        return $response.entities
    }

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