update elastic permission file
This commit is contained in:
parent
80bee4cc3f
commit
4cced9474e
|
@ -7,6 +7,9 @@
|
|||
{"name": "cat.indices", "methods": ["get"],
|
||||
"path": "_cat/indices"
|
||||
},
|
||||
{"name": "cat.indices", "methods": ["get"],
|
||||
"path": "_cat/indices/:target"
|
||||
},
|
||||
{"name": "cat.help", "methods": ["get"],
|
||||
"path": "_cat/help"
|
||||
},
|
||||
|
@ -28,9 +31,15 @@
|
|||
{"name": "cat.shards", "methods": ["get"],
|
||||
"path": "_cat/shards"
|
||||
},
|
||||
{"name": "cat.shards", "methods": ["get"],
|
||||
"path": "_cat/shards/:target"
|
||||
},
|
||||
{"name": "cat.aliases", "methods": ["get"],
|
||||
"path": "_cat/aliases"
|
||||
},
|
||||
{"name": "cat.aliases", "methods": ["get"],
|
||||
"path": "_cat/aliases/:name"
|
||||
},
|
||||
{"name": "cat.nodeattrs", "methods": ["get"],
|
||||
"path": "_cat/nodeattrs"
|
||||
},
|
||||
|
@ -269,6 +278,9 @@
|
|||
{"name": "indices.field_caps", "methods":["get", "post"],
|
||||
"path": "/:index_name/_field_caps"
|
||||
},
|
||||
{"name": "indices.exists_template", "methods":["get"],
|
||||
"path": "/_template/:name"
|
||||
},
|
||||
{"name": "doc.*", "methods": ["*"],
|
||||
"path": "/:index_name/:doctype"
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue