--- title: "Get-VBRCloudGatewayPool" description: "This cmdlet returns existing cloud gateway pools." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrcloudgatewaypool.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Cloud Connect > Veeam Cloud Connect Cloud Gateway Pools > Get-VBRCloudGatewayPool" dateModified: "2026-08-19" --- # Get-VBRCloudGatewayPool ## Short Description Returns cloud gateway pools. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License Requires a cloud provider license. ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns existing cloud gateway pools. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies an array of IDs for cloud gateway pools that you want to get.

Guid[]

False

Named

True (ByValue)

Name

Specifies an array of names for cloud gateway pool that you want to get.

String[]

False

Named

True (ByValue)

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Output Object [`VBRCloudGatewayPool`](vbrcloudgatewaypool.md)`[]` ## Examples ::: example ### Example 1. Getting All Cloud Gateway Pools This command gets all cloud gateway pools. ``` Get-VBRCloudGatewayPool ``` ::: ::: example ### Example 2. Getting Cloud Gateway Pool by Name This command gets the `CloudGT01` cloud gateway pool by the cloud gateway pool name. ``` Get-VBRCloudGatewayPool -Name "CloudGT01" ``` :::