Files
elasticsearch-js/docs/doc_examples/e5d2172b524332196cac0f031c043659.asciidoc
Tomas Della Vedova 01e045f491 Update docs examples (#1024)
* Updated generate-docs-examples script

* Updated docs examples
2019-12-19 09:29:15 +01:00

20 lines
356 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.create({
index: 'twitter',
body: {
settings: {
index: {
number_of_shards: 3,
number_of_replicas: 2
}
}
}
})
console.log(response)
----