Delete enrich policy API
Delete enrich policy API
New API reference
For the most up-to-date API details, refer to Enrich APIs.
Deletes an existing enrich policy and its enrich index.
resp = client.enrich.delete_policy(
name="my-policy",
)
print(resp)
response = client.enrich.delete_policy(
name: 'my-policy'
)
puts response
const response = await client.enrich.deletePolicy({
name: "my-policy",
});
console.log(response);
DELETE /_enrich/policy/my-policy
Request
DELETE /_enrich/policy/<enrich-policy>
Prerequisites
To use enrich policies, you must have:
read
index privileges for any indices used- The
enrich_user
built-in role
Description
Use the delete enrich policy API to delete an existing enrich policy and its enrich index.
You must remove an enrich policy from any in-use ingest pipelines before deletion. You cannot remove in-use enrich policies.
Path parameters
<enrich-policy>
(Required, string) Enrich policy to delete.
当前内容版权归 elasticsearch 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 elasticsearch .