POST /cdpPolicies/{ID}/includes
Adds a VM or a VM container to the CDP policy having the specified ID.
Request
To add a VM or VM container to the CDP policy, send the POST HTTP request to the URL of the /cdpPolicies/{ID}/includes resource.
HTTP Request
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. For details, see Authentication and Security. |
Content-Type | True | Identifies the format of the request body message. Possible values:
|
Accept | False | Identifies the format of the response. Possible values:
If the request does not contain the header, the server will return the response in the XML format. |
Request Body
In the request body, the client must send parameters of the VM or VM container you want to add to the CDP policy. The body of the request must conform to the XML Schema Definition of Veeam Backup Enterprise Manager REST 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. You can construct the reference manually or use the lookup service to retrieve the reference. | Yes | 1/1 |
HierarchyObjName | String | Name of the VM or VM container. | No | 1/1 |
Order | Int64 | Order in which the VM or VM container should be processed by the CDP Policy. The processing sequence starts with 0. | Yes | 0/1 |
GuestProcessingOptions | GuestProcessing OptionsType | Options for application-aware image processing. For details, see Guest Processing Options. | Yes | 0/1 |
You can define the following guest processing options for the CDP policy:
Element | Type | Description | Modifiable | Min/Max Occurrence |
---|---|---|---|---|
VssSnapshotOptions | VssSnapshotOptionsType | Application-aware processing options. For details, see Application-Aware Processing 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 |
<?xml version="1.0" encoding="utf-8"?> |
{ "HierarchyObjRef": "urn:VMware:Vm:b4cd87e5-c608-4790-9178-076d16d4166b.vm-16", "HierarchyObjName": "virt03-srv01", "Order": 2, "GuestProcessingOptions": { "VssSnapshotOptions": { "VssSnapshotMode": "RequireSuccess", "IsCopyOnly": false }, "WindowsCredentialsId": "00000000-0000-0000-0000-000000000000", "LinuxCredentialsId": "00000000-0000-0000-0000-000000000000", } } |
Application-Aware Processing Options
You can define the following application-aware processing options for the CDP policy:
Element | Type | Description | Modifiable | Min/Max Occurrence |
---|---|---|---|---|
VssSnapshotMode | String | Mode of application-aware image processing. Possible values:
| 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:
| Yes | 0/1 |
<VssSnapshotOptions> |
The server returns the following response to the client.
A successfully completed operation returns response code 202 Accepted.
Header | Description |
---|---|
Content-length | The length of the response body. |
Content-type | The media type and syntax of the request body message. Possible values:
|
Request: POST https://localhost:9398/api/cdpPolicies/f365fbd8-fbd2-43ad-9f7a-c87cd390a0d9/includes
Request Headers: X-RestSvcSessionId NDRjZmJkYmUtNWE5NS00MTU2LTg4NjctOTFmMDY5YjdjMmNj
Request Body: <?xml version="1.0" encoding="utf-8"?>
Response: 202 Accepted
Response Body: <Task xmlns="http://www.veeam.com/ent/v1.0" Type="Task" Href="https://localhost:9398/api/tasks/task-1"> |
Request: GET https://localhost:9398/api/tasks/task-1
Request Header: X-RestSvcSessionId NDRjZmJkYmUtNWE5NS00MTU2LTg4NjctOTFmMDY5YjdjMmNj
Response: 200 OK
Response Body: <Task xmlns="http://www.veeam.com/ent/v1.0" Type="Task" Href="https://localhost:9398/api/tasks/task-1"> |