Files
elasticsearch-js/docs/doc_examples/8621c05cc7cf3880bde751f6670a0c3a.asciidoc
2025-02-03 12:54:23 -06:00

16 lines
346 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.indices.putSettings({
index: ".reindexed-v9-ml-anomalies-custom-example",
settings: {
index: {
number_of_replicas: 0,
},
},
});
console.log(response);
----