Get all Kubernetes clusters
Select
SaaS
Customer Managed
API to get all Kubernetes clusters
Responses
- 200
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
- clusterCount int32
Total number of clusters
clusters object[]
id int32ID of the Kubernetes cluster
name stringName of the Kubernetes cluster
displayName stringDisplay name of the Kubernetes cluster
configured booleanDenotes if the cluster is configured for backups or retired
version stringKubernetes cluster version
instance object
id int32name stringtags object[]
id int32name stringvalue stringcompany object
id int32Id of company
name stringName of company
multiCommcellId int32Multi Commcell Id of company
commcell object
name stringName of the commcell the entity belongs to.
{
"clusterCount": 0,
"clusters": [
{
"id": 0,
"name": "string",
"displayName": "string",
"configured": true,
"version": "string",
"instance": {
"id": 0,
"name": "string"
},
"tags": [
{
"id": 0,
"name": "string",
"value": "string"
}
],
"company": {
"id": 0,
"name": "string",
"multiCommcellId": 0
},
"commcell": {
"name": "string"
}
}
]
}
Server Error
- application/json
- Schema
- Example (from schema)
Schema
- errorMessage string
- errorCode int32
{
"errorMessage": "string",
"errorCode": 0
}
Loading...