16 lines
374 B
Plaintext
16 lines
374 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.getSettings();
|
|
console.log(response);
|
|
|
|
const response1 = await client.cluster.putSettings({
|
|
persistent: {
|
|
"xpack.monitoring.collection.enabled": false,
|
|
},
|
|
});
|
|
console.log(response1);
|
|
----
|