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

16 lines
316 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-000001",
aliases: {
"test-alias": {
is_write_index: true,
},
},
});
console.log(response);
----