ClusterHealthResponse

@Serializable
data class ClusterHealthResponse(val clusterName: String, val status: ClusterStatus, val timedOut: Boolean, val numberOfNodes: Int? = null, val activeShards: Int? = null, val relocatingShards: Int? = null, val initializingShards: Int? = null, val unassignedShards: Int? = null)

Constructors

Link copied to clipboard
constructor(clusterName: String, status: ClusterStatus, timedOut: Boolean, numberOfNodes: Int? = null, activeShards: Int? = null, relocatingShards: Int? = null, initializingShards: Int? = null, unassignedShards: Int? = null)

Properties

Link copied to clipboard
@SerialName(value = "active_shards")
val activeShards: Int?
Link copied to clipboard
@SerialName(value = "cluster_name")
val clusterName: String
Link copied to clipboard
@SerialName(value = "initializing_shards")
val initializingShards: Int?
Link copied to clipboard
@SerialName(value = "number_of_nodes")
val numberOfNodes: Int?
Link copied to clipboard
@SerialName(value = "relocating_shards")
val relocatingShards: Int?
Link copied to clipboard
Link copied to clipboard
@SerialName(value = "timed_out")
val timedOut: Boolean
Link copied to clipboard
@SerialName(value = "unassigned_shards")
val unassignedShards: Int?