Get-VBRCapacityTierSyncInterval

Short Description

Returns a time period of checkpoints in capacity tier that are available for synchronization.

Syntax

This cmdlet provides the following parameter sets:

  • AllParameterSets (Default)

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

  • Job

    Get-VBRCapacityTierSyncInterval -Repository <VBRScaleOutBackupRepository> -Job <VBRJob> [<CommonParameters>]

  • Backup

    Get-VBRCapacityTierSyncInterval -Repository <VBRScaleOutBackupRepository> -Backup <CBackup> [<CommonParameters>]

  • TenantBackupId

    Get-VBRCapacityTierSyncInterval -Repository <VBRScaleOutBackupRepository> -TenantBackupId <Guid> [<CommonParameters>]

  • TenantId

    Get-VBRCapacityTierSyncInterval -Repository <VBRScaleOutBackupRepository> -TenantId <Guid> [<CommonParameters>]

Detailed Description

This cmdlet returns a time period of checkpoints in capacity tier that are available for synchronization. You may want to run this cmdlet before you synchronize the state of the backup chains on performance tier with the state of the backup chains on capacity tier for the specific period of time.

Run the Sync-VBRSOBREntityStateSynchronizes the state of backup chains on performance extents with the state of data on capacity and archive extents of a scale-out backup repositories. cmdlet to synchronize the state of the backup chains.

Important

Use this cmdlet only with object storage that support the immutability option.

Parameters

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Backup

Specifies a backup. The cmdlet will return a time period that contains checkpoints on the capacity tier for this backup.

Accepts the CBackup object. To get this object, run the Get-VBRBackupReturns backups. cmdlet.

CBackup

True

Named

True (ByPropertyName)

Job

Specifies a job. The cmdlet will return a time period that contains checkpoints on the capacity tier for this job.

Accepts the VBR Job object. To get this object, run the Get-VBRJobReturns existing jobs. cmdlet.

VBRJob

True

Named

True (ByPropertyName)

Repository

Specifies a scale-out backup repository. The cmdlet will return a time period that contains checkpoints that were moved from this scale-out backup repository but are still available on the capacity tier.

Accepts the VBRScaleOutBackupRepository object. To get this object, run the Get-VBRBackupRepositoryReturns a list of backup repositories. cmdlet.

VBRScaleOutBackupRepository

True

Named

True (ByPropertyName, ByValue)

TenantBackupId

Specifies an ID of the cloud tenant backup. The cmdlet will return a time period that contains checkpoints on the capacity tier for this backup.

Guid

True

Named

False

TenantId

Specifies an ID of the cloud tenant. The cmdlet will return a time period that contains checkpoints on the capacity tier created by this tenant.

Guid

True

Named

False

<CommonParameters>

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

Output Object

This cmdlet returns the VBRCapacityTierSyncInterval object that contains details on a time period of checkpoints in capacity tier that are available for synchronization

Examples

Get-VBRCapacityTierSyncIntervalExample 1. Getting Time Period for all Checkpoints Available on Capacity Tier

This example shows how to get a time period with contains checkpoints on capacity tier that are available for synchronization.

$repository = Get-VBRBackupRepository -ScaleOut

Get-VBRCapacityTierSyncInterval -Repository $repository

StartDateUtc EndDateUtc

------------ ----------

2/20/2020 1:54:26 PM 2/20/2020 1:54:26 PM

Perform the following steps:

  1. Run the Get-VBRBackupRepositoryReturns a list of backup repositories. cmdlet. Provide the ScaleOut parameter value. Save the result to the $repository variable.
  2. Run the Get-VBRCapacityTierSyncInterval cmdlet. Set the $repository variable as the Repository parameter value.

    The cmdlet output will contain the following details on the time period for the checkpoints: StartDateUtc and EndDateUtc.

Get-VBRCapacityTierSyncIntervalExample 2. Getting Time Period of Checkpoints for Specific Job

This example shows how to get a time period that contains checkpoints on capacity tier that you can synchronize for the Backup05 job.

$repository = Get-VBRBackupRepository -ScaleOut

$job = Get-VBRJob -Name "Backup05"

Get-VBRCapacityTierSyncInterval -Repository $repository -Job $job

StartDateUtc EndDateUtc

------------ ----------

2/20/2020 1:54:26 PM 2/20/2020 1:54:26 PM

Perform the following steps:

  1. Run the Get-VBRBackupRepositoryReturns a list of backup repositories. cmdlet. Provide the ScaleOut parameter value. Save the result to the $repository variable.
  2. Run the Get-VBRJobReturns existing jobs. cmdlet. Specify the Name parameter value. Save the result to the $job variable.
  3. Run the Get-VBRCapacityTierSyncInterval cmdlet. Set the $repository variable as the Repository parameter value. Set the $job variable as the Job parameter value.

    The cmdlet output will contain the following details on the time period for the checkpoints: StartDateUtc and EndDateUtc.

Get-VBRCapacityTierSyncIntervalExample 3. Getting Time Period of Checkpoints for Specific Backup

This example shows how to get a time period that contains details on checkpoints on capacity tier that you can synchronize for the Report05 backup.

$repository = Get-VBRBackupRepository -ScaleOut

$backup = Get-VBRBackup -Name "Report05"

Get-VBRCapacityTierSyncInterval -Repository $repository -Backup $backup

StartDateUtc EndDateUtc

------------ ----------

2/20/2020 1:54:26 PM 2/20/2020 1:54:26 PM

Perform the following steps:

  1. Run the Get-VBRBackupRepositoryReturns a list of backup repositories. cmdlet. Provide the ScaleOut parameter value. Save the result to the $repository variable.
  2. Run the Get-VBRBackupReturns backups. cmdlet. Specify the Name parameter value. Save the result to the $backup variable.
  3. Run the Get-VBRCapacityTierSyncInterval cmdlet. Set the $repository variable as the Repository parameter value. Set the $backup variable as the Backup parameter value.

    The cmdlet output will contain the following details on the time period for the checkpoints: StartDateUtc and EndDateUtc.

Page updated 2026-08-19

Page content applies to build 13.1.1.18