List all clusters
import requests
url = "https://{FUSION HOST}/api/searchCluster"
response = requests.get(url)
print(response.text)[
{
"id": "<string>",
"connectString": "<string>",
"zkClientTimeout": 123,
"zkConnectTimeout": 123,
"cloud": true,
"bufferFlushInterval": 123,
"bufferSize": 123,
"concurrency": 123,
"authConfig": {
"username": "<string>",
"password": "<string>",
"keyTab": "<string>",
"principal": "<string>"
},
"validateCluster": true
}
]List all clusters
Return the definitions for all existing clusters.
GET
/
searchCluster
List all clusters
import requests
url = "https://{FUSION HOST}/api/searchCluster"
response = requests.get(url)
print(response.text)[
{
"id": "<string>",
"connectString": "<string>",
"zkClientTimeout": 123,
"zkConnectTimeout": 123,
"cloud": true,
"bufferFlushInterval": 123,
"bufferSize": 123,
"concurrency": 123,
"authConfig": {
"username": "<string>",
"password": "<string>",
"keyTab": "<string>",
"principal": "<string>"
},
"validateCluster": true
}
]Response
200 - application/json
successful operation
Show child attributes
Show child attributes
Was this page helpful?
⌘I