Files
elasticsearch-js/docs/doc_examples/77cebba946fe648873a1e7375c13df41.asciidoc
2025-01-28 11:52:01 -06:00

14 lines
366 B
Plaintext

// This file is autogenerated, DO NOT EDIT
// Use `node scripts/generate-docs-examples.js` to generate the docs examples
[source, js]
----
const response = await client.cluster.putSettings({
persistent: {
"cluster.routing.allocation.disk.watermark.low": "90%",
"cluster.routing.allocation.disk.watermark.high": "95%",
},
});
console.log(response);
----