New-VBRIrisContainer
Short Description
Defines containers of InterSystems IRIS servers for protection groups.
Product Edition: Enterprise Plus, Veeam Universal License
Syntax
|
New-VBRIrisContainer -Credentials <VBRIndividualComputerCustomCredentials[]> [<CommonParameters>] |
Detailed Description
This cmdlet creates the VBRIrisContainer object that contains InterSystems IRIS servers added by custom credentials.
Use this object to add a protection group of InterSystems IRIS servers with the Add-VBRProtectionGroupCreates protection groups in Veeam Backup & Replication. cmdlet.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Credentials |
Specifies the credentials to authenticate against the InterSystems IRIS servers that you want to add to the container.
Accepts the |
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 VBRIrisContainer object that contains InterSystems IRIS servers.
Examples
Creating an InterSystems IRIS Container
This example shows how to create a container of InterSystems IRIS servers.
|
$creds = Get-VBRCredentials -Name "iris\\administrator" $customCreds = New-VBRIndividualComputerCustomCredentials -HostName "172.18.21.25" -Credentials $creds $container = New-VBRIrisContainer -Credentials $customCreds |
Perform the following steps:
- Run the
Get-VBRCredentialsReturns credentials records. cmdlet. Save the result to the$credsvariable. - Run the
New-VBRIndividualComputerCustomCredentialsSpecifies a method for authenticating individual computers. cmdlet. Save the result to the$customCredsvariable. - Run the
New-VBRIrisContainercmdlet. Set the$customCredsvariable as theCredentialsparameter value. Save the result to the$containervariable to use with other cmdlets.
Related Commands
Get-VBRCredentialsReturns credentials records.New-VBRIndividualComputerCustomCredentialsSpecifies a method for authenticating individual computers.