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

27 lines
505 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.reindex({
source: {
remote: {
host: "http://otherhost:9200",
headers: {
Authorization: "ApiKey API_KEY_VALUE",
},
},
index: "my-index-000001",
query: {
match: {
test: "data",
},
},
},
dest: {
index: "my-new-index-000001",
},
});
console.log(response);
----