Gets the list of all backup objects.
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": "getBackupObjects", "data": [{ "filter": { "start": 0, "count": 200, "sort": "NAME", "sortAsc": true, "criteria": [{ "type": "EQ", "name": "HV_TYPE", "value": "VMWARE" }], "criteria": [{ "type": "LIKE", "name": "NAME", "value": "Cent" }], "criteria": [{ "type": "EQ", "name": "LOCATION_ID", "value": "1" }] }}], "type": "rpc", "tid": 1 }"
Request Fields
Field | Type | Value(s) |
---|---|---|
action | string |
|
method | string |
|
data | array | Filter parameters. See the |
type | string |
|
tid | int | 1 |
filter
Field | Type | Description |
---|---|---|
| int | A start ID of the backup object to be returned |
| int | Number of backup objects to be returned |
| string | Backup object parameter to be sorted with |
| boolean |
|
| array | Filter criteria. See the rows below |
| string | Type of criterion |
| string | Name of criterion. |
type | string | Type of the criterion. |
value | string | Value of the criterion |
Response Sample
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 |
| Json | Backup object info |
data.children
Field | Value | Description |
---|---|---|
| string | Backup object VID |
| string | Backup object name |
| string | Platform type. Possible values: |
| long | Number of tape cartridges |
| long | Number of savepoints |
| DateTime | Date of the first savepoint |
| DateTime | Date of the last savepoint |
| array | Location names |
| boolean |
|
| boolean |
|
| boolean |
|