Public/Get-Alert.ps1

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


function Get-Alert {
    [CmdletBinding()]
    param (
        $uuid
    )
    
    $data = @{
        "kind" = "alert"
    }

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

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