--- title: "Get-VBRGoogleCloudAccount" description: "This cmdlet returns an array of existing Google Cloud credentials records managed by Veeam Backup & Replication." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrgooglecloudaccount.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > Cloud Credentials > Google Cloud Accounts > Managing Google Cloud Accounts > Get-VBRGoogleCloudAccount" dateModified: "2026-08-19" --- # Get-VBRGoogleCloudAccount ## Short Description Returns Google Cloud credentials records. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns an array of existing Google Cloud credentials records managed by Veeam Backup & Replication. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

AccessKey

Specifies an array of access keys for Google Cloud credentials records. The cmdlet will return Google Cloud credentials records with these access keys.

String[]

False

Named

True (ByPropertyName, ByValue)

Id

Specifies an array of IDs for Google Cloud credentials records. The cmdlet will return Google Cloud credentials records with these IDs.

Guid[]

True

Named

True (ByPropertyName, ByValue)

`` 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 The cmdlet returns the `VBRGoogleCloudAccount` object that contains the credentials records to access the Google Cloud service. ## Examples ::: example ### Example 1. Getting Google Cloud Account by Access Key This command gets a Google Cloud credentials record by the access key. ``` Get-VBRGoogleCloudAccount -AccessKey "XXXXXXXXXXXXXXXXXXXXXXX" ``` ::: ::: example ### Example 2. Getting Google Cloud Account by ID This command gets a Google Cloud credentials record by the ID. ``` Get-VBRGoogleCloudAccount -Id "936edf7c-7cf3-4dbd-9895-c7485ef4bb2c", "936edf7c-7cf3-4ddc-9895-c7485ef4bb2c" ``` :::