Help Center
Choose product document...
Veeam Backup & Replication 9.5 [Archived]
RESTful API Reference

(POST) /jobs/{ID}/includes

Adds a VM or a VM container to the job.

Request

To add a VM or VM container to the job, you need to send the POST HTTP request to the URL of the /jobs/{ID}/includes resource.

HTTP Request

POST http://<Enterprise-Manager>:9399/api/jobs/{ID}/includes

Request Headers

The request contains the following headers:

Header

Required

Description

X-RestSvcSessionId

True

The request requires authorization. In the header, the client must send a session ID copied from the server reply to the request creating a new logon session. To learn more, see Authentication and Security.

Request Body

In the request body, the client must send parameters of the VM or VM container you want to add to the job. The body of the request must conform to the XML Schema Definition of Veeam Backup Enterprise Manager RESTful API.

The request body must contain the following elements:

Element

Type

Description

Modifiable

Min/Max Occurrence

HierarchyObjRef

HierarchyObjRefType

Reference to the VM or VM container added to the job. The reference can be constructed manually or obtained with the lookup service.

Yes

1/1

HierarchyObjName

String

Name of the VM or VM container added to the job.

No

1/1

Order

Int64

Order in which the VM or VM container should be processed by the job. The processing sequence starts with 0.

Yes

0/1

GuestProcessingOptions

GuestProcessing OptionsType

Options for application-aware image processing.

List of supported guest processing options and request body format differ depending on the version of Veeam Backup Enterprise Manager RESTful API:

Yes

0/1

Guest Processing Options

You can define the following guest processing options for the job:

Element

Type

Description

Modifiable

Min/Max Occurrence

VssSnapshotOptions

VssSnapshotOptionsType

Application-aware processing options. To learn more, see Application-Aware Processing Options.

Yes

0/1

WindowsGuestFSIndexingOptions

WindowsGuestFSIndexingOptionsType

Options for Microsoft Windows OS file indexing. To learn more, see File Indexing Options.

Yes

0/1

LinuxGuestFSIndexingOptions

LinuxGuestFSIndexingOptionsType

Options for Linux OS file indexing. To learn more, see File Indexing Options.

Yes

0/1

SQLBackupOptions

SqlBackupOptionsType

Options for Microsoft SQL and Oracle database transaction logs backup. To learn more, see SQL Backup Options.

Yes

0/1

WindowsCredentialsId

String

Guest OS credentials for starting the indexing runtime process in Microsoft Windows OS.

Yes

0/1

LinuxCredentialsId

String

Guest OS credentials for starting the indexing runtime process in Linux OS.

Yes

0/1

FSFileExcludeOptions

FSFileExcludeOptionsType

File exclusion options. To learn more, see File Exclusion Options.

Yes

0/1

OracleBackupOptions

OracleBackupOptionsType

Options for Oracle database backup. To learn more, see Oracle Backup Options.

Yes

0/1

For example:

<?xml version="1.0" encoding="utf-8"?>
<CreateObjectInJobSpec xmlns="http://www.veeam.com/ent/v1.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
 <HierarchyObjRef>urn:VMware:VM:00000000-0000-0000-0000-000000000000.vm-518</HierarchyObjRef>
 <HierarchyObjName>oracle01</HierarchyObjName>
 <Order>0</Order>
 <GuestProcessingOptions>
   <VssSnapshotOptions>
     <VssSnapshotMode>RequireSuccess</VssSnapshotMode>
     <IsCopyOnly>false</IsCopyOnly>
   </VssSnapshotOptions>
   <WindowsGuestFSIndexingOptions>
     <FileSystemIndexingMode>ExceptSpecifiedFolders</FileSystemIndexingMode>
     <IncludedIndexingFolders />
     <ExcludedIndexingFolders>
       <Path>%windir%</Path>
       <Path>%ProgramFiles%</Path>
       <Path>%ProgramFiles(x86)%</Path>
       <Path>%ProgramW6432%</Path>
       <Path>%TEMP%</Path>
     </ExcludedIndexingFolders>
   </WindowsGuestFSIndexingOptions>
   <LinuxGuestFSIndexingOptions>
     <FileSystemIndexingMode>ExceptSpecifiedFolders</FileSystemIndexingMode>
     <IncludedIndexingFolders />
     <ExcludedIndexingFolders>
       <Path>/cdrom</Path>
       <Path>/dev</Path>
       <Path>/media</Path>
       <Path>/mnt</Path>
       <Path>/proc</Path>
       <Path>/tmp</Path>
       <Path>/lost+found</Path>
     </ExcludedIndexingFolders>
   </LinuxGuestFSIndexingOptions>
   <SqlBackupOptions>
     <TransactionLogsProcessing>Backup</TransactionLogsProcessing>
     <BackupLogsFrequencyMin>15</BackupLogsFrequencyMin>
     <UseDbBackupRetention>true</UseDbBackupRetention>
     <RetainDays>15</RetainDays>
   </SqlBackupOptions>
   <WindowsCredentialsId>00000000-0000-0000-0000-000000000000</WindowsCredentialsId>
   <LinuxCredentialsId>00000000-0000-0000-0000-000000000000</LinuxCredentialsId>
   <FSFileExcludeOptions>
     <BackupScope>2</BackupScope>
    <IncludeList />
     <ExcludeList>
       <Path>C:/TMP</Path>
     </ExcludeList>
   </FSFileExcludeOptions>
   <OracleBackupOptions>
     <BackupLogsEnabled>true</BackupLogsEnabled>
     <BackupLogsFrequencyMin>15</BackupLogsFrequencyMin>
     <UseDbBackupRetention>true</UseDbBackupRetention>
     <RetainDays>15</RetainDays>
     <ArchivedLogsTruncation>BySize</ArchivedLogsTruncation>
     <ArchivedLogsMaxSizeMb>10240</ArchivedLogsMaxSizeMb>
     <SysdbaCredsId>00000000-0000-0000-0000-000000000000</SysdbaCredsId>
     <ProxyAutoSelect>true</ProxyAutoSelect>
   </OracleBackupOptions>
 </GuestProcessingOptions>
</CreateObjectInJobSpec>

Application-Aware Processing Options

You can define the following application-aware processing options for the job:

Element

Type

Description

Modifiable

Min/Max Occurrence

VssSnapshotMode

String

Mode of application-aware image processing. Possible values:

  • RequireSuccess
  • IgnoreFailures
  • Disabled

Yes

IsCopyOnly

Boolean

Defines whether copy-only backups must be created or transaction logs for Microsoft Exchange, Microsoft SQL and Oracle VMs must be processed. Possible values:

  • True
  • False

If you set this option to False, you should pass parameters for transaction log handling:

Yes

0/1

For example:

<VssSnapshotOptions>
 <VssSnapshotMode>RequireSuccess</VssSnapshotMode>
 <IsCopyOnly>false</IsCopyOnly>
</VssSnapshotOptions>

File Indexing Options

You can define the following file indexing options for the job. File indexing options should be specified separately for Microsoft Windows and Linux OS:

Element

Type

Description

Modifiable

Min/Max Occurrence

FileSystemIndexingMode

String

File indexing options. Possible values:

  • EveryFolders
  • SpecifiedFolders
  • ExceptSpecifiedFolders

Yes

IncludedIndexingFolders

StringListType

List of folders that must be indexed. This parameter should be specified if the SpecifiedFolders option is passed in the FileSystemIndexingMode parameter.

Yes

ExcludedIndexingFolders

StringListType

List of folders that must be excluded from indexing. This parameter should be specified if the ExceptSpecifiedFolders option is passed in the FileSystemIndexingMode parameter.

Yes

For example:

<WindowsGuestFSIndexingOptions>
 <FileSystemIndexingMode>ExceptSpecifiedFolders</FileSystemIndexingMode>
 <IncludedIndexingFolders />
 <ExcludedIndexingFolders>
   <Path>%windir%</Path>
   <Path>%ProgramFiles%</Path>
   <Path>%ProgramFiles(x86)%</Path>
   <Path>%ProgramW6432%</Path>
   <Path>%TEMP%</Path>
 </ExcludedIndexingFolders>
</WindowsGuestFSIndexingOptions>

SQL Backup Options

You can define the following transaction logs backup options for Microsoft SQL VMs:

Element

Type

Description

Modifiable

Min/Max Occurrence

TransactionLogsProcessing

String

Transaction logs processing mode. Possible values:

  • OnlyOnSuccessJob
  • Backup

Yes

BackupLogsFrequencyMin

Int

Frequency for transaction logs backup in minutes.

Yes

0/1

UseDbBackupRetention

Boolean

Defines whether retention policy is set for transaction logs backup.

Yes

0/1

RetainDays

Int

Number of days for transaction logs to be kept. This parameter should be specified if the UseDbBackupRetention option is set to True.

Yes

0/1

For example:

<SqlBackupOptions>
 <TransactionLogsProcessing>Backup</TransactionLogsProcessing>
 <BackupLogsFrequencyMin>15</BackupLogsFrequencyMin>
 <UseDbBackupRetention>true</UseDbBackupRetention>
 <RetainDays>15</RetainDays>
</SqlBackupOptions>

File Exclusion Options

You can define the following file exclusion options for the job:

Element

Type

Description

Modifiable

Min/Max Occurrence

BackupScope

Int

Guest OS file exclusion mode. Possible values:

  • 1
  • 2

Yes

IncludeList

StringListType

List of files and folders that must be included in the backup. This parameter should be specified if the 1 value is passed in the BackupScope parameter.

Yes

ExcludeList

StringListType

List of files and folders that must be excluded from the backup. This parameter should be specified if the 2 value is passed in the BackupScope parameter.

Yes

For example:

<FSFileExcludeOptions>
 <BackupScope>2</BackupScope>
 <IncludeList />
 <ExcludeList>
   <Path>C:/TMP</Path>
 </ExcludeList>
</FSFileExcludeOptions>

Oracle Backup Options

You can define the following Oracle database backup options for the job:

Element

Type

Description

Modifiable

Min/Max Occurrence

BackupLogsEnabled

Boolean

Defines whether transaction logs backup is enabled. Possible values:

  • True
  • False

Yes

BackupLogsFrequencyMin

Int

Frequency for transaction logs backup in minutes. This parameter should be specified if the BackupLogsEnabled option is set to True.

Yes

0/1

UseDbBackupRetention

Boolean

Defines whether retention policy is set for transaction logs backup.

Yes

0/1

RetainDays

Int

Number of days for transaction logs to be kept. This parameter should be specified if the UseDbBackupRetention option is set to True.

Yes

0/1

ArchivedLogsTruncation

String

Archived logs truncation mode. Possible values:

  • ByAge
  • BySize

Yes

ArchivedLogsMaxAgeHours

Int

Time period in hours for archived logs to be kept. This parameter should be specified if the ByAge option is passed in the ArchivedLogsTruncation parameter.

Yes

0/1

ArchivedLogsMaxSizeMb

Int

Maximum size for archived logs in gigabytes. This parameter should be specified if the BySize option is passed in the ArchivedLogsTruncation parameter.

Yes

0/1

SysdbaCredsId

String

Credentials of the account that has SYSDBA rights on the Oracle database. This parameter should be specified if you use separate accounts to access the VM guest OS and to connect to the Oracle database. Otherwise, credentials passed in the WindowsCredentialsId/LinuxCredentialsId parameter will be used.

Yes

ProxyAutoSelect

Boolean

Defines whether automatic log shipping server selection is enabled.

Yes

For example:

<OracleBackupOptions>
 <BackupLogsEnabled>true</BackupLogsEnabled>
 <BackupLogsFrequencyMin>15</BackupLogsFrequencyMin>
 <UseDbBackupRetention>true</UseDbBackupRetention>
 <RetainDays>15</RetainDays>
 <ArchivedLogsTruncation>BySize</ArchivedLogsTruncation>
 <ArchivedLogsMaxSizeMb>10240</ArchivedLogsMaxSizeMb>
 <SysdbaCredsId>00000000-0000-0000-0000-000000000000</SysdbaCredsId>
 <ProxyAutoSelect>true</ProxyAutoSelect>
</OracleBackupOptions>

Guest Processing Options in Version 1.0

In version 1.0 of Veeam Backup Enterprise Manager RESTful API, you can define the following guest processing options for the job:

Element

Type

Description

Modifiable

Min/Max Occurrence

AppAwareProcessingMode

String

Mode of application-aware image processing. Possible values:

  • RequireSuccess
  • IgnoreFailures
  • Disabled

Starting from version 1.1 of Veeam Backup Enterprise Manager RESTful API, application-aware image processing mode is defined by the VssSnapshotMode parameter.

Yes

0/1

FileSystemIndexingMode

String

File indexing options. Possible values:

  • EveryFolders
  • SpecifiedFolders
  • ExceptSpecifiedFolders

Starting from version 1.1 of Veeam Backup Enterprise Manager RESTful API, file indexing options should be specified separately for Microsoft Windows and Linux systems.

Yes

0/1

IncludedIndexingFolders

StringListType

List of folders that must be indexed. This parameter should be specified if the SpecifiedFolders option is passed in the FileSystemIndexingMode parameter.

Starting from version 1.1 of Veeam Backup Enterprise Manager RESTful API, file indexing options should be specified separately for Microsoft Windows and Linux systems.

Yes

0/1

ExcludedIndexingFolders

StringListType

List of folders that must be excluded from indexing. This parameter should be specified if the ExceptSpecifiedFolders option is passed in the FileSystemIndexingMode parameter.

Starting from version 1.1 of Veeam Backup Enterprise Manager RESTful API, file indexing options should be specified separately for Microsoft Windows and Linux systems.

Yes

0/1

CredentialsId

String

Guest OS credentials for starting the indexing runtime process.

Starting from version 1.1 of Veeam Backup Enterprise Manager RESTful API, guest OS credentials should be specified separately for Microsoft Windows and Linux systems. Credentials are passed in WindowsCredentialsId and LinuxCredentialsId parameters.

Yes

0/1

For example:

<?xml version="1.0" encoding="utf-8"?>
<CreateObjectInJobSpec xmlns="http://www.veeam.com/ent/v1.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
 <HierarchyObjRef>urn:VMware:VM:00000000-0000-0000-0000-000000000000.vm-10266</HierarchyObjRef>
 <HierarchyObjName>exch02</HierarchyObjName>
 <Order>0</Order>
 <GuestProcessingOptions>
   <AppAwareProcessingMode>RequireSuccess</AppAwareProcessingMode>
   <FileSystemIndexingMode>ExceptSpecifiedFolders</FileSystemIndexingMode>
   <IncludedIndexingFolders/>
   <ExcludedIndexingFolders>
     <Path>%windir%</Path>
     <Path>%ProgramFiles%</Path>
     <Path>%TEMP%</Path>
   </ExcludedIndexingFolders>
   <CredentialsId/>
 </GuestProcessingOptions>
</CreateObjectInJobSpec>

Query Parameters

None.

Response

The server returns the following response to the client.

Response Codes

A successfully completed operation returns response code 202 Accepted.

Response Headers

The response to this request contains the following headers. The response may also include additional standard HTTP headers.

Header

Description

Content-length

The length of the response body.

Content-type

The media type and syntax of the request body message: application/xml.

Response Body

In the response body, Veeam Backup Enterprise Manager returns an ID of the task that has been created to perform the requested action, and the task state. You can check the operation results by sending the GET HTTP request to the URL of the task resource.

Additionally, Veeam Backup Enterprise Manager returns a link to the task deletion operation. You can send the GET HTTP request to the URL in the link to stop the task execution.

Example

The example below adds a VM having MoID vm-10266 to the job having ID f365fbd8-fbd2-43ad-9f7a-c87cd390a0d9.

Request:

POST http://localhost:9399/api/jobs/f365fbd8-fbd2-43ad-9f7a-c87cd390a0d9/includes

 

Request Header:

X-RestSvcSessionId   NDRjZmJkYmUtNWE5NS00MTU2LTg4NjctOTFmMDY5YjdjMmNj

 

Request Body:

<?xml version="1.0" encoding="utf-8"?>
<CreateObjectInJobSpec xmlns="http://www.veeam.com/ent/v1.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
 <HierarchyObjRef>urn:VMware:VM:00000000-0000-0000-0000-000000000000.vm-10266</HierarchyObjRef>
 <HierarchyObjName>exch02</HierarchyObjName>
 <Order>0</Order>
 <GuestProcessingOptions>
   <AppAwareProcessingMode>RequireSuccess</AppAwareProcessingMode>
   <FileSystemIndexingMode>ExceptSpecifiedFolders</FileSystemIndexingMode>
   <IncludedIndexingFolders/>
   <ExcludedIndexingFolders>
     <Path>%windir%</Path>
     <Path>%ProgramFiles%</Path>
     <Path>%TEMP%</Path>
   </ExcludedIndexingFolders>
   <CredentialsId/>
 </GuestProcessingOptions>
</CreateObjectInJobSpec>

 

Response:

202 Accepted

 

Response Body:

<Task xmlns="http://www.veeam.com/ent/v1.0" Type="Task" Href="http://localhost:9399/api/tasks/task-1">
 <Links>
   <Link Rel="Delete" Type="Task" Href="http://localhost:9399/api/tasks/task-1" />
 </Links>
 <TaskId>task-1</TaskId>
 <State>Running</State>
 <Operation>UpdateJob</Operation>
</Task>

To trace the status of the operation, send the GET HTTP request to the URL of the received task resource:

Request:

GET http://localhost:9399/api/tasks/task-1

 

Request Header:

X-RestSvcSessionId   NDRjZmJkYmUtNWE5NS00MTU2LTg4NjctOTFmMDY5YjdjMmNj

 

Response:

200 Success

 

Response Body:

<Task xmlns="http://www.veeam.com/ent/v1.0" Type="Task" Href="http://localhost:9399/api/tasks/task-1">
 <Links>
   <Link Rel="Delete" Type="Task" Href="http://localhost:9399/api/tasks/task-1" />
 </Links>
 <TaskId>task-1</TaskId>
 <State>Finished</State>
 <Operation>UpdateJob</Operation>
 <Result Success="true">
   <Message>Ok</Message>
 </Result>
</Task>

 

Veeam Large Logo

User Guide for VMware vSphere

User Guide for Microsoft Hyper-V

Enterprise Manager User Guide

Veeam Cloud Connect Guide

Veeam Agent Management Guide

Veeam Backup Explorers User Guide

Backup and Restore of SQL Server Databases

PowerShell Reference

RESTful API Reference

Veeam Backup FREE Edition User Guide