Get Single Backup Object
Gets backup details.
Endpoint
https://<Director_IP_address>:4443/c/router
Tenant Endpoint
For tenants of the multi-tenant product the endpoint must be:https://<Director_IP_address>:4443/t/<tenant_UUID>/c/router
Request Example
curl --request POST \
--url https://<Director_IP_address>:4443/c/router \
--header "content-type: application/json" \
--cookie @cookies.txt \
--data "{
"action": "TapeBackupManagement",
"method": "getBackupObject",
"data": [23],
"type": "rpc",
"tid": 1
}"
Request Fields
Field
|
Type
|
Value(s)
|
---|---|---|
action
|
string |
|
method
|
string |
|
data
|
array |
ID of the backup object |
type
|
string | rpc
|
tid
|
int | 1 |
Response Sample
{
"action": "TapeBackupManagement",
"method": "getBackupObject",
"tid": "1",
"type": "rpc",
"message": null,
"where": null,
"cause": null,
"data": {
"vid": "BACKUP_OBJECT-23",
"name": "Centos7",
"hvType": "VMWARE",
"tapeCartridgeCount": 2,
"savepointCount": 4,
"firstSavepoint": "2019-03-22T14:20:37.644+07:00",
"lastSavepoint": "2019-03-28T10:59:11.575+07:00",
"locationNames": [
"My office" ],
"totalSize": 0,
"isOffline": false,
"isMarkedAsFree": true,
"incompleteBackups": false
}
}
Response Fields
Field
|
Value
|
Description
|
---|---|---|
message
|
string | Message if the request failed |
where
|
string | Reference to the method where the problem occurred |
cause
|
string | Cause of failure |
data |
Json |
Backup object info. See the table below |
data
Field |
Type |
Description |
---|---|---|
|
string |
Backup object VID |
|
string |
Backup object name |
|
string |
Platform type. Possible values: |
|
long |
Number of tape cartridges |
|
long |
Number of recovery points |
|
DateTime |
Date of the first recovery point |
|
DateTime |
Date of the last recovery point |
|
array |
Location names |
|
boolean |
|
|
boolean |
|
|
boolean |
|