Represents backup exclusion settings. Per these settings backup jobs will not process the specified mailbox data.
|
Backup exclusion settings are global and will be applied to all backup jobs in Veeam Backup for Microsoft Office 365. |
Resource URL
https://<Backup-Office365>:<Port>/v1/ExclusionSettings |
Related Resources
None.
Methods
The following methods are supported for the /ExclusionSettings resource:
Properties
The /ExclusionSettings resource has the following properties:
Property | Type | Description |
---|---|---|
DeletedItems | bool | Indicates that backup jobs will not process Deleted Items mailbox folder. For example, "deletedItems": "false". |
Drafts | bool | Indicates that backup jobs will not process Drafts mailbox folder. For example, "drafts": "true". |
JunkEmail | bool | Indicates that backup jobs will not process Junk E-mail mailbox folder. For example, "junkEmail": "true". |
Outbox | bool | Indicates that backup jobs will not process Outbox mailbox folder. For example, "outbox": "true". |
SyncIssues | bool | Indicates that backup jobs will not process Sync Issues mailbox folder. For example, "syncIssues": "true". |
Litigation | bool | Indicates that backup jobs will not process preserved items of mailboxes placed on Litigation Hold. For example, "litigationHold": "true". |
InPlace | bool | Indicates that backup jobs will not process preserved items of mailboxes placed on In-Place Hold. For example, "inPlaceHold": "true". |
_links | Dictionary of string [key] and Object [value] | Links to related resources (navigation property). |
Resource Representation
The /ExclusionSettings resource has the following representation:
{ "deletedItems": false, "drafts": false, "junkEmail": false, "outbox": false, "syncIssues": true, "litigationHold": false, "inPlaceHold": false, "_links": { "self": { "href": "https://support.east.local:4443/v1/exclusionsettings" } }, "_actions": { "update": { "uri": "https://support.east.local:4443/v1/exclusionsettings", "method": "PUT" } } } |
Related Topics