Public/Infrastructure/Get-VeeamSPCCloudGatewayPool.ps1
function Get-VeeamSPCCloudGatewayPool { [CmdletBinding()] param() $URI = 'infrastructure/sites/cloudgatewaypools' Invoke-VeeamSPCRequest -URI $URI -Method Get } |