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

com.sksamuel.elastic4s.requests.delete.DeleteByQueryResponse.scala Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonProperty
import com.sksamuel.elastic4s.BulkIndexByScrollFailure

case class DeleteByQueryResponse(took: Long,
                                 @JsonProperty("timed_out") timedOut: Boolean,
                                 total: Long,
                                 deleted: Long,
                                 batches: Long,
                                 @JsonProperty("version_conflicts") versionConflicts: Long,
                                 noops: Long,
                                 @JsonProperty("throttled_millis") throttledMillis: Long,
                                 @JsonProperty("requests_per_second") requestsPerSecond: Long,
                                 @JsonProperty("throttled_until_millis") throttledUntilMillis: Long,
                                 failures: Option[Seq[BulkIndexByScrollFailure]])




© 2015 - 2024 Weber Informatics LLC | Privacy Policy