New-VBRApplicationBackupOptions
Short Description
Creates the backup settings and full backup schedule for application backup policies.
Applies to
Product Edition: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
New-VBRApplicationBackupOptions [-BackupMode {Incremental | Differential | Cumulative}] [-FullBackupScheduleType {Weekly | Monthly}] [-WeeklyScheduleType {Everyday | WeekDays | SelectedDays}] [-SelectedDays {Sunday | Monday | Tuesday | Wednesday | Thursday | Friday | Saturday}] [-DayNumber {First | Second | Third | Fourth | Last | OnDay}] [-DayOfWeek {Sunday | Monday | Tuesday | Wednesday | Thursday | Friday | Saturday}] [-DayOfMonth <string>] [-SelectedMonths {January | February | March | April | May | June | July | August | September | October | November | December}] [<CommonParameters>] |
Detailed Description
This cmdlet creates the VBRApplicationBackupOptions object that contains backup settings and full backup schedule for application backup policies.
You can use this cmdlet to create a schedule for application backup policies for the following Veeam Plug-ins managed by Veeam Backup & Replication:
- Veeam Plug-in for Oracle RMAN
- Veeam Plug-in for SAP HANA
- Veeam Plug-in for SAP on Oracle
Parameters
Parameter | Description | Required | Position | Accept | Accept |
---|---|---|---|---|---|
BackupMode | Specifies the backup mode.
| False | Named | False | False |
FullBackupScheduleType | Specifies the full backups schedule type.
| False | Named | False | False |
WeeklyScheduleType | For weekly backups. Specifies the full backups schedule type.
| False | Named | False | False |
SelectedDays | For weekly backups with the SelectedDays option. Specifies the day of the week when the job creates full backups:
| False | Named | False | False |
DayNumber | For monthly backups. Specifies the day of the month when the job creates full backups.
| False | Named | False | False |
DayOfWeek | For monthly backups. Specifies the day of the week, when the job creates full backups.
| False | Named | False | False |
DayOfMonth | For monthly backups with the OnDay option. Specifies the day of the month, when the job creates full backups. For example, on the 3rd day of November. | False | Named | False | False |
SelectedMonths | Specifies the months, when the job creates full backups.
Default: all months are selected. | False | Named | False | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.
Return Type
Example 1
This command schedules an application backup policy to create full backups weekly. The policy will create full backups on Sunday and Wednesday.
New-VBRApplicationBackupOptions -FullBackupScheduleType Weekly -WeeklyScheduleType SelectedDays -SelectedDays Sunday, Wednesday |
Example 2
This command schedules an application backup policy to create full backups monthly. The policy will create full backups on the 15th of January, April and September.
New-VBRApplicationBackupOptions -FullBackupScheduleType Monthly -DayNumber OnDay -DayOfMonth 15 -SelectedMonths January, April, September |