Files
elasticsearch-js/docs/reference-shared-types-synonyms-types.asciidoc
2024-12-05 14:46:53 -06:00

103 lines
4.6 KiB
Plaintext

[[reference-shared-types-synonyms-types]]
////////
===========================================================================================================================
|| ||
|| ||
|| ||
|| ██████╗ ███████╗ █████╗ ██████╗ ███╗ ███╗███████╗ ||
|| ██╔══██╗██╔════╝██╔══██╗██╔══██╗████╗ ████║██╔════╝ ||
|| ██████╔╝█████╗ ███████║██║ ██║██╔████╔██║█████╗ ||
|| ██╔══██╗██╔══╝ ██╔══██║██║ ██║██║╚██╔╝██║██╔══╝ ||
|| ██║ ██║███████╗██║ ██║██████╔╝██║ ╚═╝ ██║███████╗ ||
|| ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝╚══════╝ ||
|| ||
|| ||
|| 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 Synonyms types
[discrete]
[[SynonymsSynonymRule]]
=== SynonymsSynonymRule
[pass]
++++
<pre>
++++
interface SynonymsSynonymRule {
pass:[/**] @property id Synonym Rule identifier */
id?: <<Id>>
pass:[/**] @property synonyms Synonyms, in Solr format, that conform the synonym rule. See */
synonyms: <<SynonymsSynonymString>>
}
[pass]
++++
</pre>
++++
[discrete]
[[SynonymsSynonymRuleRead]]
=== SynonymsSynonymRuleRead
[pass]
++++
<pre>
++++
interface SynonymsSynonymRuleRead {
pass:[/**] @property id Synonym Rule identifier */
id: <<Id>>
pass:[/**] @property synonyms Synonyms, in Solr format, that conform the synonym rule. See */
synonyms: <<SynonymsSynonymString>>
}
[pass]
++++
</pre>
++++
[discrete]
[[SynonymsSynonymString]]
=== SynonymsSynonymString
[pass]
++++
<pre>
++++
type SynonymsSynonymString = string
[pass]
++++
</pre>
++++
[discrete]
[[SynonymsSynonymsUpdateResult]]
=== SynonymsSynonymsUpdateResult
[pass]
++++
<pre>
++++
interface SynonymsSynonymsUpdateResult {
pass:[/**] @property result Update operation result */
result: <<Result>>
pass:[/**] @property reload_analyzers_details Updating synonyms in a synonym set reloads the associated analyzers. This is the analyzers reloading result */
reload_analyzers_details: IndicesReloadSearchAnalyzersReloadResult
}
[pass]
++++
</pre>
++++