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

27 lines
457 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.ingest.simulate({
id: "my-pipeline-id",
docs: [
{
_index: "index",
_id: "id",
_source: {
foo: "bar",
},
},
{
_index: "index",
_id: "id",
_source: {
foo: "rab",
},
},
],
});
console.log(response);
----