This is an archive version of the document. To get the most up-to-date information, see the current version.

Get-VBODataRetrievalObject

Short Description

Returns objects whose backed-up data was retrieved from archive by retrieval job.

Syntax

Get-VBODataRetrievalObject -DataRetrieval <VBODataRetrieval>  [<CommonParameters>]

Detailed Description

This cmdlet returns an array of objects whose backed-up data was retrieved from archive by the specified retrieval job.

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Accept Wildcard Characters

DataRetrieval

Specifies a retrieval job. The cmdlet will return objects whose backed-up data was retrieved from archive by this retrieval job.

Accepts the VBODataRetrieval object.

To get this object, run the Get-VBODataRetrieval cmdlet.

True

Named

True (ByValue)

False

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.

Examples

Example 1. Getting Retrieval Objects

This example shows how to get objects whose backed-up data was retrieved from archive by the specified retrieval job.

$retrievaljob = Get-VBODataRetrieval -Id 3192dfc9-353f-468f-91b6-c66e5710c63f

Get-VBODataRetrievalObject -DataRetrieval $retrievaljob

Perform the following steps:

  1. Run the Get-VBODataRetrieval cmdlet. Specify the Id parameter value. Save the result to the $retrievaljob variable.
  2. Run the Get-VBODataRetrievalObject cmdlet with the $retrievaljob variable as the DataRetrieval parameter value.

Related Commands

Get-VBODataRetrieval