--- title: "Get-VBRGoogleCloudComputeZone" description: "This cmdlet returns Google Cloud availability zones." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrgooglecloudcomputezone.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Data Recovery > Restore to Google Compute Engine > Get-VBRGoogleCloudComputeZone" dateModified: "2026-08-19" --- # Get-VBRGoogleCloudComputeZone ## Short Description Returns Google Cloud availability zones. **Platform**: VMware, Hyper-V **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBRGoogleCloudComputeZone -Region [-Name ] [] ``` ## Detailed Description This cmdlet returns Google Cloud availability zones. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Name

Specifies a name of the availability zone. The cmdlet will return the availability zone with the specified name.

String

False

Named

False

Region

Specifies a Google Cloud region. The cmdlet will return availability zones for the specified Google Cloud region.

Accepts the VBRGoogleCloudComputeRegion object. To get this object, run the Get-VBRGoogleCloudComputeRegion cmdlet.

VBRGoogleCloudComputeRegion

True

Named

False

`` 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 [`VBRGoogleCloudComputeZone`](vbrgooglecloudcomputezone.md) ## Examples ::: example ### Getting Availability Zones for Google Cloud Region This example shows how to return availability zones for the `Europe-west1` Google Cloud region. ``` $computeregion = Get-VBRGoogleCloudComputeRegion -Name "Europe-west1" Get-VBRGoogleCloudComputeZone -Region $computeregion ``` Perform the following steps: 1. Run the [`Get-VBRGoogleCloudComputeRegion`](get-vbrgooglecloudcomputeregion.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$computeregion` variable. 2. Run the `Get-VBRGoogleCloudComputeZone` cmdlet. Set the `$computeregion` variable as the `Region` parameter. ::: ## Related Commands [`Get-VBRGoogleCloudComputeRegion`](get-vbrgooglecloudcomputeregion.md)