Public/Remove-CapacityPlanningScenario.ps1

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


function Remove-CapacityPlanningScenario {
    [CmdletBinding()]
    param (
        $uuid
    )
    
    $response = Send-Request -method "DELETE" -endpoint "/capacity_planning/scenarios/$($uuid)"
    return $response
}