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
Pipeline
Input

Accept
Wildcard
Characters

BackupMode

Specifies the backup mode.

  • Incremental: the policy will create a backup of data changed since the last incremental data backup.
  • Differential: the policy will create a backup of data changed since the last full data backup.
  • Cumulative: the policy will create a full data backup.

False

Named

False

False

FullBackupScheduleType

Specifies the full backups schedule type.

  • Monthly: the job will create a full backup on selected days of the month.
  • Weekly: the job will create a full backup on selected days of the week.

False

Named

False

False

WeeklyScheduleType

For weekly backups.

Specifies the full backups schedule type.

  • Everyday: the job will create a full backup on selected days of the month.
  • WeekDays: the job will create a full backup on selected days of the week.
  • SelectedDays: the job will create a full backup on selected days.

False

Named

False

False

SelectedDays

For weekly backups with the SelectedDays option.

Specifies the day of the week when the job creates full backups:

  • Sunday
  • Monday
  • Tuesday
  • Wednesday
  • Thursday
  • Friday
  • Saturday

False

Named

False

False

DayNumber

For monthly backups.

Specifies the day of the month when the job creates full backups.

  • First: the job will create a full backup on the first specified day of the week for the selected months.
  • Second: the job will create a full backup on the second specified day of the week for the selected months.
  • Third: the job will create a full backup on the third specified day of the week for the selected months.
  • Fourth: the job will create a full backup on the fourth specified day of the week for the selected months.
  • Last: the job will create a full backup on the last specified day of the week for the selected months.
  • OnDay: the job will create a full backup on the selected day of the month. Use the DayOfMonth parameter to set the day.

False

Named

False

False

DayOfWeek

For monthly backups.

Specifies the day of the week, when the job creates full backups.

  • Sunday
  • Monday
  • Tuesday
  • Wednesday
  • Thursday
  • Friday
  • Saturday

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.

  • January
  • February
  • March
  • April
  • May
  • June
  • July
  • August
  • September
  • October
  • November
  • December

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