Public/Remove-CategoryValue.ps1

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


function Remove-CategoryValue {
    [CmdletBinding()]
    param (
        $name,
        $value
    )
    
    $response = Send-Request -method "DELETE" -endpoint "/categories/$($name)/$($value)"
    return $response
}