[api] regenerate

This commit is contained in:
spalger
2016-10-26 17:52:54 -07:00
parent b526bb05e7
commit 6bff09108b
16 changed files with 25475 additions and 796 deletions

File diff suppressed because it is too large Load Diff

View File

@ -229,7 +229,7 @@ Options:::
`timestamp`::
`Date, Number` -- Explicit timestamp for the document
`ttl`::
`Duration` -- Expiration time for the document
`Date, Number` -- Expiration time for the document
`version`::
`Number` -- Explicit version number for concurrency control
`versionType`::
@ -713,7 +713,7 @@ Options:::
`timestamp`::
`Date, Number` -- Explicit timestamp for the document
`ttl`::
`Duration` -- Expiration time for the document
`Date, Number` -- Expiration time for the document
`version`::
`Number` -- Explicit version number for concurrency control
`versionType`::
@ -1105,7 +1105,7 @@ client.search({
[horizontal]
`scroll`::
`Duration` -- Specify how long a consistent view of the index should be maintained for scrolled search
`Date, Number` -- Specify how long a consistent view of the index should be maintained for scrolled search
`scrollId`::
`String` -- The scroll ID
@ -1203,7 +1203,7 @@ Options:::
`routing`::
`String, String[], Boolean` -- A comma-separated list of specific routing values
`scroll`::
`Duration` -- Specify how long a consistent view of the index should be maintained for scrolled search
`Date, Number` -- Specify how long a consistent view of the index should be maintained for scrolled search
`searchType`::
`String` -- Search operation type
Options:::
@ -1240,7 +1240,7 @@ Options:::
`suggestSize`::
`Number` -- How many suggestions to return in response
`suggestText`::
`Text` -- The source text for which the suggestions should be returned
`String` -- The source text for which the suggestions should be returned
`timeout`::
`Date, Number` -- Explicit operation timeout
`version`::
@ -1437,13 +1437,13 @@ Options:::
`routing`::
`String` -- Specific routing value
`script`::
`Anything` -- The URL-encoded script definition (instead of using request body)
`String` -- The URL-encoded script definition (instead of using request body)
`timeout`::
`Date, Number` -- Explicit operation timeout
`timestamp`::
`Date, Number` -- Explicit timestamp for the document
`ttl`::
`Duration` -- Expiration time for the document
`Date, Number` -- Expiration time for the document
`version`::
`Number` -- Explicit version number for concurrency control
`versionType`::

View File

@ -308,7 +308,7 @@ Options:::
`timestamp`::
`Date, Number` -- Explicit timestamp for the document
`ttl`::
`Duration` -- Expiration time for the document
`Date, Number` -- Expiration time for the document
`version`::
`Number` -- Explicit version number for concurrency control
`versionType`::
@ -987,7 +987,7 @@ Options:::
`timestamp`::
`Date, Number` -- Explicit timestamp for the document
`ttl`::
`Duration` -- Expiration time for the document
`Date, Number` -- Expiration time for the document
`version`::
`Number` -- Explicit version number for concurrency control
`versionType`::
@ -1295,8 +1295,6 @@ The default method is `POST` and the usual <<api-conventions,params and return v
`String` -- The index in which the document resides.
`type`::
`String` -- The type of the document.
`id`::
`String` -- The id of the document.
link:#[back to top]
@ -1584,7 +1582,7 @@ client.search({
[horizontal]
`scroll`::
`Duration` -- Specify how long a consistent view of the index should be maintained for scrolled search
`Date, Number` -- Specify how long a consistent view of the index should be maintained for scrolled search
`scrollId`::
`String` -- The scroll ID
@ -1688,7 +1686,7 @@ Options:::
`routing`::
`String, String[], Boolean` -- A comma-separated list of specific routing values
`scroll`::
`Duration` -- Specify how long a consistent view of the index should be maintained for scrolled search
`Date, Number` -- Specify how long a consistent view of the index should be maintained for scrolled search
`searchType`::
`String` -- Search operation type
Options:::
@ -1723,7 +1721,7 @@ Options:::
`suggestSize`::
`Number` -- How many suggestions to return in response
`suggestText`::
`Text` -- The source text for which the suggestions should be returned
`String` -- The source text for which the suggestions should be returned
`timeout`::
`Date, Number` -- Explicit operation timeout
`trackScores`::
@ -1878,7 +1876,7 @@ Options:::
`routing`::
`String, String[], Boolean` -- A comma-separated list of specific routing values
`scroll`::
`Duration` -- Specify how long a consistent view of the index should be maintained for scrolled search
`Date, Number` -- Specify how long a consistent view of the index should be maintained for scrolled search
`searchType`::
`String` -- Search operation type
Options:::
@ -2130,9 +2128,9 @@ Options:::
`routing`::
`String` -- Specific routing value
`script`::
`Anything` -- The URL-encoded script definition (instead of using request body)
`String` -- The URL-encoded script definition (instead of using request body)
`scriptId`::
`Anything` -- The id of a stored script
`String` -- The id of a stored script
`scriptedUpsert`::
`Boolean` -- True if the script referenced in script or script_id should be called to perform inserts - defaults to false
`timeout`::
@ -2140,7 +2138,7 @@ Options:::
`timestamp`::
`Date, Number` -- Explicit timestamp for the document
`ttl`::
`Duration` -- Expiration time for the document
`Date, Number` -- Expiration time for the document
`version`::
`Number` -- Explicit version number for concurrency control
`versionType`::

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -51,9 +51,11 @@ Default in Node:::
+
WARNING: This default will track the latest version of Elasticsearch, and is only intended to be used during development. It is highly recommended that you set this parameter in all code that is headed to production.
Default ::: `'2.3'`
Default ::: `'5.0'`
Options in node :::
* `'5.0'`
* `'2.4'`
* `'2.3'`
* `'2.2'`
* `'2.1'`
@ -67,16 +69,16 @@ Options in node :::
* `'1.1'`
* `'1.0'`
* `'0.90'`
* `'2.4'` (unstable)
* `'5.x'` (unstable)
* `'master'` (unstable)
Options in the browser :::
* `'5.0'`
* `'2.4'`
* `'2.3'`
* `'2.2'`
* `'2.1'`
* `'2.0'`
* `'1.7'`
* `'2.4'` (unstable)
* `'5.x'` (unstable)
* `'master'` (unstable)

View File

@ -22,6 +22,10 @@ include::development.asciidoc[]
include::api_methods.asciidoc[]
include::api_methods_2_4.asciidoc[]
include::api_methods_2_3.asciidoc[]
include::api_methods_2_2.asciidoc[]
include::api_methods_2_1.asciidoc[]