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
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DaemonSetStatus
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

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[Int] = 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(classOf[java.lang.CloneNotSupportedException]) @native()
  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. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. def mapCollisionCount(f: (Int) => Int): DaemonSetStatus

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

  16. def mapConditions(f: (Seq[DaemonSetCondition]) => Seq[DaemonSetCondition]): DaemonSetStatus

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

  17. def mapCurrentNumberScheduled(f: (Int) => Int): DaemonSetStatus

    transforms currentNumberScheduled to result of function

  18. def mapDesiredNumberScheduled(f: (Int) => Int): DaemonSetStatus

    transforms desiredNumberScheduled to result of function

  19. def mapNumberAvailable(f: (Int) => Int): DaemonSetStatus

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

  20. def mapNumberMisscheduled(f: (Int) => Int): DaemonSetStatus

    transforms numberMisscheduled to result of function

  21. def mapNumberReady(f: (Int) => Int): DaemonSetStatus

    transforms numberReady to result of function

  22. def mapNumberUnavailable(f: (Int) => Int): DaemonSetStatus

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

  23. def mapObservedGeneration(f: (Int) => Int): DaemonSetStatus

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

  24. def mapUpdatedNumberScheduled(f: (Int) => Int): DaemonSetStatus

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

  25. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  26. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  27. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  28. val numberAvailable: Option[Int]
  29. val numberMisscheduled: Int
  30. val numberReady: Int
  31. val numberUnavailable: Option[Int]
  32. val observedGeneration: Option[Int]
  33. def productElementNames: Iterator[String]
    Definition Classes
    Product
  34. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  35. val updatedNumberScheduled: Option[Int]
  36. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  37. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  38. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  39. def withCollisionCount(value: Int): DaemonSetStatus

    Returns a new data with collisionCount set to new value

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

    Returns a new data with conditions set to new value

  41. def withCurrentNumberScheduled(value: Int): DaemonSetStatus

    Returns a new data with currentNumberScheduled set to new value

  42. def withDesiredNumberScheduled(value: Int): DaemonSetStatus

    Returns a new data with desiredNumberScheduled set to new value

  43. def withNumberAvailable(value: Int): DaemonSetStatus

    Returns a new data with numberAvailable set to new value

  44. def withNumberMisscheduled(value: Int): DaemonSetStatus

    Returns a new data with numberMisscheduled set to new value

  45. def withNumberReady(value: Int): DaemonSetStatus

    Returns a new data with numberReady set to new value

  46. def withNumberUnavailable(value: Int): DaemonSetStatus

    Returns a new data with numberUnavailable set to new value

  47. def withObservedGeneration(value: Int): DaemonSetStatus

    Returns a new data with observedGeneration set to new value

  48. def withUpdatedNumberScheduled(value: Int): DaemonSetStatus

    Returns a new data with updatedNumberScheduled set to new value

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped