Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Cluster id of the cluster
Response
Returns the status of provided cluster
Whether the cluster is connected
curl --request GET \
--url https://{controlPlaneURL}/api/svc/v1/clusters/{id}/is-connected \
--header 'Authorization: Bearer <token>'
{
"isConnected": true
}
Get the status of provided cluster
curl --request GET \
--url https://{controlPlaneURL}/api/svc/v1/clusters/{id}/is-connected \
--header 'Authorization: Bearer <token>'
{
"isConnected": true
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Cluster id of the cluster
Returns the status of provided cluster
Whether the cluster is connected
Was this page helpful?