All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sksamuel.elastic4s.api.IndexRecoveryApi.scala Maven / Gradle / Ivy

There is a newer version: 8.15.4
Show newest version
package com.sksamuel.elastic4s.api

import com.sksamuel.elastic4s.requests.indexes.admin.recovery.IndexRecoveryRequest

trait IndexRecoveryApi {
  def recoverIndex(first: String, rest: String*): IndexRecoveryRequest = recoverIndex(first +: rest)
  def recoverIndex(indexes: Iterable[String]): IndexRecoveryRequest    = IndexRecoveryRequest(indexes.toSeq)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy