--- title: "Get-VBRCloudGateway" description: "This cmdlet returns existing cloud gateways." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrcloudgateway.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Cloud Connect > Veeam Cloud Connect Cloud Gateways > Get-VBRCloudGateway" dateModified: "2026-08-19" --- # Get-VBRCloudGateway ## Short Description Returns cloud gateways. **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 gateways. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies the array of IDs of cloud gateways.

Accepts Guid[] or String[].

Guid[]

False

Named

True (ByPropertyName, ByValue)

Name

Specifies the array of the cloud gateway names you want to get or search conditions.

String[]

False

Named

True (ByPropertyName, 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 [`VBRCloudGateway[]`](vbrcloudgateway.md) ## Examples ::: example ### Example 1. Getting All Cloud Gateways This command returns all cloud gateways configured in Veeam Backup & Replication. ``` Get-VBRCloudGateway ``` ::: ::: example ### Example 2. Getting Cloud Gateway by Name This command gets the cloud gateway by name. ``` Get-VBRCloudGateway -Name "Cloud gateway" ``` :::