Represents a backup repository with the specified ID.
Resource URL
The URL of the reference resource representation:
https://<Backup-Office365>:<Port>/v1/BackupRepositories/{ID} |
Related Resources
Methods
The following methods are supported for the /BackupRepositories/{ID} resource:
Properties
The /BackupRepositories/{ID} resource has the following properties:
Property | Type | Description |
---|---|---|
Name | string | Specifies the name of the backup repository. For example, "name": "ABC Support". |
ProxyId | string | Specifies the ID of a backup proxy. Veeam Backup for Microsoft Office 365 will create a backup repository on this proxy. For example, "proxyId": "5a905bb5-9071-433c-9d2f-f805d4da2cf4". |
Path | string | Specifies the full path to the folder where the mailbox backups are be stored. For example, "path": "C:\\ABC_support". |
Description | string | Specifies the description of the backup repository. For example, "description": "Daily". |
Retention | string | Specifies the retention period type:
For example, "retentionPeriodType": "Daily". |
Daily | string | Specifies the retention period in days. This property is valid if retentionPeriodType is set to Daily. For example, "dailyRetentionPeriod": "14". |
Monthly | string | Specifies the retention period in months. This property is valid if retentionPeriodType is set to Monthly. For example, "monthlyRetentionPeriod": "6". |
Yearly | string | Specifies the retention period in years:
This property is valid if retentionPeriodType is set to Yearly. If you select KeepForever, the backup job will back up all items in the mailbox and will never remove them. For example, "yearlyRetentionPeriod": "KeepForever". |
Retention | string | Specifies clean-up schedule type:
For example, "retentionFrequencyType": "Monthly". |
DailyTime | UTC | For daily clean-up schedule. Specifies the time of the day when clean-up must be performed. For example, "dailyTime": "08:00:00". |
DailyType | string | For daily clean-up schedule. Specifies the days when clean-up must be performed:
For example, "dailyType": "Workdays". |
MonthlyTime | UTC | For monthly clean-up schedule. Specifies the time of the day when clean-up must be performed. For example, "monthlyTime": "00:00:00". |
Monthly | string | For monthly clean-up schedule. Specifies the order number for the day of the week when clean-up must be performed:
For example, "monthlyDayNumber": "Last". |
Monthly | string | For monthly clean-up schedule. Specifies the day of the week when clean-up must be performed:
For example, "monthlyDayOfWeek": "Sunday". |
Capacity | int | Capacity of a backup repository. For example, "capacity": "128479916032". |
FreeSpace | int | Free space remaining on a backup repository. For example, "freeSpace": "111512489984". |
_links | Dictionary of string [key] and Object [value] | Links to related resources (navigation property). |
Resource Representation
The /BackupRepositories/{ID} resource has the following representation:
{ "id": "5f8d4793-6c87-4cb3-a5c4-0cc06387b64f", "name": "ABC Sales Backups", "proxyId": "69f00673-0cd5-46fa-911a-24cfe7ec19be", "retentionPeriod": "Years3", "retentionFrequencyType": "Daily", "dailyTime": "08:00:00", "description": "Monthly Reports", "dailyType": "Everyday", "path": "C:\\Backups_ABC", "capacity": 128479916032, "freeSpace": 105374814208, "_links": { "self": { "href": "https://support.east.local:4443/v1/BackupRepositories/5f8d4793-6c87-4cb3-a5c4-0cc06387b64f" }, "proxy": { "href": "https://support.east.local:4443/v1/Proxies/69f00673-0cd5-46fa-911a-24cfe7ec19be" } } } |
Related Topics