--- title: "Get-VBRCloudProviderCredentials" description: "This cmdlet returns an array of cloud provider credentials records." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrcloudprovidercredentials.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Cloud Connect > Cloud Provider Credentials > Get-VBRCloudProviderCredentials" dateModified: "2026-08-19" --- # Get-VBRCloudProviderCredentials ## Short Description Returns an array of cloud provider credentials records added to Veeam Backup & Replication. **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 cloud provider credentials records. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies the ID for cloud provider credentials records. The cmdlet will return credentials records with the specified ID.

Guid[]

True

Named

False

Name

Specifies the login for cloud provider credentials records. The cmdlet will return credentials records with the specified 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 `VBRCloudProviderCredentials` ## Examples ::: example ### Example 1. Getting Cloud Provider Credentials by Tenant Name This example shows how to get cloud provider credentials records by the tenant name. ``` Get-VBRCloudProviderCredentials -Name "Tenant1" ``` ::: ::: example ### Example 2. Getting Cloud Provider Credentials by ID This example shows how to get cloud provider credentials records by the credentials records ID. ``` Get-VBRCloudProviderCredentials -ID "bea3b786-75de-4882-a4f7-c2f236eb2874" ``` :::