Public/Resume-VmReplication.ps1
<#
.DESCRIPTION Wrapper for Nutanix API version 0.3. .NOTES Author: Timothy Rasiah #> function Resume-VmReplication { [CmdletBinding()] param ( [Parameter(Mandatory=$true)] [String]$Uuid ) $response = Send-Request -method "POST" -endpoint "/vms/$($Uuid)/resume_replication" return $response } |