Files
elasticsearch-js/docs/reference-shared-types--global-terms-enum.asciidoc
2024-12-05 14:46:52 -06:00

73 lines
3.8 KiB
Plaintext

[[reference-shared-types--global-terms-enum]]
////////
===========================================================================================================================
|| ||
|| ||
|| ||
|| ██████╗ ███████╗ █████╗ ██████╗ ███╗ ███╗███████╗ ||
|| ██╔══██╗██╔════╝██╔══██╗██╔══██╗████╗ ████║██╔════╝ ||
|| ██████╔╝█████╗ ███████║██║ ██║██╔████╔██║█████╗ ||
|| ██╔══██╗██╔══╝ ██╔══██║██║ ██║██║╚██╔╝██║██╔══╝ ||
|| ██║ ██║███████╗██║ ██║██████╔╝██║ ╚═╝ ██║███████╗ ||
|| ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝╚══════╝ ||
|| ||
|| ||
|| This file is autogenerated, DO NOT send pull requests that changes this file directly. ||
|| You should update the script that does the generation, which can be found in: ||
|| https://github.com/elastic/elastic-client-generator-js ||
|| ||
|| You can run the script with the following command: ||
|| npm run elasticsearch -- --version <version> ||
|| ||
|| ||
|| ||
===========================================================================================================================
////////
== Shared TermsEnum types
[discrete]
[[TermsEnumRequest]]
=== TermsEnumRequest
[pass]
++++
<pre>
++++
interface TermsEnumRequest extends <<RequestBase>> {
index: <<IndexName>>
field: <<Field>>
size?: <<integer>>
timeout?: <<Duration>>
case_insensitive?: boolean
index_filter?: <<QueryDslQueryContainer>>
string?: string
search_after?: string
}
[pass]
++++
</pre>
++++
[discrete]
[[TermsEnumResponse]]
=== TermsEnumResponse
[pass]
++++
<pre>
++++
interface TermsEnumResponse {
_shards: <<ShardStatistics>>
terms: string[]
complete: boolean
}
[pass]
++++
</pre>
++++