public function getIndexNames() { return array_keys($this->_data['metadata']['indices']); }
/** * Checks if the given index is already created * * @return bool True if index exists */ public function exists() { $cluster = new Cluster($this->getClient()); return in_array($this->getName(), $cluster->getIndexNames()); }