Get-VBRRepositoryExtent

Short Description

Returns scale-out performance extents.

Applies to

Platform: VMware, Hyper-V

Product Edition: Enterprise, Enterprise Plus, Veeam Universal License

Syntax

Get-VBRRepositoryExtent -Repository <VBRScaleOutBackupRepository>  [<CommonParameters>]

Detailed Description

This cmdlet returns performance extents of scale-out backup repositories.

Parameters

Parameter

Description

Type

Required

Position

Accept
Pipeline
Input

Repository

Specifies the scale-out backup repository. The cmdlet will return performance extents added to this repository.

Accepts the GUID, or the String (repository name), or the VBRScaleOutBackupRepository object. To get this object, run the Get-VBRBackupRepository cmdlet.

True

Named

True (ByValue,
ByProperty
Name)

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.

Output Object

VBRRepositoryExtent[]

Examples

Get-VBRRepositoryExtentExample 1. Getting Performance Extents of Scale-Out Backup Repository

This command returns performance extents of the Veeam Performance Scale-Out Repository. The scale-out repository is specified by name.

Get-VBRRepositoryExtent -Repository "Veeam Performance Scale-Out Repository"

Get-VBRRepositoryExtentExample 2. Getting Performance Extents of Scale-Out Backup Repository [Using Pipeline]

This command returns performance extents of the Veeam Performance Scale-Out Repository.

Get-VBRBackupRepository -Name "Veeam Performance Scale-Out Repository" -ScaleOut | Get-VBRRepositoryExtent

Perform the following steps:

  1. Run the Get-VBRBackupRepository cmdlet. Specify the Name parameter value and provide the ScaleOut parameter.
  2. Pipe the cmdlet output to the Get-VBRRepositoryExtent cmdlet.

Get-VBRRepositoryExtentExample 3. Getting Performance Extents of Scale-Out Backup Repository [Using Variable]

This command returns performance extents of the Veeam Performance Scale-Out Repository.

$scaleoutrepository = Get-VBRBackupRepository -Name "Veeam Performance Scale-Out Repository" -ScaleOut

Get-VBRRepositoryExtent -Repository $scaleoutrepository

Perform the following steps:

  1. Run the Get-VBRBackupRepository cmdlet. Specify the Name parameter value and provide the ScaleOut parameter. Save the result to the $scaleoutrepository variable.
  2. Run the Get-VBRRepositoryExtent cmdlet. Set the $scaleoutrepository variable as the Repository parameter value.

Related Commands

Get-VBRBackupRepository