Taint

final case class Taint(effect: String, key: String, timeAdded: Option[Time], value: Option[String])

The node this Taint is attached to has the "effect" on any pod that does not tolerate the Taint.

Source:
Taint.scala
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

transforms effect to result of function

transforms effect to result of function

Source:
Taint.scala

transforms key to result of function

transforms key to result of function

Source:
Taint.scala

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

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

Source:
Taint.scala

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

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

Source:
Taint.scala
def withEffect(value: String): Taint

Returns a new data with effect set to new value

Returns a new data with effect set to new value

Source:
Taint.scala
def withKey(value: String): Taint

Returns a new data with key set to new value

Returns a new data with key set to new value

Source:
Taint.scala
def withTimeAdded(value: Time): Taint

Returns a new data with timeAdded set to new value

Returns a new data with timeAdded set to new value

Source:
Taint.scala
def withValue(value: String): Taint

Returns a new data with value set to new value

Returns a new data with value set to new value

Source:
Taint.scala

Inherited methods

Inherited from:
Product