DeleteByQueryResponse

@Serializable
data class DeleteByQueryResponse(val took: Long, val timedOut: Boolean, val total: Long, val deleted: Long, val batches: Long, val versionConflicts: Long, val noops: Long, val retries: DeleteByQueryResponse.Retries, val requestsPerSecond: Double, val throttledUntilMillis: Long, val failures: List<JsonObject>? = null)

Constructors

Link copied to clipboard
constructor(took: Long, timedOut: Boolean, total: Long, deleted: Long, batches: Long, versionConflicts: Long, noops: Long, retries: DeleteByQueryResponse.Retries, requestsPerSecond: Double, throttledUntilMillis: Long, failures: List<JsonObject>? = null)

Types

Link copied to clipboard
@Serializable
data class Retries(val bulk: Long, val search: Long)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val failures: List<JsonObject>? = null
Link copied to clipboard
val noops: Long
Link copied to clipboard
@SerialName(value = "requests_per_second")
val requestsPerSecond: Double
Link copied to clipboard
Link copied to clipboard
@SerialName(value = "throttled_until_millis")
val throttledUntilMillis: Long
Link copied to clipboard
@SerialName(value = "timed_out")
val timedOut: Boolean
Link copied to clipboard
val took: Long
Link copied to clipboard
val total: Long
Link copied to clipboard
@SerialName(value = "version_conflicts")
val versionConflicts: Long