Packages

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[Long] = None, numberAvailable: Option[Int] = None) extends Product with Serializable

DaemonSetStatus represents the current status of a daemon set.

Source
DaemonSetStatus.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DaemonSetStatus
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. 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[Long] = None, numberAvailable: Option[Int] = None)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def addConditions(newValues: DaemonSetCondition*): DaemonSetStatus

    Appends new values to conditions

  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  7. val collisionCount: Option[Int]
  8. val conditions: Option[Seq[DaemonSetCondition]]
  9. val currentNumberScheduled: Int
  10. val desiredNumberScheduled: Int
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. def mapCollisionCount(f: (Int) ⇒ Int): DaemonSetStatus

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

  15. def mapConditions(f: (Seq[DaemonSetCondition]) ⇒ Seq[DaemonSetCondition]): DaemonSetStatus

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

  16. def mapCurrentNumberScheduled(f: (Int) ⇒ Int): DaemonSetStatus

    transforms currentNumberScheduled to result of function

  17. def mapDesiredNumberScheduled(f: (Int) ⇒ Int): DaemonSetStatus

    transforms desiredNumberScheduled to result of function

  18. def mapNumberAvailable(f: (Int) ⇒ Int): DaemonSetStatus

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

  19. def mapNumberMisscheduled(f: (Int) ⇒ Int): DaemonSetStatus

    transforms numberMisscheduled to result of function

  20. def mapNumberReady(f: (Int) ⇒ Int): DaemonSetStatus

    transforms numberReady to result of function

  21. def mapNumberUnavailable(f: (Int) ⇒ Int): DaemonSetStatus

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

  22. def mapObservedGeneration(f: (Long) ⇒ Long): DaemonSetStatus

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

  23. def mapUpdatedNumberScheduled(f: (Int) ⇒ Int): DaemonSetStatus

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

  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  26. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  27. val numberAvailable: Option[Int]
  28. val numberMisscheduled: Int
  29. val numberReady: Int
  30. val numberUnavailable: Option[Int]
  31. val observedGeneration: Option[Long]
  32. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  33. val updatedNumberScheduled: Option[Int]
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  36. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. def withCollisionCount(value: Int): DaemonSetStatus

    Returns a new data with collisionCount set to new value

  38. def withConditions(value: Seq[DaemonSetCondition]): DaemonSetStatus

    Returns a new data with conditions set to new value

  39. def withCurrentNumberScheduled(value: Int): DaemonSetStatus

    Returns a new data with currentNumberScheduled set to new value

  40. def withDesiredNumberScheduled(value: Int): DaemonSetStatus

    Returns a new data with desiredNumberScheduled set to new value

  41. def withNumberAvailable(value: Int): DaemonSetStatus

    Returns a new data with numberAvailable set to new value

  42. def withNumberMisscheduled(value: Int): DaemonSetStatus

    Returns a new data with numberMisscheduled set to new value

  43. def withNumberReady(value: Int): DaemonSetStatus

    Returns a new data with numberReady set to new value

  44. def withNumberUnavailable(value: Int): DaemonSetStatus

    Returns a new data with numberUnavailable set to new value

  45. def withObservedGeneration(value: Long): DaemonSetStatus

    Returns a new data with observedGeneration set to new value

  46. def withUpdatedNumberScheduled(value: Int): DaemonSetStatus

    Returns a new data with updatedNumberScheduled set to new value

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped