New-VBRGoogleCloudComputeDiskConfiguration
Short Description
Creates storage volume settings for Google Cloud instances.
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 |
---|---|---|---|---|---|
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:
| 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 |