Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
    In the dev console, working with component_templates autocomplete will only provide suggestions for deleting them.  This set of fixes adds in support to autocomplete puts and gets for component templates
  • Loading branch information
joxley-elastic authored Feb 11, 2021
1 parent facdd55 commit 91df39b
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"indices.get_template": {
"url_params": {
"include_type_name": "__flag__",
"flat_settings": "__flag__",
"master_timeout": "",
"local": "__flag__"
},
"methods": [
"GET"
],
"patterns": [
"_component_template",
"_component_template/{name}"
],
"documentation": "https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-component-templates.html" }
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"indices.put_template": {
"url_params": {
"include_type_name": "__flag__",
"order": "",
"create": "__flag__",
"master_timeout": "",
"flat_settings": "__flag__"
},
"methods": [
"PUT"
],
"patterns": [
"_component_template/{name}"
],
"documentation": "https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-component-templates.html" }
}

0 comments on commit 91df39b

Please sign in to comment.