-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathxpack.info.json
41 lines (41 loc) · 1.19 KB
/
xpack.info.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
{
"xpack.info": {
"documentation": {
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/current/info-api.html",
"description": "Retrieves information about the installed X-Pack features."
},
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"]
},
"url": {
"paths": [
{
"path": "/_xpack",
"methods": ["GET"]
}
]
},
"params": {
"human": {
"type": "boolean",
"required": false,
"description": "Defines whether additional human-readable information is included in the response. In particular, it adds descriptions and a tag line. The default value is true.",
"default": true
},
"categories": {
"type": "list",
"description": "Comma-separated list of info categories. Can be any of: build, license, features"
},
"accept_enterprise": {
"type": "boolean",
"description": "If this param is used it must be set to true",
"deprecated": {
"version": "8.0.0",
"description": "Supported for backwards compatibility with 7.x"
}
}
}
}
}