curl --request PUT \
--url https://{FUSION HOST}/api/searchCluster/{id} \
--header 'Content-Type: application/json' \
--data '{
"authConfig": {},
"validateCluster": true
}'
{
"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
}
Update a cluster definition.
curl --request PUT \
--url https://{FUSION HOST}/api/searchCluster/{id} \
--header 'Content-Type: application/json' \
--data '{
"authConfig": {},
"validateCluster": true
}'
{
"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
}
An optional tag to match against the specified blob.
The cluster ID.
Validate the updated cluster definition before saving it.
JSON-formatted cluster configuration values.
The body is of type object
.
successful operation
The response is of type object
.
Was this page helpful?