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

14 lines
323 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.searchApplication.put({
name: "my_search_application",
search_application: {
indices: ["index1", "index2"],
},
});
console.log(response);
----