Get team overview information
Basic Information
This interface is mainly used to obtain team overview information
请求路径
GET /openapi/v1/teams/{team_id}/regions/{region_name}/overview
request parameters
| name | Location | type | required | Chinese name | illustrate | 
|---|---|---|---|---|---|
| team_id | path | string | Yes | none | |
| region_name | path | string | Yes | none | 
return result
| status code | Status code meaning | illustrate | data model | 
|---|---|---|---|
| 200 | OK | success | TeamAppsResource | 
Model
TeamAppsResource
{
  "total_cpu": 0,
  "total_memory": 0,
  "used_cpu": 0,
  "used_memory": 0,
  "used_cpu_percentage": 0,
  "used_memory_percentage": 0,
  "team_id": "string ",
  "team_name": "string",
  "team_alias": "string"
}
Attributes
| name | type | required | constraint | Chinese name | illustrate | 
|---|---|---|---|---|---|
| total_cpu | integer | false | none | total cpu | total cpu | 
| total_memory | integer | false | none | Total memory | total memory | 
| used_cpu | integer | false | none | used cpu | occupy cpu | 
| used_memory | integer | false | none | Used memory | used internal memory | 
| used_cpu_percentage | number | false | none | Used cpu percentage | percentage of cpu | 
| used_memory_percentage | number | false | none | Used memory percentage | percentage of memory used | 
| team_id | string | true | none | team id | Team ID | 
| team_name | string | true | none | Team name | Team Name | 
| team_alias | string | true | none | Team alias | Team nickname |