NodeCondition

io.k8s.api.core.v1.NodeCondition
See theNodeCondition companion object
final case class NodeCondition(status: String, `type`: String, reason: Option[String], lastTransitionTime: Option[Time], message: Option[String], lastHeartbeatTime: Option[Time])

NodeCondition contains condition information for a node.

Attributes

Companion
object
Source
NodeCondition.scala
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

if lastHeartbeatTime has a value, transforms to the result of function

if lastHeartbeatTime has a value, transforms to the result of function

Attributes

Source
NodeCondition.scala

if lastTransitionTime has a value, transforms to the result of function

if lastTransitionTime has a value, transforms to the result of function

Attributes

Source
NodeCondition.scala
def mapMessage(f: String => String): NodeCondition

if message has a value, transforms to the result of function

if message has a value, transforms to the result of function

Attributes

Source
NodeCondition.scala
def mapReason(f: String => String): NodeCondition

if reason has a value, transforms to the result of function

if reason has a value, transforms to the result of function

Attributes

Source
NodeCondition.scala
def mapStatus(f: String => String): NodeCondition

transforms status to result of function

transforms status to result of function

Attributes

Source
NodeCondition.scala
def mapType(f: String => String): NodeCondition

transforms type to result of function

transforms type to result of function

Attributes

Source
NodeCondition.scala

Returns a new data with lastHeartbeatTime set to new value

Returns a new data with lastHeartbeatTime set to new value

Attributes

Source
NodeCondition.scala

Returns a new data with lastTransitionTime set to new value

Returns a new data with lastTransitionTime set to new value

Attributes

Source
NodeCondition.scala
def withMessage(value: String): NodeCondition

Returns a new data with message set to new value

Returns a new data with message set to new value

Attributes

Source
NodeCondition.scala
def withReason(value: String): NodeCondition

Returns a new data with reason set to new value

Returns a new data with reason set to new value

Attributes

Source
NodeCondition.scala
def withStatus(value: String): NodeCondition

Returns a new data with status set to new value

Returns a new data with status set to new value

Attributes

Source
NodeCondition.scala
def withType(value: String): NodeCondition

Returns a new data with type set to new value

Returns a new data with type set to new value

Attributes

Source
NodeCondition.scala

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product