Get Environment Details
CommCell Environment Statistics API
This API provides the total count of entities, including servers, VMs, laptops, and users, within the CommCell environment.
CommCell Environment Entities
File Servers
- The number of configured file servers in the CommCell environment.
VMs (Virtual Machines)
- The count of discovered virtual servers in the CommCell environment.
Laptops
- The number of devices configured with the Endpoint solution in the CommCell environment.
Users
- The count of users configured in the CommCell environment.
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": "04593a6db84945a5ba1d26be9d834fc2",
"offset": 0,
"limit": 0,
"totalRecordCount": 4,
"columns": [
{
"name": "Data Source",
"dataField": "Data Source",
"type": "String",
"precision": 1000000000,
"scale": 0
},
{
"name": "PropertyType",
"dataField": "PropertyType",
"type": "String",
"precision": 1000000000,
"scale": 0
},
{
"name": "PropertyCount",
"dataField": "PropertyCount",
"type": "Integer",
"precision": 32,
"scale": 0
}
],
"recordsCount": 4,
"records": [
[
"mustardtiger",
"SERVERS",
9
],
[
"mustardtiger",
"VMS",
0
],
[
"mustardtiger",
"LAPTOPS",
2
],
[
"mustardtiger",
"USERS",
20
]
],
"failures": {},
"warnings": {}
}
Loading...