Update cluster configuration
Modify cluster configuration properties of a cluster.
Query parameters
-
If nonzero, skip validation of properties, and permit setting unknown properties
-
If nonzero, do not apply any changes (but still do validation and return 400 on errors)
PUT
/v1/cluster_config
curl \
--request PUT 'http://localhost:9644/v1/cluster_config' \
--header "Content-Type: application/json" \
--data '{"upsert":{"additionalProperty1":"string","additionalProperty2":"string"},"remove":["string"]}'
Request examples
{
"upsert": {
"additionalProperty1": "string",
"additionalProperty2": "string"
},
"remove": [
"string"
]
}