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