Rescan-VBRAzureApplianceTemplate
Short Description
Rescans the Azure Backup Appliance template in the backup infrastructure.
Applies to
Platform: VMware, Hyper-V
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Rescan-VBRAzureApplianceTemplate -TemplateOptions <VBRAzureApplianceTemplateDeploymentOptions[]> [<CommonParameters>] |
Detailed Description
This cmdlet rescans the Azure Backup Appliance template to update its settings in the backup infrastructure.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
TemplateOptions |
Specifies options for the Azure Backup Appliance templates that you want to rescan. |
Accepts the VBRAzureApplianceTemplateDeploymentOptions[] object. To create this object, run the New-VBRAzureApplianceTemplateDeploymentOptions cmdlet. |
True |
Named |
True (ByPropertyName, ByValue) |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
The cmdlet returns the VBRAzureApplianceTemplate object that contains settings of the rescanned Azure Backup Appliance template.
Examples
Rescanning Azure Backup Appliance Template
This example shows how to rescan an Azure Backup Appliance template.
|
$template = Get-VBRAzureApplianceTemplate -Name "MyApplianceTemplate" $options = New-VBRAzureApplianceTemplateDeploymentOptions -Template $template Rescan-VBRAzureApplianceTemplate -TemplateOptions $options |
Perform the following steps:
- Run the Get-VBRAzureApplianceTemplate cmdlet. Specify the Name parameter value. Save the result to the $template variable.
- Run the New-VBRAzureApplianceTemplateDeploymentOptions cmdlet. Set the $template variable as the Template parameter value. Save the result to the $options variable.
- Run the Rescan-VBRAzureApplianceTemplate cmdlet. Set the $options variable as the TemplateOptions parameter value.
Related Commands