@@ -934,9 +934,10 @@ async def delete_index_template(
934
934
timeout : t .Optional [t .Union ["t.Literal[-1]" , "t.Literal[0]" , str ]] = None ,
935
935
) -> ObjectApiResponse [t .Any ]:
936
936
"""
937
- The provided <index-template> may contain multiple template names separated by
938
- a comma. If multiple template names are specified then there is no wildcard support
939
- and the provided names should match completely with existing templates.
937
+ Delete an index template. The provided <index-template> may contain multiple
938
+ template names separated by a comma. If multiple template names are specified
939
+ then there is no wildcard support and the provided names should match completely
940
+ with existing templates.
940
941
941
942
`<https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-delete-template.html>`_
942
943
@@ -1396,7 +1397,8 @@ async def exists_template(
1396
1397
pretty : t .Optional [bool ] = None ,
1397
1398
) -> HeadApiResponse :
1398
1399
"""
1399
- Returns information about whether a particular index template exists.
1400
+ Check existence of index templates. Returns information about whether a particular
1401
+ index template exists.
1400
1402
1401
1403
`<https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-template-exists-v1.html>`_
1402
1404
@@ -2160,7 +2162,7 @@ async def get_index_template(
2160
2162
pretty : t .Optional [bool ] = None ,
2161
2163
) -> ObjectApiResponse [t .Any ]:
2162
2164
"""
2163
- Returns information about one or more index templates.
2165
+ Get index templates. Returns information about one or more index templates.
2164
2166
2165
2167
`<https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-get-template.html>`_
2166
2168
@@ -2412,7 +2414,7 @@ async def get_template(
2412
2414
pretty : t .Optional [bool ] = None ,
2413
2415
) -> ObjectApiResponse [t .Any ]:
2414
2416
"""
2415
- Retrieves information about one or more index templates.
2417
+ Get index templates. Retrieves information about one or more index templates.
2416
2418
2417
2419
`<https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-get-template-v1.html>`_
2418
2420
@@ -2924,7 +2926,7 @@ async def put_index_template(
2924
2926
body : t .Optional [t .Dict [str , t .Any ]] = None ,
2925
2927
) -> ObjectApiResponse [t .Any ]:
2926
2928
"""
2927
- Creates or updates an index template. Index templates define settings, mappings,
2929
+ Create or update an index template. Index templates define settings, mappings,
2928
2930
and aliases that can be applied automatically to new indices.
2929
2931
2930
2932
`<https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-put-template.html>`_
@@ -3326,7 +3328,7 @@ async def put_template(
3326
3328
body : t .Optional [t .Dict [str , t .Any ]] = None ,
3327
3329
) -> ObjectApiResponse [t .Any ]:
3328
3330
"""
3329
- Creates or updates an index template. Index templates define settings, mappings,
3331
+ Create or update an index template. Index templates define settings, mappings,
3330
3332
and aliases that can be applied automatically to new indices.
3331
3333
3332
3334
`<https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-templates-v1.html>`_
@@ -4081,7 +4083,8 @@ async def simulate_index_template(
4081
4083
pretty : t .Optional [bool ] = None ,
4082
4084
) -> ObjectApiResponse [t .Any ]:
4083
4085
"""
4084
-
4086
+ Simulate an index. Returns the index configuration that would be applied to the
4087
+ specified index from an existing index template.
4085
4088
4086
4089
`<https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-simulate-index.html>`_
4087
4090
@@ -4160,7 +4163,8 @@ async def simulate_template(
4160
4163
body : t .Optional [t .Dict [str , t .Any ]] = None ,
4161
4164
) -> ObjectApiResponse [t .Any ]:
4162
4165
"""
4163
- Returns the index configuration that would be applied by a particular index template.
4166
+ Simulate an index template. Returns the index configuration that would be applied
4167
+ by a particular index template.
4164
4168
4165
4169
`<https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-simulate-template.html>`_
4166
4170
0 commit comments