final case class DaemonSetStatus(numberMisscheduled: Int, currentNumberScheduled: Int, desiredNumberScheduled: Int, numberReady: Int, conditions: Option[Seq[DaemonSetCondition]] = None, updatedNumberScheduled: Option[Int] = None, collisionCount: Option[Int] = None, numberUnavailable: Option[Int] = None, observedGeneration: Option[Int] = None, numberAvailable: Option[Int] = None) extends Product with Serializable
DaemonSetStatus represents the current status of a daemon set.
- Source
- DaemonSetStatus.scala
- Alphabetic
- By Inheritance
- DaemonSetStatus
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new DaemonSetStatus(numberMisscheduled: Int, currentNumberScheduled: Int, desiredNumberScheduled: Int, numberReady: Int, conditions: Option[Seq[DaemonSetCondition]] = None, updatedNumberScheduled: Option[Int] = None, collisionCount: Option[Int] = None, numberUnavailable: Option[Int] = None, observedGeneration: Option[Int] = None, numberAvailable: Option[Int] = None)
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
addConditions(newValues: DaemonSetCondition*): DaemonSetStatus
Appends new values to conditions
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
- val collisionCount: Option[Int]
- val conditions: Option[Seq[DaemonSetCondition]]
- val currentNumberScheduled: Int
- val desiredNumberScheduled: Int
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
mapCollisionCount(f: (Int) ⇒ Int): DaemonSetStatus
if collisionCount has a value, transforms to the result of function
-
def
mapConditions(f: (Seq[DaemonSetCondition]) ⇒ Seq[DaemonSetCondition]): DaemonSetStatus
if conditions has a value, transforms to the result of function
-
def
mapCurrentNumberScheduled(f: (Int) ⇒ Int): DaemonSetStatus
transforms currentNumberScheduled to result of function
-
def
mapDesiredNumberScheduled(f: (Int) ⇒ Int): DaemonSetStatus
transforms desiredNumberScheduled to result of function
-
def
mapNumberAvailable(f: (Int) ⇒ Int): DaemonSetStatus
if numberAvailable has a value, transforms to the result of function
-
def
mapNumberMisscheduled(f: (Int) ⇒ Int): DaemonSetStatus
transforms numberMisscheduled to result of function
-
def
mapNumberReady(f: (Int) ⇒ Int): DaemonSetStatus
transforms numberReady to result of function
-
def
mapNumberUnavailable(f: (Int) ⇒ Int): DaemonSetStatus
if numberUnavailable has a value, transforms to the result of function
-
def
mapObservedGeneration(f: (Int) ⇒ Int): DaemonSetStatus
if observedGeneration has a value, transforms to the result of function
-
def
mapUpdatedNumberScheduled(f: (Int) ⇒ Int): DaemonSetStatus
if updatedNumberScheduled 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()
- val numberAvailable: Option[Int]
- val numberMisscheduled: Int
- val numberReady: Int
- val numberUnavailable: Option[Int]
- val observedGeneration: Option[Int]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- val updatedNumberScheduled: Option[Int]
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
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()
-
def
withCollisionCount(value: Int): DaemonSetStatus
Returns a new data with collisionCount set to new value
-
def
withConditions(value: Seq[DaemonSetCondition]): DaemonSetStatus
Returns a new data with conditions set to new value
-
def
withCurrentNumberScheduled(value: Int): DaemonSetStatus
Returns a new data with currentNumberScheduled set to new value
-
def
withDesiredNumberScheduled(value: Int): DaemonSetStatus
Returns a new data with desiredNumberScheduled set to new value
-
def
withNumberAvailable(value: Int): DaemonSetStatus
Returns a new data with numberAvailable set to new value
-
def
withNumberMisscheduled(value: Int): DaemonSetStatus
Returns a new data with numberMisscheduled set to new value
-
def
withNumberReady(value: Int): DaemonSetStatus
Returns a new data with numberReady set to new value
-
def
withNumberUnavailable(value: Int): DaemonSetStatus
Returns a new data with numberUnavailable set to new value
-
def
withObservedGeneration(value: Int): DaemonSetStatus
Returns a new data with observedGeneration set to new value
-
def
withUpdatedNumberScheduled(value: Int): DaemonSetStatus
Returns a new data with updatedNumberScheduled set to new value