-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathindices.get_data_stream_options.json
44 lines (44 loc) · 1.35 KB
/
indices.get_data_stream_options.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
{
"indices.get_data_stream_options": {
"documentation": {
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/current/index.html",
"description": "Returns the data stream options of the selected data streams."
},
"stability": "experimental",
"visibility": "feature_flag",
"feature_flag": "es.failure_store_feature_flag_enabled",
"headers": {
"accept": ["application/json"]
},
"url": {
"paths": [
{
"path": "/_data_stream/{name}/_options",
"methods": ["GET"],
"parts": {
"name": {
"type": "list",
"description": "A comma-separated list of data streams to get; use `*` to get all data streams"
}
}
}
]
},
"params": {
"expand_wildcards": {
"type": "enum",
"options": ["open", "closed", "hidden", "none", "all"],
"default": "open",
"description": "Whether wildcard expressions should get expanded to open or closed indices (default: open)"
},
"include_defaults": {
"type": "boolean",
"description": "Return all relevant default configurations for the data stream (default: false)"
},
"master_timeout": {
"type": "time",
"description": "Specify timeout for connection to master"
}
}
}
}