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

30 lines
554 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.close({
index: "index",
});
console.log(response);
const response1 = await client.indices.putSettings({
index: "index",
settings: {
index: {
similarity: {
default: {
type: "boolean",
},
},
},
},
});
console.log(response1);
const response2 = await client.indices.open({
index: "index",
});
console.log(response2);
----