Files
opensearch-pyd/elasticsearch/client/xpack.py
T

27 lines
905 B
Python
Raw Normal View History

from .utils import NamespacedClient, query_params
class XPackClient(NamespacedClient):
def __getattr__(self, attr_name):
return getattr(self.client, attr_name)
# AUTO-GENERATED-API-DEFINITIONS #
2019-12-17 22:31:35 +01:00
@query_params("categories")
def info(self, params=None):
"""
`<https://www.elastic.co/guide/en/elasticsearch/reference/current/info-api.html>`_
2019-12-17 22:31:35 +01:00
:arg categories: Comma-separated list of info categories. Can be
any of: build, license, features
"""
return self.transport.perform_request("GET", "/_xpack", params=params)
@query_params("master_timeout")
def usage(self, params=None):
"""
2019-12-17 22:31:35 +01:00
`<Retrieve information about xpack features usage>`_
:arg master_timeout: Specify timeout for watch write operation
"""
return self.transport.perform_request("GET", "/_xpack/usage", params=params)