v1

latestOpenAPI 3.0.0Apache 2.02026-07-17143274803.9 KB
clustergroup features

Get Feature of Cluster Group

retrieve info about a cluster group feature and it's status on each member cluster

get/api/v1/orgs/{orgid}/clustergroups/{clusterGroupId}/features/{featureName}

Path parameters

orgIdinteger required

Organization identifier

clusterGroupIdinteger required

Cluster Group ID

featureNamestring required

Name of the feature

Response

OK

enabledboolean
lastReconcileErrorstring
namestring
propertiesobject
reconcileStatestring
statusobject

Example response

{
  "lastReconcileError": "lastReconcileError",
  "clusterGroup": {
    "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
  },
  "reconcileState": "reconcileState",
  "name": "name",
  "enabled": true,
  "properties": "{}",
  "status": "{}"
}