--- title: "New-VBRGoogleCloudComputeLabel" description: "This cmdlet creates Google Cloud labels. You can use these labels to categorize instances in Google Cloud." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/new-vbrgooglecloudcomputelabel.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Data Recovery > Restore to Google Compute Engine > New-VBRGoogleCloudComputeLabel" dateModified: "2026-08-19" --- # New-VBRGoogleCloudComputeLabel ## Short Description Creates Google Cloud labels. **Platform**: VMware, Hyper-V **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` New-VBRGoogleCloudComputeLabel -Key [-Value ] [] ``` ## Detailed Description This cmdlet creates Google Cloud labels. You can use these labels to categorize instances in Google Cloud. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Key

Specifies a Google Cloud label key. The cmdlet will create a label with this key.

String

True

Named

False

Value

Specifies a key value for the Google Cloud label. The cmdlet will create the label with the specified key value.

String

False

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 [`VBRGoogleCloudComputeLabel`](vbrgooglecloudcomputelabel.md) ## Examples ::: example ### Creating Google Cloud Label This example shows how to create a new Google Cloud label with the `location` key and the `west` value of this key. ``` New-VBRGoogleCloudComputeLabel -Key "location" -Value "west" ``` :::