New-VBRPostgreSQLProcessingOptions
Short Description
Defines settings for processing backed-up PostgreSQL databases on Linux computers.
Applies to:
Product Edition: Standard, Enterprise, Enterprise Plus
Syntax
New-VBRPostgreSQLProcessingOptions [-Credentials <CCredentials>] [-UserType {DBUserWithPassword | DBUserWithPasswordFile | SystemUserWithoutPassword}] [<CommonParameters>] |
Detailed Description
This cmdlet applies to Veeam Agent jobs that back up Linux computers.
This cmdlet creates the VBRPostgreSQLProcessingOptions object. This object contains settings for processing backed-up PostgreSQL databases.
Parameters
Parameter | Description | Type | Required | Position | Accept Pipeline Input |
Credentials | Specifies the PostgreSQL credentials that Veeam Agent will use to connect to the PostgreSQL server. | Accepts the CCredentials object. To get this object, run the Get-VBRCredentials cmdlet. | False | Named | False |
UserType | Specifies the PostgreSQL authentication options. You can specify either of the following types of authentication options:
| VBRPostgreSQLUserType | False | Named | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.
Output Object
This cmdlet returns the VBRPostgreSQLProcessingOptions object that contains settings for processing backed-up PostgreSQL databases.
Examples
Defining Settings for Processing Backed-up PostgreSQL Databases
This example shows how to define settings for processing backed-up PostgreSQL databases.
$creds = Get-VBRCredentials -Name *Administrator* New-VBRPostgreSQLProcessingOptions -Credentials $creds |
Perform the following steps:
- Run the Get-VBRCredentials cmdlet. Specify the Name parameter value. Save the result to the $creds variable.
- Run the New-VBRPostgreSQLProcessingOptions cmdlet. Set the $creds variable as the Credentials parameter value.
Related Commands