27 lines
905 B
Python
27 lines
905 B
Python
from .utils import NamespacedClient, query_params
|
|
|
|
|
|
class XPackClient(NamespacedClient):
|
|
def __getattr__(self, attr_name):
|
|
return getattr(self.client, attr_name)
|
|
|
|
# AUTO-GENERATED-API-DEFINITIONS #
|
|
@query_params("categories")
|
|
def info(self, params=None):
|
|
"""
|
|
`<https://www.elastic.co/guide/en/elasticsearch/reference/current/info-api.html>`_
|
|
|
|
: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):
|
|
"""
|
|
`<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)
|