-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: delvedor <[email protected]>
- Loading branch information
1 parent
f69621a
commit 9642b12
Showing
4 changed files
with
67 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,34 @@ | ||
{ | ||
"transform.reset_transform": { | ||
"documentation": { | ||
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/current/reset-transform.html", | ||
"description": "Resets an existing transform." | ||
}, | ||
"stability": "stable", | ||
"visibility": "public", | ||
"headers": { | ||
"accept": ["application/json"] | ||
}, | ||
"url": { | ||
"paths": [ | ||
{ | ||
"path": "/_transform/{transform_id}/_reset", | ||
"methods": ["POST"], | ||
"parts": { | ||
"transform_id": { | ||
"type": "string", | ||
"description": "The id of the transform to reset" | ||
} | ||
} | ||
} | ||
] | ||
}, | ||
"params": { | ||
"force": { | ||
"type": "boolean", | ||
"required": false, | ||
"description": "When `true`, the transform is reset regardless of its current state. The default value is `false`, meaning that the transform must be `stopped` before it can be reset." | ||
} | ||
} | ||
} | ||
} |