Get-VBRGoogleCloudComputeZone

Short Description

Returns Google Cloud availability zones.

Important

This cmdlet is available starting from Veeam Backup & Replication 11a (build 11.0.1.1261).

Applies to

Platform: VMware, Hyper-V

Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License

Syntax

Get-VBRGoogleCloudComputeZone -Region <VBRGoogleCloudComputeRegion> [-Name <string>]  [<CommonParameters>]

Detailed Description

This cmdlet returns Google Cloud availability zones.

Parameters

Parameter

Description

Type

Required

Position

Accept
Pipeline
Input

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.

True

Named

False

Name

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

String

False

Named

False

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.

Output Object

VBRGoogleCloudComputeZone

Examples

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 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