From 96c5566dad344ed3d6a0387d5609a00d547cda23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Honza=20Kr=C3=A1l?= Date: Fri, 17 Jan 2014 15:45:18 +0100 Subject: [PATCH] Delete_aliases now supports multi-index and multi-alias ops --- elasticsearch/client/indices.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/elasticsearch/client/indices.py b/elasticsearch/client/indices.py index 6bc5b894..c59c90e1 100644 --- a/elasticsearch/client/indices.py +++ b/elasticsearch/client/indices.py @@ -357,8 +357,10 @@ class IndicesClient(NamespacedClient): Delete specific alias. ``_ - :arg index: The name of the index with an alias - :arg name: The name of the alias to be deleted + :arg index: A comma-separated list of index names (supports wildcards); + use `_all` for all indices + :arg name: A comma-separated list of aliases to delete (supports + wildcards); use `_all` to delete all aliases for the specified indices. :arg master_timeout: Specify timeout for connection to master :arg timeout: Explicit timestamp for the document """