22 lines
509 B
Plaintext
22 lines
509 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: "postal_lookup",
|
|
processors: [
|
|
{
|
|
enrich: {
|
|
description: "Add 'geo_data' based on 'geo_location'",
|
|
policy_name: "postal_policy",
|
|
field: "geo_location",
|
|
target_field: "geo_data",
|
|
shape_relation: "INTERSECTS",
|
|
},
|
|
},
|
|
],
|
|
});
|
|
console.log(response);
|
|
----
|