Returns capacity and usage information for the volumes present on the application's server.
Resource URL
/webacs/api/v1/op/info/disk
Since : 2.0
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.116.207/webacs/api/v1/op/info/disk
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<mgmtResponse rootUrl="https://192.168.116.207/webacs/api/v1/op/info/info/disk" requestUrl="https://192.168.116.207/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.116.207/webacs/api/v1/op/info/disk.json
{
"mgmtResponse" : {
"@rootUrl" : "https : \/\/192.168.116.207\/webacs\/api\/v1\/op\/info\/info\/disk",
"@requestUrl" : "https : \/\/192.168.116.207\/webacs\/api\/v1\/op\/info\/disk",
"@responseType" : "operation",
"volumeDTO" : {
"availableCapacity" : 2,
"name" : "String value",
"usedCapacity" : 2,
"usedPercentage" : 1
}
}
}