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
:param index: Name of the index you wish to create.
659
+
:param index: Name of the index you wish to create. Index names must meet the
660
+
following criteria: * Lowercase only * Cannot include `\\`, `/`, `*`, `?`,
661
+
`"`, `<`, `>`, `|`, ` ` (space character), `,`, or `#` * Indices prior to
662
+
7.0 could contain a colon (`:`), but that has been deprecated and will not
663
+
be supported in later versions * Cannot start with `-`, `_`, or `+` * Cannot
664
+
be `.` or `..` * Cannot be longer than 255 bytes (note thtat it is bytes,
665
+
so multi-byte characters will reach the limit faster) * Names starting with
666
+
`.` are deprecated, except for hidden indices and internal indices managed
667
+
by plugins
660
668
:param aliases: Aliases for the index.
661
669
:param mappings: Mapping for fields in the index. If specified, this mapping
662
670
can include: - Field names - Field data types - Mapping parameters
@@ -1246,7 +1254,8 @@ async def delete_template(
1246
1254
"""
1247
1255
.. raw:: html
1248
1256
1249
-
<p>Delete a legacy index template.</p>
1257
+
<p>Delete a legacy index template.
1258
+
IMPORTANT: This documentation is about legacy index templates, which are deprecated and will be replaced by the composable templates introduced in Elasticsearch 7.8.</p>
Get information about one or more index templates.</p>
2885
2894
<p>IMPORTANT: This documentation is about legacy index templates, which are deprecated and will be replaced by the composable templates introduced in Elasticsearch 7.8.</p>
2886
2895
@@ -3973,7 +3982,7 @@ async def put_template(
3973
3982
"""
3974
3983
.. raw:: html
3975
3984
3976
-
<p>Create or update an index template.
3985
+
<p>Create or update a legacy index template.
3977
3986
Index templates define settings, mappings, and aliases that can be applied automatically to new indices.
3978
3987
Elasticsearch applies templates to new indices based on an index pattern that matches the index name.</p>
3979
3988
<p>IMPORTANT: This documentation is about legacy index templates, which are deprecated and will be replaced by the composable templates introduced in Elasticsearch 7.8.</p>
0 commit comments