FetchTapeDetails
Select
Customer Managed
Fetches tape details based on the tape library Id provided
Path Parameters
- libraryId int32 required
Id of the library to view the data
Responses
- 200
- 404
- 500
Success
- application/json
- Schema
- Example (from schema)
Schema
- id int32
- name string
- manufacturer string
library manufacturer.
- model string
library model.
- firmwareRevision string
library firmware revision.
- barcodeReader boolean
library bar code.
- serialNumber string
library serial number.
- libraryType int32
library type.
- status object
drives object[]
list of drives.
id int32name stringtype stringdrive type.
online stringstatus of a drive.
status stringaccess of a drive.
barCode stringbarCode of a drive.
mountStatus stringPossible values: [
MEDIA_MOUNTED
,MEDIA_IS_BEING_MOUNTED
,MEDIA_IS_BEING_UNMOUNTED
,MEDIA_IS_UNUSABLE
]mountStatus of a drive.
activeMediaAgent stringmedia Agent of the drive.
driveAttributes int32if the drive attribute is 1 then the drive is cleanable.
storage object[]
Returns list of stroage.
id int32name stringonline stringstoagePool status.
type stringstoagePool type.
{
"id": 0,
"name": "string",
"manufacturer": "string",
"model": "string",
"firmwareRevision": "string",
"barcodeReader": true,
"serialNumber": "string",
"libraryType": 0,
"status": {},
"drives": [
{
"id": 0,
"name": "string",
"type": "string",
"online": "string",
"status": "string",
"barCode": "string",
"mountStatus": "MEDIA_MOUNTED",
"activeMediaAgent": "string",
"driveAttributes": 0
}
],
"storage": [
{
"id": 0,
"name": "string",
"online": "string",
"type": "string"
}
]
}
Requested Details not found
Server Error
- application/json
- Schema
- Example (from schema)
Schema
- errorMessage string
- errorCode int32
{
"errorMessage": "string",
"errorCode": 0
}
Loading...