Create Get-ZAzOrg Function and Tests

This commit is contained in:
Wes Carroll
2019-06-05 14:20:13 -04:00
parent 1b331105b9
commit fd2d175def
2 changed files with 26 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
<# .ExternalHelp ./en-us/ZertoApiWrapper-help.xml #>
function Get-ZAzOrg {
[cmdletbinding()]
param()
$uri = "monitoring/zorgs"
Invoke-ZARestRequest -uri $uri
}