Skip to main content
GET
/
searchCluster
/
{id}
Get a cluster
import requests

url = "https://{FUSION HOST}/api/searchCluster/{id}"

response = requests.get(url)

print(response.text)
{
  "id": "<string>",
  "connectString": "<string>",
  "zkClientTimeout": 123,
  "zkConnectTimeout": 123,
  "cloud": true,
  "bufferFlushInterval": 123,
  "bufferSize": 123,
  "concurrency": 123,
  "authConfig": {
    "authType": "NONE",
    "username": "<string>",
    "password": "<string>",
    "keyTab": "<string>",
    "principal": "<string>"
  },
  "validateCluster": true
}

Path Parameters

id
string
required

The cluster ID.

Response

200 - application/json

successful operation

id
string
connectString
string
zkClientTimeout
integer<int32>
zkConnectTimeout
integer<int32>
cloud
boolean
bufferFlushInterval
integer<int32>
bufferSize
integer<int32>
concurrency
integer<int32>
authConfig
object
validateCluster
boolean