19 lines
458 B
Plaintext
19 lines
458 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: "my-pipeline",
|
|
processors: [
|
|
{
|
|
drop: {
|
|
description: "Drop documents that contain 'network.name' of 'Guest'",
|
|
if: "ctx.network?.name != null && ctx.network.name.contains('Guest')",
|
|
},
|
|
},
|
|
],
|
|
});
|
|
console.log(response);
|
|
----
|