Delete async EQL search API
Delete async EQL search API
New API reference
For the most up-to-date API details, refer to EQL APIs.
Deletes an async EQL search or a stored synchronous EQL search. The API also deletes results for the search.
resp = client.eql.delete(
id="FkpMRkJGS1gzVDRlM3g4ZzMyRGlLbkEaTXlJZHdNT09TU2VTZVBoNDM3cFZMUToxMDM=",
)
print(resp)
response = client.eql.delete(
id: 'FkpMRkJGS1gzVDRlM3g4ZzMyRGlLbkEaTXlJZHdNT09TU2VTZVBoNDM3cFZMUToxMDM='
)
puts response
const response = await client.eql.delete({
id: "FkpMRkJGS1gzVDRlM3g4ZzMyRGlLbkEaTXlJZHdNT09TU2VTZVBoNDM3cFZMUToxMDM=",
});
console.log(response);
DELETE /_eql/search/FkpMRkJGS1gzVDRlM3g4ZzMyRGlLbkEaTXlJZHdNT09TU2VTZVBoNDM3cFZMUToxMDM=
Request
DELETE /_eql/search/<search_id>
Prerequisites
If the Elasticsearch security features are enabled, only the following users can use this API to delete a search:
- Users with the
cancel_task
cluster privilege - The user who first submitted the search
- Users with the
See Required fields.
Limitations
See EQL limitations.
Path parameters
<search_id>
(Required, string) Identifier for the search to delete.
A search ID is provided in the EQL search API‘s response for an async search. A search ID is also provided if the request’s keep_on_completion parameter is true
.
当前内容版权归 elasticsearch 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 elasticsearch .