--- title: "Get-VBRCloudDatastore" description: "Returns datastores or disk volumes allocated to you under your cloud resources. Platform: VMware, Hyper-V Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet provides the following parameter sets: AllParameterS" canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrclouddatastore.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Cloud Connect > Veeam Cloud Connect Replication > Get-VBRCloudDatastore" dateModified: "2026-08-19" --- # Get-VBRCloudDatastore ## Short Description Returns datastores or disk volumes allocated to you under your cloud resources. **Platform**: VMware, Hyper-V **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns datastores (for VMware) or volumes (for Hyper-V) in your cloud resources. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

CloudServer

Specifies the cloud service provider. The cmdlet will return the datastores or volumes provided by this cloud service provider.

Accepts the VBRCloudServer[] object. To get this object, run the Get-VBRCloudServer cmdlet.

VBRCloudServer[]

False

Named

True (ByPropertyName, ByValue)

Id

Specifies the ID of the datastore or volume you want to get.

Guid[]

False

Named

False

Name

Specifies the name of the datastore or volume you want to get.

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 [`VBRCloudDatastore`](vbrclouddatastore.md) ## Examples ::: example ### Example 1. Getting Cloud Datastore by Name This command returns the `Cloud Replicas` cloud datastore. ``` Get-VBRCloudDatastore -Name "Cloud Replicas" ``` ::: ::: example ### Example 2. Getting Cloud Datastores of Selected Cloud Server This example shows how to return cloud datastores located on the cloud server named "Hyper-V Silver". ``` $cloudServer = Get-VBRCloudServer -Name "Hyper-V Silver" Get-VBRCloudDatastore -CloudServer $cloudServer ``` Perform the following steps: 1. Run the [`Get-VBRCloudServer`](get-vbrcloudserver.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$cloudServer` variable. 2. Run the Get-`VBRCloudDatastore` cmdlet. Set the `$cloudServer` variable as the `CloudServer` parameter value. ::: ## Related Commands [`Get-VBRCloudServer`](get-vbrcloudserver.md)