Returns capacity and usage information for the volumes present on the application's server.
Resource URL
/webacs/api/v1/op/info/disk
Sample Payloads
Sample payloads are for information only. They are automatically generated and the values included may not be representative of actual valid data values.
Sample XML Response Payload
https://192.168.115.187/webacs/api/v1/op/info/disk
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<mgmtResponse rootUrl="https://192.168.115.187/webacs/api/v1/op/" requestUrl="https://192.168.115.187/webacs/api/v1/op/info/disk" responseType="operation">
<volumeDTO>
<availableCapacity>2</availableCapacity>
<name>String value</name>
<usedCapacity>2</usedCapacity>
<usedPercentage>1</usedPercentage>
</volumeDTO>
</mgmtResponse>
Sample JSON Response Payload
https://192.168.115.187/webacs/api/v1/op/info/disk.json
{
"mgmtResponse" : {
"@rootUrl" : "https : \/\/192.168.115.187\/webacs\/api\/v1\/op\/",
"@requestUrl" : "https : \/\/192.168.115.187\/webacs\/api\/v1\/op\/info\/disk",
"@responseType" : "operation",
"volumeDTO" : {
"availableCapacity" : 2,
"name" : "String value",
"usedCapacity" : 2,
"usedPercentage" : 1
}
}
}