Skip to content

Commit

Permalink
Revert "Added autocomplete suggestions for 7.10 (#78893)" (#85509)
Browse files Browse the repository at this point in the history
This reverts commit 5e91f6f.
  • Loading branch information
cjcenizal authored Dec 11, 2020
1 parent e3f2c37 commit 1ff75db
Show file tree
Hide file tree
Showing 111 changed files with 106 additions and 739 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@
"_source": [],
"_source_excludes": [],
"_source_includes": [],
"pipeline": "",
"require_alias": "__flag__"
"pipeline": ""
},
"methods": [
"POST",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"patterns": [
"_search/scroll"
],
"documentation": "https://www.elastic.co/guide/en/elasticsearch/reference/current/clear-scroll-api.html"
"documentation": "https://www.elastic.co/guide/en/elasticsearch/reference/master/search-request-body.html#_clear_scroll_api"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
"patterns": [
"_component_template/{name}"
],
"documentation": "https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-component-template.html"
"documentation": "https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-component-templates.html"
}
}

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@
],
"patterns": [
"_count",
"{indices}/_count"
"{indices}/_count",
"{indices}/{type}/_count"
],
"documentation": "https://www.elastic.co/guide/en/elasticsearch/reference/master/search-count.html"
}
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@
"POST"
],
"patterns": [
"{indices}/_delete_by_query"
"{indices}/_delete_by_query",
"{indices}/{type}/_delete_by_query"
],
"documentation": "https://www.elastic.co/guide/en/elasticsearch/reference/master/docs-delete-by-query.html"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
"HEAD"
],
"patterns": [
"{indices}/_doc/{id}"
"{indices}/_doc/{id}",
"{indices}/{type}/{id}"
],
"documentation": "https://www.elastic.co/guide/en/elasticsearch/reference/master/docs-get.html"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
"POST"
],
"patterns": [
"{indices}/_explain/{id}"
"{indices}/_explain/{id}",
"{indices}/{type}/{id}/_explain"
],
"documentation": "https://www.elastic.co/guide/en/elasticsearch/reference/master/search-explain.html"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
"GET"
],
"patterns": [
"{indices}/_doc/{id}"
"{indices}/_doc/{id}",
"{indices}/{type}/{id}"
],
"documentation": "https://www.elastic.co/guide/en/elasticsearch/reference/master/docs-get.html"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
],
"patterns": [
"_script_context"
],
"documentation": "https://www.elastic.co/guide/en/elasticsearch/painless/master/painless-contexts.html"
]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
],
"patterns": [
"_script_language"
],
"documentation": "https://www.elastic.co/guide/en/elasticsearch/reference/master/modules-scripting.html"
]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
"GET"
],
"patterns": [
"{indices}/_source/{id}"
"{indices}/_source/{id}",
"{indices}/{type}/{id}/_source"
],
"documentation": "https://www.elastic.co/guide/en/elasticsearch/reference/master/docs-get.html"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,17 @@
],
"if_seq_no": "",
"if_primary_term": "",
"pipeline": "",
"require_alias": "__flag__"
"pipeline": ""
},
"methods": [
"PUT",
"POST"
],
"patterns": [
"{indices}/_doc/{id}",
"{indices}/_doc"
"{indices}/_doc",
"{indices}/{type}",
"{indices}/{type}/{id}"
],
"documentation": "https://www.elastic.co/guide/en/elasticsearch/reference/master/docs-index_.html"
}
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,14 @@
"all"
]
},
"methods": [],
"patterns": [],
"methods": [
"POST",
"GET"
],
"patterns": [
"_flush/synced",
"{indices}/_flush/synced"
],
"documentation": "https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-synced-flush-api.html"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@
],
"patterns": [
"_mapping/field/{fields}",
"{indices}/_mapping/field/{fields}"
"{indices}/_mapping/field/{fields}",
"_mapping/{type}/field/{fields}",
"{indices}/_mapping/{type}/field/{fields}"
],
"documentation": "https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-get-field-mapping.html"
}
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@
],
"patterns": [
"_mapping",
"{indices}/_mapping"
"{indices}/_mapping",
"_mapping/{type}",
"{indices}/_mapping/{type}"
],
"documentation": "https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-get-mapping.html"
}
Expand Down

This file was deleted.

Loading

0 comments on commit 1ff75db

Please sign in to comment.