diff --git a/elasticsearch/client/data_frame.py b/elasticsearch/client/data_frame.py index cacf2539..83a871ab 100644 --- a/elasticsearch/client/data_frame.py +++ b/elasticsearch/client/data_frame.py @@ -9,7 +9,7 @@ class Data_FrameClient(NamespacedClient): @query_params() def delete_data_frame_transform(self, transform_id, params=None, headers=None): """ - ``_ + ``_ :arg transform_id: The id of the transform to delete """ @@ -27,7 +27,7 @@ class Data_FrameClient(NamespacedClient): @query_params("from_", "size") def get_data_frame_transform(self, transform_id=None, params=None, headers=None): """ - ``_ + ``_ :arg transform_id: The id or comma delimited list of id expressions of the transforms to get, '_all' or '*' implies get all transforms @@ -46,7 +46,7 @@ class Data_FrameClient(NamespacedClient): self, transform_id=None, params=None, headers=None ): """ - ``_ + ``_ :arg transform_id: The id of the transform for which to get stats. '_all' or '*' implies all transforms @@ -60,7 +60,7 @@ class Data_FrameClient(NamespacedClient): @query_params() def preview_data_frame_transform(self, body, params=None, headers=None): """ - ``_ + ``_ :arg body: The definition for the data_frame transform to preview """ @@ -77,7 +77,7 @@ class Data_FrameClient(NamespacedClient): @query_params() def put_data_frame_transform(self, transform_id, body, params=None, headers=None): """ - ``_ + ``_ :arg transform_id: The id of the new transform. :arg body: The data frame transform definition @@ -96,7 +96,7 @@ class Data_FrameClient(NamespacedClient): @query_params("timeout") def start_data_frame_transform(self, transform_id, params=None, headers=None): """ - ``_ + ``_ :arg transform_id: The id of the transform to start :arg timeout: Controls the time to wait for the transform to start @@ -115,7 +115,7 @@ class Data_FrameClient(NamespacedClient): @query_params("timeout", "wait_for_completion") def stop_data_frame_transform(self, transform_id, params=None, headers=None): """ - ``_ + ``_ :arg transform_id: The id of the transform to stop :arg timeout: Controls the time to wait until the transform has stopped. diff --git a/elasticsearch/client/deprecation.py b/elasticsearch/client/deprecation.py index 32651196..86e1d1ed 100644 --- a/elasticsearch/client/deprecation.py +++ b/elasticsearch/client/deprecation.py @@ -9,7 +9,7 @@ class DeprecationClient(NamespacedClient): @query_params() def info(self, index=None, params=None, headers=None): """ - ``_ + ``_ :arg index: Index pattern """ diff --git a/elasticsearch/client/eql.py b/elasticsearch/client/eql.py index dc6e036d..ddf51809 100644 --- a/elasticsearch/client/eql.py +++ b/elasticsearch/client/eql.py @@ -10,7 +10,7 @@ class EqlClient(NamespacedClient): def search(self, index, body, params=None, headers=None): """ Returns results matching a query expressed in Event Query Language (EQL) - ``_ + ``_ :arg index: The name of the index to scope the operation :arg body: Eql request body. Use the `query` to limit the query diff --git a/elasticsearch/client/remote.py b/elasticsearch/client/remote.py index 3b2d767a..e695b941 100644 --- a/elasticsearch/client/remote.py +++ b/elasticsearch/client/remote.py @@ -9,7 +9,7 @@ class RemoteClient(NamespacedClient): @query_params() def info(self, params=None, headers=None): """ - ``_ + ``_ """ return self.transport.perform_request( "GET", "/_remote/info", params=params, headers=headers