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

com.sksamuel.elastic4s.requests.snapshots.DeleteSnapshotRequest.scala Maven / Gradle / Ivy

The newest version!
package com.sksamuel.elastic4s.requests.snapshots

import com.sksamuel.elastic4s.ext.OptionImplicits._

case class DeleteSnapshotRequest(snapshotName: String, repositoryName: String, waitForCompletion: Option[Boolean] = None) {
  def waitForCompletion(wait: Boolean): DeleteSnapshotRequest = copy(waitForCompletion = wait.some)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy