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