Files
elasticsearch-js/docs/reference-cat-component_templates.asciidoc

72 lines
4.3 KiB
Plaintext

[[reference-cat-component_templates]]
////////
===========================================================================================================================
|| ||
|| ||
|| ||
|| ██████╗ ███████╗ █████╗ ██████╗ ███╗ ███╗███████╗ ||
|| ██╔══██╗██╔════╝██╔══██╗██╔══██╗████╗ ████║██╔════╝ ||
|| ██████╔╝█████╗ ███████║██║ ██║██╔████╔██║█████╗ ||
|| ██╔══██╗██╔══╝ ██╔══██║██║ ██║██║╚██╔╝██║██╔══╝ ||
|| ██║ ██║███████╗██║ ██║██████╔╝██║ ╚═╝ ██║███████╗ ||
|| ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝╚══════╝ ||
|| ||
|| ||
|| 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> ||
|| ||
|| ||
|| ||
===========================================================================================================================
////////
[discrete]
[[client.cat.componentTemplates]]
=== client.cat.componentTemplates
Get component templates. Returns information about component templates in a cluster. Component templates are building blocks for constructing index templates that specify index mappings, settings, and aliases. CAT APIs are only intended for human consumption using the command line or Kibana console. They are not intended for use by applications. For application consumption, use the get component template API.
{ref}/cat-component-templates.html[{es} documentation]
[discrete]
==== Function signature
[source,ts]
----
(CatComponentTemplatesRequest, options?): Promise<CatComponentTemplatesResponse>
----
[discrete]
==== CatComponentTemplatesRequest
[pass]
++++
<pre>
++++
interface CatComponentTemplatesRequest extends <<CatCatRequestBase>> {
name?: string
}
[pass]
++++
</pre>
++++
[discrete]
==== CatComponentTemplatesResponse
[pass]
++++
<pre>
++++
type CatComponentTemplatesResponse = CatComponentTemplatesComponentTemplate[]
[pass]
++++
</pre>
++++