Files
elasticsearch-js/docs/doc_examples/b1f7cb4157b13368373383abd7d2b8cb.asciidoc
2024-07-29 17:10:05 -05:00

23 lines
483 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: {
remote: {
cluster_two: {
"transport.compress": false,
},
cluster_three: {
"transport.compress": true,
"transport.ping_schedule": "60s",
},
},
},
},
});
console.log(response);
----