final case class UncountedTerminatedPods(failed: Option[Seq[String]] = None, succeeded: Option[Seq[String]] = None) extends Product with Serializable
UncountedTerminatedPods holds UIDs of Pods that have terminated but haven't been accounted in Job status counters.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- UncountedTerminatedPods
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def addFailed(newValues: String*): UncountedTerminatedPods
Appends new values to failed
- def addSucceeded(newValues: String*): UncountedTerminatedPods
Appends new values to succeeded
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val failed: Option[Seq[String]]
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def mapFailed(f: (Seq[String]) => Seq[String]): UncountedTerminatedPods
if failed has a value, transforms to the result of function
- def mapSucceeded(f: (Seq[String]) => Seq[String]): UncountedTerminatedPods
if succeeded has a value, transforms to the result of function
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val succeeded: Option[Seq[String]]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def withFailed(value: Seq[String]): UncountedTerminatedPods
Returns a new data with failed set to new value
- def withSucceeded(value: Seq[String]): UncountedTerminatedPods
Returns a new data with succeeded set to new value