New-VBRGoogleCloudComputeDiskConfiguration

Short Description

Creates storage volume settings for Google Cloud instances.

Important

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

Applies to

Platform: VMware, Hyper-V

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

Syntax

New-VBRGoogleCloudComputeDiskConfiguration -DiskName <string> -DiskType {BalancedPersistent | SSDPersistent | StandardPersistent}  [<CommonParameters>]

Detailed Description

This cmdlet creates the VBRGoogleCloudComputeDiskConfiguration object. This object contains disk types of Google Cloud instances. Veeam Backup & Replication will use the specified type when restoring machines to Google Cloud.

Parameters

Parameter

Description

Type

Required

Position

Accept
Pipeline
Input

DiskName

Specifies the disk of the source machine. Veeam Backup & Replication will restore this disk to Google Cloud.

Note: You must specify the disk name in the "VMNAME.vhdx" format.

String

True

Named

False

DiskType

Specifies the storage volume type. Veeam Backup & Replication will save disks of the restored machine as Google Cloud Engine (GCE) disks. You can select the following types of GCE disks:

  • BalancedPersistent - use this option to create balanced persistent disks.
  • SSDPersistent - use this option to create SSD persistent disks.
  • StandardPersistent - use this option to create standard persistent disks.

Enum

True

Named

False

<CommonParameters>

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

Output Object

VBRGoogleCloudComputeDiskConfiguration

Examples

Defining Standard Persistent Disks

This command defines that the srv20.vhdx disk will be restored to Google Cloud VM instance as a standard persistent disk.

$diskconfig = New-VBRGoogleCloudComputeDiskConfiguration -DiskName "srv20.vhdx" -DiskType StandardPersistent