Public/Get-Task.ps1

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


function Get-Task {
    [CmdletBinding()]
    param (
        $uuid
    )
    
    $response = Send-Request -method "GET" -endpoint "/tasks/$($uuid)"
    return $response
}