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

32 lines
619 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: "index_1",
});
console.log(response);
const response1 = await client.indices.create({
index: "index_2",
});
console.log(response1);
const response2 = await client.indices.create({
index: "index_3",
settings: {
"index.priority": 10,
},
});
console.log(response2);
const response3 = await client.indices.create({
index: "index_4",
settings: {
"index.priority": 5,
},
});
console.log(response3);
----