|
@@ -0,0 +1,46 @@
|
|
|
+{
|
|
|
+ "cat.recovery": {
|
|
|
+ "documentation": "http://www.elasticsearch.org/guide/en/elasticsearch/reference/master/cat-recovery.html",
|
|
|
+ "methods": ["GET"],
|
|
|
+ "url": {
|
|
|
+ "path": "/_cat/recovery",
|
|
|
+ "paths": ["/_cat/recovery", "/_cat/recovery/{index}"],
|
|
|
+ "parts": {
|
|
|
+ "index": {
|
|
|
+ "type" : "list",
|
|
|
+ "description": "A comma-separated list of index names to limit the returned information"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "params": {
|
|
|
+ "bytes": {
|
|
|
+ "type": "enum",
|
|
|
+ "description" : "The unit in which to display byte values",
|
|
|
+ "options": [ "b", "k", "m", "g" ]
|
|
|
+ },
|
|
|
+ "local": {
|
|
|
+ "type" : "boolean",
|
|
|
+ "description" : "Return local information, do not retrieve the state from master node (default: false)"
|
|
|
+ },
|
|
|
+ "master_timeout": {
|
|
|
+ "type" : "time",
|
|
|
+ "description" : "Explicit operation timeout for connection to master node"
|
|
|
+ },
|
|
|
+ "h": {
|
|
|
+ "type": "list",
|
|
|
+ "description" : "Comma-separated list of column names to display"
|
|
|
+ },
|
|
|
+ "help": {
|
|
|
+ "type": "boolean",
|
|
|
+ "description": "Return help information",
|
|
|
+ "default": false
|
|
|
+ },
|
|
|
+ "v": {
|
|
|
+ "type": "boolean",
|
|
|
+ "description": "Verbose mode. Display column headers",
|
|
|
+ "default": false
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "body": null
|
|
|
+ }
|
|
|
+}
|