1afceba69b
* update to ES 7 * more updates to make tests run * update the test matrix * remove python 3.3 * update xpack apis * relative imports
15 lines
484 B
Python
15 lines
484 B
Python
from ..utils import NamespacedClient, query_params, _make_path, SKIP_IN_PATH
|
|
|
|
|
|
class MigrationClient(NamespacedClient):
|
|
@query_params()
|
|
def deprecations(self, index=None, params=None):
|
|
"""
|
|
`<http://www.elastic.co/guide/en/migration/current/migration-api-deprecation.html>`_
|
|
|
|
:arg index: Index pattern
|
|
"""
|
|
return self.transport.perform_request(
|
|
"GET", _make_path(index, "_migration", "deprecations"), params=params
|
|
)
|