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