1afceba69b
* update to ES 7 * more updates to make tests run * update the test matrix * remove python 3.3 * update xpack apis * relative imports
13 lines
410 B
Python
13 lines
410 B
Python
from ..utils import NamespacedClient, query_params, _make_path, SKIP_IN_PATH
|
|
|
|
|
|
class SslClient(NamespacedClient):
|
|
@query_params()
|
|
def certificates(self, params=None):
|
|
"""
|
|
`<https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-ssl.html>`_
|
|
"""
|
|
return self.transport.perform_request(
|
|
"GET", "/_ssl/certificates", params=params
|
|
)
|