JobCondition

io.k8s.api.batch.v1.JobCondition
See theJobCondition companion object
final case class JobCondition(status: String, `type`: String, lastProbeTime: Option[Time], reason: Option[String], lastTransitionTime: Option[Time], message: Option[String])

JobCondition describes current state of a job.

Attributes

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

Members list

Value members

Concrete methods

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

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

Attributes

Source
JobCondition.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
JobCondition.scala
def mapMessage(f: String => String): JobCondition

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

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

Attributes

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

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

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

Attributes

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

transforms status to result of function

transforms status to result of function

Attributes

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

transforms type to result of function

transforms type to result of function

Attributes

Source
JobCondition.scala

Returns a new data with lastProbeTime set to new value

Returns a new data with lastProbeTime set to new value

Attributes

Source
JobCondition.scala

Returns a new data with lastTransitionTime set to new value

Returns a new data with lastTransitionTime set to new value

Attributes

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

Returns a new data with message set to new value

Returns a new data with message set to new value

Attributes

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

Returns a new data with reason set to new value

Returns a new data with reason set to new value

Attributes

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

Returns a new data with status set to new value

Returns a new data with status set to new value

Attributes

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

Returns a new data with type set to new value

Returns a new data with type set to new value

Attributes

Source
JobCondition.scala

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product