kibana/docs/api/logstash-configuration-management/delete.asciidoc
Shaunak Kashyap 4dcb27df2b
Document Logstash Centralized Configuration Management HTTP APIs (#17706)
* Starting to document Logstash config management APIS

* Removing copy pasta

* Adding delete pipeline API doc

* Mention updates in Create Pipeline API doc

* Capitalization fix

* Adding Retrieve Pipeline API doc

* Adding List Pipelines API doc

* Fixing typos

* Fixing DELETE pipeline API response code

* Add description field to GET pipeline response

* Update PUT pipeline API response to match implementation

* Fixing and annotating GET pipelines response

* Add AIP doc reference to index

* Adding xpack role

* Adding floats

* Missed list item

* Fixing rebase auto-merge

* Adding intro section to Logstash Configuration Management API page

* Bolding "experimental"

* Fixing typo
2018-06-08 17:29:39 +05:30

30 lines
No EOL
672 B
Text

[role="xpack"]
[[logstash-configuration-management-api-delete]]
=== Delete Pipeline
experimental[This functionality is *experimental* and may be changed or removed completely in a future release.]
The Delete Pipeline API enables you to delete a centrally-managed Logstash pipeline.
[float]
==== Request
`DELETE /api/logstash/pipeline/<id>`
[float]
==== Path Parameters
`id` (required)::
(string) ID for pipeline.
[float]
==== Examples
[source,js]
--------------------------------------------------
DELETE api/logstash/pipeline/hello-world
--------------------------------------------------
// KIBANA
A successful call returns an HTTP `204 No Content` response.