New-VBRIrisProcessingOptions
Short Description
Defines processing options for discovered InterSystems IRIS instances.
Product Edition: Enterprise Plus, Veeam Universal License
Syntax
|
New-VBRIrisProcessingOptions [-BackupObject <Object>] [-Username <String>] [<CommonParameters>] |
Detailed Description
This cmdlet creates the VBRIrisProcessingOptions object that contains processing options for a discovered InterSystems IRIS instance.
Use this object as the ProcessingOptions parameter value when you run the Add-VBRIrisBackupJobCreates InterSystems IRIS application backup policies. or Set-VBRIrisBackupJobModifies InterSystems IRIS application backup policies. cmdlet.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
BackupObject |
Specifies the discovered InterSystems IRIS instance for which you want to define processing options.
Accepts the |
|
False |
Named |
False |
|
Username |
Specifies the user name that Veeam Backup & Replication will use to connect to the InterSystems IRIS instance during processing. |
|
False |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
The cmdlet returns the VBRIrisProcessingOptions object that contains processing options for a discovered InterSystems IRIS instance.
Examples
Defining Processing Options for an InterSystems IRIS Instance
This example shows how to define processing options for a discovered InterSystems IRIS instance.
|
$iris = Get-VBRDiscoveredApplication -Iris -IrisEntityType IrisInstance $options = New-VBRIrisProcessingOptions -BackupObject $iris[0] -Username "irisadmin" |
Perform the following steps:
- Run the
Get-VBRDiscoveredApplicationReturns discovered applications from the computer. cmdlet. Specify theIrisandIrisEntityTypeparameter values. Save the result to the$irisvariable. - Run the
New-VBRIrisProcessingOptionscmdlet. Set the$irisvariable as theBackupObjectparameter value. Specify theUsernameparameter value. Save the result to the$optionsvariable to use with other cmdlets.
Related Commands
Get-VBRDiscoveredApplicationReturns discovered applications from the computer.