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
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
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( ... ) @native() @HotSpotIntrinsicCandidate()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val failed: Option[Seq[String]]
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
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() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- val succeeded: Option[Seq[String]]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
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