(cherry picked from commit f737290d10)
Co-authored-by: Josh Mock <joshua.mock@elastic.co>
32 lines
619 B
Plaintext
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);
|
|
----
|