-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathsql.get_async.json
47 lines (47 loc) · 1.24 KB
/
sql.get_async.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
44
45
46
47
{
"sql.get_async": {
"documentation": {
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/get-async-sql-search-api.html",
"description": "Returns the current status and available results for an async SQL search or stored synchronous SQL search"
},
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"]
},
"url": {
"paths": [
{
"path": "/_sql/async/{id}",
"methods": ["GET"],
"parts": {
"id": {
"type": "string",
"description": "The async search ID"
}
}
}
]
},
"params": {
"delimiter": {
"type": "string",
"description": "Separator for CSV results",
"default": ","
},
"format": {
"type": "string",
"description": "Short version of the Accept header, e.g. json, yaml"
},
"keep_alive": {
"type": "time",
"description": "Retention period for the search and its results",
"default": "5d"
},
"wait_for_completion_timeout": {
"type": "time",
"description": "Duration to wait for complete results"
}
}
}
}