You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "The terms enum API can be used to discover terms in the index that begin with the provided string. It is designed for low-latency look-ups used in auto-complete scenarios."
6
+
},
7
+
"stability":"beta",
8
+
"visibility":"public",
9
+
"headers":{
10
+
"accept": [ "application/json"],
11
+
"content_type": ["application/json"]
12
+
},
13
+
"url":{
14
+
"paths":[
15
+
{
16
+
"path": "/{index}/_terms_enum",
17
+
"methods": [
18
+
"GET",
19
+
"POST"
20
+
],
21
+
"parts": {
22
+
"index": {
23
+
"type": "list",
24
+
"description": "A comma-separated list of index names to search; use `_all` or empty string to perform the operation on all indices"
25
+
}
26
+
}
27
+
}
28
+
]
29
+
},
30
+
"params":{},
31
+
"body":{
32
+
"description":"field name, string which is the prefix expected in matching terms, timeout and size for max number of results"
Copy file name to clipboardExpand all lines: src/Elasticsearch.Net/Api/RequestParameters/RequestParameters.NoNamespace.cs
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2047,6 +2047,13 @@ public bool? TypedKeys
2047
2047
}
2048
2048
}
2049
2049
2050
+
///<summary>Request options for Termsenum <para>https://www.elastic.co/guide/en/elasticsearch/reference/current/search-terms-enum.html</para></summary>
///<summary>Request options for TermVectors <para>https://www.elastic.co/guide/en/elasticsearch/reference/master/docs-termvectors.html</para></summary>
///<summary>POST on /{index}/_terms_enum <para>https://www.elastic.co/guide/en/elasticsearch/reference/current/search-terms-enum.html</para></summary>
1248
+
///<param name = "index">A comma-separated list of index names to search; use the special string `_all` or Indices.All to perform the operation on all indices</param>
1249
+
///<param name = "body">field name, string which is the prefix expected in matching terms, timeout and size for max number of results</param>
1250
+
///<param name = "requestParameters">Request specific configuration such as querystring parameters & request specific connection settings.</param>
1251
+
///<remarks>Note: Beta within the Elasticsearch server, this functionality is in Beta and is subject to change. The design and code is less mature than official GA features and is being provided as-is with no warranties. Beta features are not subject to the support SLA of official GA features. This functionality is subject to potential breaking changes within a minor version, meaning that your referencing code may break when this library is upgraded.</remarks>
///<summary>POST on /{index}/_terms_enum <para>https://www.elastic.co/guide/en/elasticsearch/reference/current/search-terms-enum.html</para></summary>
1255
+
///<param name = "index">A comma-separated list of index names to search; use the special string `_all` or Indices.All to perform the operation on all indices</param>
1256
+
///<param name = "body">field name, string which is the prefix expected in matching terms, timeout and size for max number of results</param>
1257
+
///<param name = "requestParameters">Request specific configuration such as querystring parameters & request specific connection settings.</param>
1258
+
///<remarks>Note: Beta within the Elasticsearch server, this functionality is in Beta and is subject to change. The design and code is less mature than official GA features and is being provided as-is with no warranties. Beta features are not subject to the support SLA of official GA features. This functionality is subject to potential breaking changes within a minor version, meaning that your referencing code may break when this library is upgraded.</remarks>
///<summary>POST on /{index}/_termvectors/{id} <para>https://www.elastic.co/guide/en/elasticsearch/reference/master/docs-termvectors.html</para></summary>
1248
1263
///<param name = "index">The index in which the document resides.</param>
1249
1264
///<param name = "id">The id of the document, when not specified a doc param should be supplied.</param>
///<summary>POST on /{index}/_terms_enum <para>https://www.elastic.co/guide/en/elasticsearch/reference/current/search-terms-enum.html</para></summary>
1067
+
///<param name = "index">A comma-separated list of index names to search; use the special string `_all` or Indices.All to perform the operation on all indices</param>
1068
+
///<param name = "body">field name, string which is the prefix expected in matching terms, timeout and size for max number of results</param>
1069
+
///<param name = "requestParameters">Request specific configuration such as querystring parameters & request specific connection settings.</param>
1070
+
///<remarks>Note: Beta within the Elasticsearch server, this functionality is in Beta and is subject to change. The design and code is less mature than official GA features and is being provided as-is with no warranties. Beta features are not subject to the support SLA of official GA features. This functionality is subject to potential breaking changes within a minor version, meaning that your referencing code may break when this library is upgraded.</remarks>
///<summary>POST on /{index}/_terms_enum <para>https://www.elastic.co/guide/en/elasticsearch/reference/current/search-terms-enum.html</para></summary>
1074
+
///<param name = "index">A comma-separated list of index names to search; use the special string `_all` or Indices.All to perform the operation on all indices</param>
1075
+
///<param name = "body">field name, string which is the prefix expected in matching terms, timeout and size for max number of results</param>
1076
+
///<param name = "requestParameters">Request specific configuration such as querystring parameters & request specific connection settings.</param>
1077
+
///<remarks>Note: Beta within the Elasticsearch server, this functionality is in Beta and is subject to change. The design and code is less mature than official GA features and is being provided as-is with no warranties. Beta features are not subject to the support SLA of official GA features. This functionality is subject to potential breaking changes within a minor version, meaning that your referencing code may break when this library is upgraded.</remarks>
///<summary>POST on /{index}/_termvectors/{id} <para>https://www.elastic.co/guide/en/elasticsearch/reference/master/docs-termvectors.html</para></summary>
1067
1081
///<param name = "index">The index in which the document resides.</param>
1068
1082
///<param name = "id">The id of the document, when not specified a doc param should be supplied.</param>
0 commit comments