Get Current Capacity Usage Report
Select
SaaS
Customer Managed
The amount of data in all the most recent full backup jobs and all archive jobs in the CommCell environment, and whether you are approaching the capacity license limit.
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
- Example 1
Schema
- cacheId string
Report dataset cache Id
- offset integer
Denotes the starting point or index from which the requested data begins
- limit integer
Total number of records in the response
- totalRecordCount integer
Total Records in the response
columns object[]
List of columns in the dataset
name stringColumn Name
dataField stringData field name
displayName stringDisplay Name of the column
type stringData type
precision integerDecimal point precision
scale integer- recordsCount integer
Total Records in the rows
- records string[]
Rows containing the output
- failures object
- warnings object
{
"cacheId": "string",
"offset": 0,
"limit": 0,
"totalRecordCount": 0,
"columns": [
{
"name": "string",
"dataField": "string",
"displayName": "string",
"type": "string",
"precision": 0,
"scale": 0
}
],
"recordsCount": 0,
"records": [
"string"
],
"failures": {},
"warnings": {}
}
{
"cacheId": "e76a6d07-2b1b-47b2-d97e-7a7f1a9793be",
"offset": 0,
"limit": 5,
"totalRecordCount": 5,
"columns": [
{
"name": "Dial",
"dataField": "Dial",
"displayName": "Dial",
"type": "String",
"precision": 1000000000,
"scale": 0
},
{
"name": "Purchased",
"dataField": "Purchased",
"displayName": "Purchased",
"type": "Integer",
"precision": 32,
"scale": 0
},
{
"name": "PermTotal",
"dataField": "PermTotal",
"displayName": "PermTotal",
"type": "Integer",
"precision": 32,
"scale": 0
},
{
"name": "Eval",
"dataField": "Eval",
"displayName": "Eval",
"type": "Integer",
"precision": 32,
"scale": 0
},
{
"name": "Usage",
"dataField": "Usage",
"displayName": "Usage",
"type": "Double",
"precision": 53,
"scale": 0
},
{
"name": "TermDate",
"dataField": "TermDate",
"displayName": "TermDate",
"type": "TimeStamp",
"precision": 26,
"scale": 6
},
{
"name": "EvalExpiryDate",
"dataField": "EvalExpiryDate",
"displayName": "EvalExpiryDate",
"type": "String",
"precision": 1000000000,
"scale": 0
}
],
"recordsCount": 5,
"records": [
[
"Backup",
100,
100,
0,
0,
"Jan 1, 1970, 12:00:00 AM",
"01 Jan 1970"
],
[
"Snapshot",
500,
500,
0,
0,
"Jan 1, 1970, 12:00:00 AM",
"01 Jan 1970"
],
[
"Replication",
500,
500,
0,
0,
"Jan 1, 1970, 12:00:00 AM",
"01 Jan 1970"
],
[
"Archive",
100,
100,
0,
0,
"Jan 1, 1970, 12:00:00 AM",
"01 Jan 1970"
],
[
"Backup and Recovery for Unstructured Data",
0,
0,
0,
0,
"Jan 1, 1970, 12:00:00 AM",
"01 Jan 1970"
]
],
"failures": {},
"warnings": {}
}
Loading...