Get cluster group developer credit usage by scope
GET/v1/clustergroups/developerCredit/usage/:scope
Get cluster group developer credit usage by scope
Request
Path Parameters
scope stringrequired
Possible values: [system, tenant]
Header Parameters
ProjectUid string
Scope the request to the specified project uid
Responses
- 200
Cluster group developer credit usage
- application/json
- Schema
- Example (from schema)
Schema
allocatedCredit
Credits allocated for each tenant/user
cpuint32
cpu in cores
memoryGiBint32
memory in GiB
storageGiBint32
storage in GiB
virtualClustersLimitint32
number of active virtual clusters
usedCredit
Credits allocated for each tenant/user
cpuint32
cpu in cores
memoryGiBint32
memory in GiB
storageGiBint32
storage in GiB
virtualClustersLimitint32
number of active virtual clusters
{
  "allocatedCredit": {
    "cpu": 0,
    "memoryGiB": 0,
    "storageGiB": 0,
    "virtualClustersLimit": 0
  },
  "usedCredit": {
    "cpu": 0,
    "memoryGiB": 0,
    "storageGiB": 0,
    "virtualClustersLimit": 0
  }
}
Loading...