Public/Get-UserProjectUsageSummary.ps1

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


function Get-UserProjectUsageSummary {
    [CmdletBinding()]
    param (
        [Parameter(Mandatory=$true)]
        $Uuid
    )
    
        $response = Send-Request -method "GET" -endpoint "/users/$($Uuid)/project_usage_summary"
        return $response
}