Public/Import-NetworkSecurityRule.ps1
<#
.DESCRIPTION Wrapper for Nutanix API version 0.3. .NOTES Author: Timothy Rasiah #> function Import-NetworkSecurityRule { [CmdletBinding()] param ( [Switch]$Apply, [Switch]$DryRun ) throw [System.NotImplementedException] } |