Cisco Evolved Programmable Network Manager API
Evolved Programmable Network Manager API Documentation

GET info/disk

Resource Information

Rate Limiting?

Yes

Sorting?

No

Paging?

No

Filtering?

No

Response Formats

xml

json

User Group

NBI Read

HTTP Methods

GET

Returns capacity and usage information for the volumes present on the application's server.

Since Product Version: 2.0

Resource URL

/webacs/api/v1/op/info/disk

Response Parameters

Type Attribute Name Description

long

availableCapacity

Free/available capacity, in KB.

String

name

The name of the volume.

long

usedCapacity

Used capacity, in KB.

int

usedPercentage

The percentage of the volume used, expressed in whole numbers where 100 is 100%.

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://172.25.123.114/webacs/api/v1/op/info/disk

<?xml version="1.0" ?>
<mgmtResponse responseType="operation" requestUrl="../../../../pages/common/login.jsp.html" rootUrl="https://172.25.123.114/webacs/api/v1/op/">
  <volumeDTO>
    <availableCapacity>2</availableCapacity>
    <name>String value</name>
    <usedCapacity>2</usedCapacity>
    <usedPercentage>1</usedPercentage>
  </volumeDTO>
</mgmtResponse>

Sample JSON Response Payload

https://172.25.123.114/webacs/api/v1/op/info/disk.json

{
  "mgmtResponse" : {
    "@responseType" : "operation",
    "@requestUrl" : "https : \/\/172.25.123.114\/webacs\/api\/v1\/op\/info\/disk",
    "@rootUrl" : "https : \/\/172.25.123.114\/webacs\/api\/v1\/op\/",
    "volumeDTO" : {
      "availableCapacity" : 2,
      "name" : "String value",
      "usedCapacity" : 2,
      "usedPercentage" : 1
    }
  }
}