v1

latestOpenAPI 3.0.0Apache 2.02026-07-17143274803.9 KB
clustergroups

List Cluster Groups of an Organization

retrieve list of cluster groups of an organization

get/api/v1/orgs/{orgid}/clustergroups

Path parameters

orgIdinteger required

Organization identifier

Response

OK

enabledFeaturesstring[]
idinteger
namestring
organizationIdinteger
uidstring

Example response

[
  {
    "organizationId": 0,
    "uid": "uid",
    "enabledFeatures": [
      "enabledFeatures",
      "enabledFeatures"
    ],
    "members": [
      {
        "cloud": "google",
        "name": "clusterName",
        "id": 1001,
        "distribution": "gke",
        "status": "status"
      },
      {
        "cloud": "google",
        "name": "clusterName",
        "id": 1001,
        "distribution": "gke",
        "status": "status"
      }
    ],
    "name": "name",
    "id": 10
  }
]