21 lines
462 B
Plaintext
21 lines
462 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: [
|
|
{
|
|
rename: {
|
|
description: "Rename 'provider' to 'cloud.provider'",
|
|
field: "provider",
|
|
target_field: "cloud.provider",
|
|
ignore_failure: true,
|
|
},
|
|
},
|
|
],
|
|
});
|
|
console.log(response);
|
|
----
|