Packages

final case class PodDisruptionBudgetStatus(disruptionsAllowed: Int, desiredHealthy: Int, expectedPods: Int, currentHealthy: Int, conditions: Option[Seq[Condition]] = None, disruptedPods: Option[Map[String, Time]] = None, observedGeneration: Option[Int] = None) extends Product with Serializable

PodDisruptionBudgetStatus represents information about the status of a PodDisruptionBudget. Status may trail the actual state of a system.

Source
PodDisruptionBudgetStatus.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PodDisruptionBudgetStatus
  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 PodDisruptionBudgetStatus(disruptionsAllowed: Int, desiredHealthy: Int, expectedPods: Int, currentHealthy: Int, conditions: Option[Seq[Condition]] = None, disruptedPods: Option[Map[String, Time]] = None, observedGeneration: 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: Condition*): PodDisruptionBudgetStatus

    Appends new values to conditions

  5. def addDisruptedPods(newValues: (String, Time)*): PodDisruptionBudgetStatus

    Adds new values to disruptedPods

  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  8. val conditions: Option[Seq[Condition]]
  9. val currentHealthy: Int
  10. val desiredHealthy: Int
  11. val disruptedPods: Option[Map[String, Time]]
  12. val disruptionsAllowed: Int
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. val expectedPods: Int
  15. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  16. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. def mapConditions(f: (Seq[Condition]) => Seq[Condition]): PodDisruptionBudgetStatus

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

  19. def mapCurrentHealthy(f: (Int) => Int): PodDisruptionBudgetStatus

    transforms currentHealthy to result of function

  20. def mapDesiredHealthy(f: (Int) => Int): PodDisruptionBudgetStatus

    transforms desiredHealthy to result of function

  21. def mapDisruptedPods(f: (Map[String, Time]) => Map[String, Time]): PodDisruptionBudgetStatus

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

  22. def mapDisruptionsAllowed(f: (Int) => Int): PodDisruptionBudgetStatus

    transforms disruptionsAllowed to result of function

  23. def mapExpectedPods(f: (Int) => Int): PodDisruptionBudgetStatus

    transforms expectedPods to result of function

  24. def mapObservedGeneration(f: (Int) => Int): PodDisruptionBudgetStatus

    if observedGeneration 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 observedGeneration: Option[Int]
  29. def productElementNames: Iterator[String]
    Definition Classes
    Product
  30. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  31. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  33. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  34. def withConditions(value: Seq[Condition]): PodDisruptionBudgetStatus

    Returns a new data with conditions set to new value

  35. def withCurrentHealthy(value: Int): PodDisruptionBudgetStatus

    Returns a new data with currentHealthy set to new value

  36. def withDesiredHealthy(value: Int): PodDisruptionBudgetStatus

    Returns a new data with desiredHealthy set to new value

  37. def withDisruptedPods(value: Map[String, Time]): PodDisruptionBudgetStatus

    Returns a new data with disruptedPods set to new value

  38. def withDisruptionsAllowed(value: Int): PodDisruptionBudgetStatus

    Returns a new data with disruptionsAllowed set to new value

  39. def withExpectedPods(value: Int): PodDisruptionBudgetStatus

    Returns a new data with expectedPods set to new value

  40. def withObservedGeneration(value: Int): PodDisruptionBudgetStatus

    Returns a new data with observedGeneration set to new value

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped