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

37 lines
607 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({
pipeline: {
description: "_description",
processors: [
{
set: {
field: "field2",
value: "_value",
},
},
],
},
docs: [
{
_index: "index",
_id: "id",
_source: {
foo: "bar",
},
},
{
_index: "index",
_id: "id",
_source: {
foo: "rab",
},
},
],
});
console.log(response);
----