The API allows you list and view Tapes.
Returns list of tape libraries filtered by specified query parameters.
name | type | description |
---|---|---|
direction | query | |
filter | query | |
nameLike | query | |
orderBy | query | |
page | query | |
size | query | |
tape-manager | query |
media type | data type | description |
---|---|---|
application/json | array of TapeLibraryDetails (JSON) | list of tape libraries filtered by specified query parameters |
GET /tape-libraries
Content-Type: */*
Accept: application/json
...
HTTP/1.1 200 OK
Content-Type: application/json
[ {
"guid" : "...",
"name" : "...",
"uuid" : "...",
"path" : "...",
"tapeManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"present" : true
} ]
name | type | description |
---|---|---|
guid | path |
DELETE /tape-libraries/{guid}
Content-Type: */*
...
HTTP/1.1 204 No Content
Get a single tape library.
name | type | description |
---|---|---|
guid | path | specify local unique identifier for tape library (use by vProtect) |
media type | data type | description |
---|---|---|
application/json | TapeLibraryDetails (JSON) | tape library details |
GET /tape-libraries/{guid}
Content-Type: */*
Accept: application/json
...
HTTP/1.1 200 OK
Content-Type: application/json
{
"guid" : "...",
"name" : "...",
"uuid" : "...",
"path" : "...",
"tapeManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"present" : true
}