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