-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathingest.simulate.json
43 lines (43 loc) · 1.08 KB
/
ingest.simulate.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"ingest.simulate": {
"documentation": {
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/simulate-pipeline-api.html",
"description": "Allows to simulate a pipeline with example documents."
},
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"],
"content_type": ["application/json"]
},
"url": {
"paths": [
{
"path": "/_ingest/pipeline/_simulate",
"methods": ["GET", "POST"]
},
{
"path": "/_ingest/pipeline/{id}/_simulate",
"methods": ["GET", "POST"],
"parts": {
"id": {
"type": "string",
"description": "Pipeline ID"
}
}
}
]
},
"params": {
"verbose": {
"type": "boolean",
"description": "Verbose mode. Display data output for each processor in executed pipeline",
"default": false
}
},
"body": {
"description": "The simulate definition",
"required": true
}
}
}