7 lines
175 B
PowerShell
7 lines
175 B
PowerShell
<# .ExternalHelp ./en-us/ZertoApiWrapper-help.xml #>
|
|
function Get-ZAzOrg {
|
|
[cmdletbinding()]
|
|
param()
|
|
$uri = "monitoring/zorgs"
|
|
Invoke-ZARestRequest -uri $uri
|
|
} |