diff --git a/elasticsearch_serverless/_async/client/indices.py b/elasticsearch_serverless/_async/client/indices.py index dd13182..c372441 100644 --- a/elasticsearch_serverless/_async/client/indices.py +++ b/elasticsearch_serverless/_async/client/indices.py @@ -672,9 +672,10 @@ async def delete_index_template( timeout: t.Optional[t.Union["t.Literal[-1]", "t.Literal[0]", str]] = None, ) -> ObjectApiResponse[t.Any]: """ - The provided may contain multiple template names separated by - a comma. If multiple template names are specified then there is no wildcard support - and the provided names should match completely with existing templates. + Delete an index template. The provided may contain multiple + template names separated by a comma. If multiple template names are specified + then there is no wildcard support and the provided names should match completely + with existing templates. ``_ @@ -1298,7 +1299,7 @@ async def get_index_template( pretty: t.Optional[bool] = None, ) -> ObjectApiResponse[t.Any]: """ - Returns information about one or more index templates. + Get index templates. Returns information about one or more index templates. ``_ @@ -1868,7 +1869,7 @@ async def put_index_template( body: t.Optional[t.Dict[str, t.Any]] = None, ) -> ObjectApiResponse[t.Any]: """ - Creates or updates an index template. Index templates define settings, mappings, + Create or update an index template. Index templates define settings, mappings, and aliases that can be applied automatically to new indices. ``_ @@ -2270,7 +2271,7 @@ async def put_template( body: t.Optional[t.Dict[str, t.Any]] = None, ) -> ObjectApiResponse[t.Any]: """ - Creates or updates an index template. Index templates define settings, mappings, + Create or update an index template. Index templates define settings, mappings, and aliases that can be applied automatically to new indices. ``_ @@ -2592,7 +2593,8 @@ async def simulate_index_template( pretty: t.Optional[bool] = None, ) -> ObjectApiResponse[t.Any]: """ - + Simulate an index. Returns the index configuration that would be applied to the + specified index from an existing index template. ``_ @@ -2671,7 +2673,8 @@ async def simulate_template( body: t.Optional[t.Dict[str, t.Any]] = None, ) -> ObjectApiResponse[t.Any]: """ - Returns the index configuration that would be applied by a particular index template. + Simulate an index template. Returns the index configuration that would be applied + by a particular index template. ``_ diff --git a/elasticsearch_serverless/_sync/client/indices.py b/elasticsearch_serverless/_sync/client/indices.py index fba6bf6..30ee227 100644 --- a/elasticsearch_serverless/_sync/client/indices.py +++ b/elasticsearch_serverless/_sync/client/indices.py @@ -672,9 +672,10 @@ def delete_index_template( timeout: t.Optional[t.Union["t.Literal[-1]", "t.Literal[0]", str]] = None, ) -> ObjectApiResponse[t.Any]: """ - The provided may contain multiple template names separated by - a comma. If multiple template names are specified then there is no wildcard support - and the provided names should match completely with existing templates. + Delete an index template. The provided may contain multiple + template names separated by a comma. If multiple template names are specified + then there is no wildcard support and the provided names should match completely + with existing templates. ``_ @@ -1298,7 +1299,7 @@ def get_index_template( pretty: t.Optional[bool] = None, ) -> ObjectApiResponse[t.Any]: """ - Returns information about one or more index templates. + Get index templates. Returns information about one or more index templates. ``_ @@ -1868,7 +1869,7 @@ def put_index_template( body: t.Optional[t.Dict[str, t.Any]] = None, ) -> ObjectApiResponse[t.Any]: """ - Creates or updates an index template. Index templates define settings, mappings, + Create or update an index template. Index templates define settings, mappings, and aliases that can be applied automatically to new indices. ``_ @@ -2270,7 +2271,7 @@ def put_template( body: t.Optional[t.Dict[str, t.Any]] = None, ) -> ObjectApiResponse[t.Any]: """ - Creates or updates an index template. Index templates define settings, mappings, + Create or update an index template. Index templates define settings, mappings, and aliases that can be applied automatically to new indices. ``_ @@ -2592,7 +2593,8 @@ def simulate_index_template( pretty: t.Optional[bool] = None, ) -> ObjectApiResponse[t.Any]: """ - + Simulate an index. Returns the index configuration that would be applied to the + specified index from an existing index template. ``_ @@ -2671,7 +2673,8 @@ def simulate_template( body: t.Optional[t.Dict[str, t.Any]] = None, ) -> ObjectApiResponse[t.Any]: """ - Returns the index configuration that would be applied by a particular index template. + Simulate an index template. Returns the index configuration that would be applied + by a particular index template. ``_