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

16 lines
310 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: "my-index-000001",
settings: {
index: {
mode: "standard",
},
},
});
console.log(response);
----