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

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies an ID of the service account. The cmdlet will return the service account with this ID.

Guid

False

Named

False

Name

Specifies a name of the service account. The cmdlet will return the service account with this name.

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 [`VBRGoogleCloudComputeAccount`](vbrgooglecloudcomputeaccount.md) ## Examples ::: example ### Example 1. Getting Google Cloud Service Account by ID This command gets a Google Cloud service account credentials record with the `860aa7c0-3f4d-44f8-9deb-f86196f37660` ID. ``` Get-VBRGoogleCloudComputeAccount -Id "860aa7c0-3f4d-44f8-9deb-f86196f37660" ``` ::: ::: example ### Example 2. Getting Google Cloud Service Account by Name This command gets a Google Cloud credentials record with the `GCP service acc 1` name. ``` Get-VBRGoogleCloudComputeAccount -Name "GCP service acc 1" ``` :::