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