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