16 lines
372 B
Plaintext
16 lines
372 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.enrich.putPolicy({
|
|
name: "postal_policy",
|
|
geo_match: {
|
|
indices: "postal_codes",
|
|
match_field: "location",
|
|
enrich_fields: ["location", "postal_code"],
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|