Browse Source

[docs] update ingest-node delete docs to mention wildcarding (#22270)

Tal Levy 8 years ago
parent
commit
ad4b1ecdeb
1 changed files with 31 additions and 1 deletions
  1. 31 1
      docs/reference/ingest/ingest-node.asciidoc

+ 31 - 1
docs/reference/ingest/ingest-node.asciidoc

@@ -143,7 +143,7 @@ This should give a small response that makes it both easy and inexpensive to par
 [[delete-pipeline-api]]
 === Delete Pipeline API
 
-The delete pipeline API deletes pipelines by ID.
+The delete pipeline API deletes pipelines by ID or wildcard match (`my-*`, `*`).
 
 [source,js]
 --------------------------------------------------
@@ -152,6 +152,36 @@ DELETE _ingest/pipeline/my-pipeline-id
 // CONSOLE
 // TEST[continued]
 
+////
+Hidden setup for wildcard test:
+[source,js]
+--------------------------------------------------
+PUT _ingest/pipeline/wild-one
+{
+  "description" : "first pipeline to be wildcard deleted",
+  "processors" : [ ]
+}
+
+PUT _ingest/pipeline/wild-two
+{
+  "description" : "second pipeline to be wildcard deleted",
+  "processors" : [ ]
+}
+
+DELETE _ingest/pipeline/*
+--------------------------------------------------
+// CONSOLE
+
+Hidden expected response:
+[source,js]
+--------------------------------------------------
+{
+"acknowledged": true
+}
+--------------------------------------------------
+// TESTRESPONSE
+////
+
 [[simulate-pipeline-api]]
 === Simulate Pipeline API