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

15 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.indices.putSettings({
index: "test",
settings: {
"index.routing.allocation.require.size": "big",
"index.routing.allocation.require.rack": "rack1",
},
});
console.log(response);
----