forked from opensearch-project/documentation-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add documentation for Deprovision Workflow API allow_delete parameter (…
…opensearch-project#7639) * Add documentation for Deprovision Workflow API allow_delete parameter Signed-off-by: Daniel Widdis <[email protected]> * Add new steps and missing delete search pipeline doc Signed-off-by: Daniel Widdis <[email protected]> * Revert changes to workflow steps. Users can't use these new step types Signed-off-by: Daniel Widdis <[email protected]> * Update _automating-configurations/api/deprovision-workflow.md Co-authored-by: Nathan Bower <[email protected]> Signed-off-by: Daniel Widdis <[email protected]> * Update _automating-configurations/api/deprovision-workflow.md Co-authored-by: Nathan Bower <[email protected]> Signed-off-by: Daniel Widdis <[email protected]> * Update _automating-configurations/api/deprovision-workflow.md Co-authored-by: Nathan Bower <[email protected]> Signed-off-by: Daniel Widdis <[email protected]> * Remove redundant use of workflow, accept other edits Signed-off-by: Daniel Widdis <[email protected]> --------- Signed-off-by: Daniel Widdis <[email protected]> Co-authored-by: Nathan Bower <[email protected]> Signed-off-by: Sander van de Geijn <[email protected]>
- Loading branch information
1 parent
a6530a5
commit 47a3ba9
Showing
3 changed files
with
39 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,4 @@ Gemfile.lock | |
.idea | ||
*.iml | ||
.jekyll-cache | ||
.project |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
_search-plugins/search-pipelines/deleting-search-pipeline.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
--- | ||
layout: default | ||
title: Deleting search pipelines | ||
nav_order: 30 | ||
has_children: false | ||
parent: Search pipelines | ||
grand_parent: Search | ||
--- | ||
|
||
# Deleting search pipelines | ||
|
||
Use the following request to delete a pipeline. | ||
|
||
To delete a specific search pipeline, pass the pipeline ID as a parameter: | ||
|
||
```json | ||
DELETE /_search/pipeline/<pipeline-id> | ||
``` | ||
{% include copy-curl.html %} | ||
|
||
To delete all search pipelines in a cluster, use the wildcard character (`*`): | ||
|
||
```json | ||
DELETE /_search/pipeline/* | ||
``` | ||
{% include copy-curl.html %} |