@@ -672,9 +672,10 @@ async def delete_index_template(
672
672
timeout : t .Optional [t .Union ["t.Literal[-1]" , "t.Literal[0]" , str ]] = None ,
673
673
) -> ObjectApiResponse [t .Any ]:
674
674
"""
675
- The provided <index-template> may contain multiple template names separated by
676
- a comma. If multiple template names are specified then there is no wildcard support
677
- and the provided names should match completely with existing templates.
675
+ Delete an index template. The provided <index-template> may contain multiple
676
+ template names separated by a comma. If multiple template names are specified
677
+ then there is no wildcard support and the provided names should match completely
678
+ with existing templates.
678
679
679
680
`<https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-delete-template.html>`_
680
681
@@ -1298,7 +1299,7 @@ async def get_index_template(
1298
1299
pretty : t .Optional [bool ] = None ,
1299
1300
) -> ObjectApiResponse [t .Any ]:
1300
1301
"""
1301
- Returns information about one or more index templates.
1302
+ Get index templates. Returns information about one or more index templates.
1302
1303
1303
1304
`<https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-get-template.html>`_
1304
1305
@@ -1868,7 +1869,7 @@ async def put_index_template(
1868
1869
body : t .Optional [t .Dict [str , t .Any ]] = None ,
1869
1870
) -> ObjectApiResponse [t .Any ]:
1870
1871
"""
1871
- Creates or updates an index template. Index templates define settings, mappings,
1872
+ Create or update an index template. Index templates define settings, mappings,
1872
1873
and aliases that can be applied automatically to new indices.
1873
1874
1874
1875
`<https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-put-template.html>`_
@@ -2270,7 +2271,7 @@ async def put_template(
2270
2271
body : t .Optional [t .Dict [str , t .Any ]] = None ,
2271
2272
) -> ObjectApiResponse [t .Any ]:
2272
2273
"""
2273
- Creates or updates an index template. Index templates define settings, mappings,
2274
+ Create or update an index template. Index templates define settings, mappings,
2274
2275
and aliases that can be applied automatically to new indices.
2275
2276
2276
2277
`<https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-templates-v1.html>`_
@@ -2592,7 +2593,8 @@ async def simulate_index_template(
2592
2593
pretty : t .Optional [bool ] = None ,
2593
2594
) -> ObjectApiResponse [t .Any ]:
2594
2595
"""
2595
-
2596
+ Simulate an index. Returns the index configuration that would be applied to the
2597
+ specified index from an existing index template.
2596
2598
2597
2599
`<https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-simulate-index.html>`_
2598
2600
@@ -2671,7 +2673,8 @@ async def simulate_template(
2671
2673
body : t .Optional [t .Dict [str , t .Any ]] = None ,
2672
2674
) -> ObjectApiResponse [t .Any ]:
2673
2675
"""
2674
- Returns the index configuration that would be applied by a particular index template.
2676
+ Simulate an index template. Returns the index configuration that would be applied
2677
+ by a particular index template.
2675
2678
2676
2679
`<https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-simulate-template.html>`_
2677
2680
0 commit comments