Package org.elasticsearch.cluster.metadata

Examples of org.elasticsearch.cluster.metadata.AliasAction


            indices(index);
            aliases(alias);
        }
       
        AliasActions(AliasAction.Type type, String[] index, String alias) {
            aliasAction = new AliasAction(type);
            indices(index);
            aliases(alias);
        }
View Full Code Here


            indices(action.index());
            aliases(action.alias());
        }

        public AliasActions(Type type, String index, String[] aliases) {
            aliasAction = new AliasAction(type);
            indices(index);
            aliases(aliases);
        }
View Full Code Here

TOP

Related Classes of org.elasticsearch.cluster.metadata.AliasAction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.