Public/Remove-Category.ps1
<#
.DESCRIPTION Wrapper for Nutanix API version 0.3. .NOTES Author: Timothy Rasiah #> function Remove-Category { [CmdletBinding()] param ( $name ) $response = Send-Request -method "DELETE" -endpoint "/categories/$($name)" return $response } |