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