-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: dblock <[email protected]>
- Loading branch information
Showing
3 changed files
with
72 additions
and
25 deletions.
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
$schema: ../../../json_schemas/test_story.schema.yaml | ||
|
||
description: Test tasks endpoint. | ||
prologues: | ||
- path: /books/_delete_by_query | ||
id: task | ||
method: POST | ||
parameters: | ||
refresh: true | ||
conflicts: proceed | ||
wait_for_completion: false | ||
request: | ||
payload: | ||
query: | ||
match_all: {} | ||
output: | ||
id: payload.task | ||
chapters: | ||
- synopsis: List tasks grouped by node. | ||
path: /_tasks | ||
method: GET | ||
parameters: | ||
group_by: nodes | ||
- synopsis: List tasks grouped by parent. | ||
path: /_tasks | ||
method: GET | ||
parameters: | ||
group_by: parents | ||
- synopsis: List tasks grouped by none. | ||
path: /_tasks | ||
method: GET | ||
parameters: | ||
group_by: none | ||
- synopsis: Get task by id. | ||
id: task | ||
path: /_tasks/{task_id} | ||
method: GET | ||
parameters: | ||
task_id: ${task.id} |
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,33 @@ | ||
$schema: ../../../../json_schemas/test_story.schema.yaml | ||
|
||
description: Test tasks endpoint. | ||
prologues: | ||
- path: /books/_delete_by_query | ||
id: task | ||
method: POST | ||
parameters: | ||
refresh: true | ||
conflicts: proceed | ||
wait_for_completion: false | ||
request: | ||
payload: | ||
query: | ||
match_all: {} | ||
output: | ||
id: payload.task | ||
chapters: | ||
- synopsis: Cancel all tasks. | ||
path: /_tasks/_cancel | ||
method: POST | ||
- synopsis: Cancel a task. | ||
path: /_tasks/{task_id}/_cancel | ||
method: POST | ||
parameters: | ||
task_id: ${task.id} | ||
response: | ||
status: 200 | ||
payload: | ||
node_failures: | ||
- type: failed_node_exception | ||
caused_by: | ||
type: resource_not_found_exception |
This file was deleted.
Oops, something went wrong.