20 lines
392 B
Plaintext
20 lines
392 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.putPipeline({
|
|
id: "pipelineA",
|
|
description: "inner pipeline",
|
|
processors: [
|
|
{
|
|
set: {
|
|
field: "inner_pipeline_set",
|
|
value: "inner",
|
|
},
|
|
},
|
|
],
|
|
});
|
|
console.log(response);
|
|
----
|