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

16 lines
354 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: "test-index",
settings: {
number_of_shards: 1,
number_of_replicas: 1,
"index.lifecycle.name": "my_policy",
},
});
console.log(response);
----