-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
1 parent
facdd55
commit 91df39b
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
...ns/console/server/lib/spec_definitions/json/generated/cluster.get_component_template.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" } | ||
} |
17 changes: 17 additions & 0 deletions
17
...ns/console/server/lib/spec_definitions/json/generated/cluster.put_component_template.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" } | ||
} |