Get Storage Space Utilization
This API returns the storage space utilization or the amount of data that is in all disk or cloud libraries, and the percentage of storage space that was saved because of compression and deduplication.
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": "6603e2c3f52c4c65b3c03b8393e25e33",
"offset": 0,
"limit": 0,
"totalRecordCount": 5,
"columns": [
{
"name": "sys_rowid",
"dataField": "sys_rowid",
"displayName": "$row_number$",
"type": "Long",
"precision": 64,
"scale": 0
},
{
"name": "Data Source",
"dataField": "Data Source",
"displayName": "Data Source",
"type": "String",
"precision": 1000000000,
"scale": 0
},
{
"name": "LibraryId",
"dataField": "LibraryId",
"displayName": "LibraryId",
"type": "Integer",
"precision": 32,
"scale": 0
},
{
"name": "LibraryName",
"dataField": "LibraryName",
"displayName": "LibraryName",
"type": "String",
"precision": 1000000000,
"scale": 0
},
{
"name": "TotalSpaceMB",
"dataField": "TotalSpaceMB",
"displayName": "TotalSpaceMB",
"type": "Long",
"precision": 64,
"scale": 0
},
{
"name": "TotalFreeSpaceMB",
"dataField": "TotalFreeSpaceMB",
"displayName": "TotalFreeSpaceMB",
"type": "Long",
"precision": 64,
"scale": 0
},
{
"name": "TotalUsedSpaceMB",
"dataField": "TotalUsedSpaceMB",
"displayName": "TotalUsedSpaceMB",
"type": "Decimal",
"precision": 21,
"scale": 3
},
{
"name": "FreeSpacePercentage",
"dataField": "FreeSpacePercentage",
"displayName": "FreeSpacePercentage",
"type": "Decimal",
"precision": 21,
"scale": 3
},
{
"name": "Date to be Full",
"dataField": "Date to be Full",
"displayName": "Date to be Full",
"type": "Long",
"precision": 64,
"scale": 0
},
{
"name": "HealthStatus",
"dataField": "HealthStatus",
"displayName": "HealthStatus",
"type": "String",
"precision": 1000000000,
"scale": 0
},
{
"name": "CCTotalDataWrittenGB",
"dataField": "CCTotalDataWrittenGB",
"displayName": "CCTotalDataWrittenGB",
"type": "Double",
"precision": 53,
"scale": 0
},
{
"name": "CCTotalAppSizeGB",
"dataField": "CCTotalAppSizeGB",
"displayName": "CCTotalAppSizeGB",
"type": "Double",
"precision": 53,
"scale": 0
},
{
"name": "CCTotalSavingsPercentage",
"dataField": "CCTotalSavingsPercentage",
"displayName": "CCTotalSavingsPercentage",
"type": "Decimal",
"precision": 21,
"scale": 3
}
],
"recordsCount": 5,
"records": [
[
2,
"bdcsrvtest05",
1215,
"Dedupe Storage Pool",
485130,
182906,
302224,
35.8,
1729235836,
"Good",
1075.99,
1021.61,
0
],
[
1,
"bdcsrvtest05",
2592,
"Test-Terraform-Pool1",
101785,
24944,
76841,
22.51,
1802071036,
"Good",
1075.99,
1021.61,
0
],
[
3,
"bdcsrvtest05",
3152,
"disklibrary_bdcsrvtest05",
485130,
182906,
302224,
35.8,
549755813886,
"Good",
1075.99,
1021.61,
0
],
[
4,
"bdcsrvtest05",
1,
"CSLib",
22603141,
10706278,
11896863,
45.97,
549755813886,
"Good",
1075.99,
1021.61,
0
],
[
5,
"bdcsrvtest05",
3141,
"LivesyncPool",
7372666,
3507793,
3864873,
46.19,
549755813887,
"Good",
1075.99,
1021.61,
0
]
],
"failures": {},
"warnings": {}
}
Loading...