final case class DeploymentStatus(conditions: Option[Seq[DeploymentCondition]] = None, collisionCount: Option[Int] = None, replicas: Option[Int] = None, availableReplicas: Option[Int] = None, unavailableReplicas: Option[Int] = None, observedGeneration: Option[Int] = None, updatedReplicas: Option[Int] = None, readyReplicas: Option[Int] = None) extends Product with Serializable
DeploymentStatus is the most recently observed status of the Deployment.
- Source
- DeploymentStatus.scala
- Alphabetic
- By Inheritance
- DeploymentStatus
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new DeploymentStatus(conditions: Option[Seq[DeploymentCondition]] = None, collisionCount: Option[Int] = None, replicas: Option[Int] = None, availableReplicas: Option[Int] = None, unavailableReplicas: Option[Int] = None, observedGeneration: Option[Int] = None, updatedReplicas: Option[Int] = None, readyReplicas: 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: DeploymentCondition*): DeploymentStatus
Appends new values to conditions
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- val availableReplicas: Option[Int]
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- val collisionCount: Option[Int]
- val conditions: Option[Seq[DeploymentCondition]]
- 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[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def mapAvailableReplicas(f: (Int) => Int): DeploymentStatus
if availableReplicas has a value, transforms to the result of function
- def mapCollisionCount(f: (Int) => Int): DeploymentStatus
if collisionCount has a value, transforms to the result of function
- def mapConditions(f: (Seq[DeploymentCondition]) => Seq[DeploymentCondition]): DeploymentStatus
if conditions has a value, transforms to the result of function
- def mapObservedGeneration(f: (Int) => Int): DeploymentStatus
if observedGeneration has a value, transforms to the result of function
- def mapReadyReplicas(f: (Int) => Int): DeploymentStatus
if readyReplicas has a value, transforms to the result of function
- def mapReplicas(f: (Int) => Int): DeploymentStatus
if replicas has a value, transforms to the result of function
- def mapUnavailableReplicas(f: (Int) => Int): DeploymentStatus
if unavailableReplicas has a value, transforms to the result of function
- def mapUpdatedReplicas(f: (Int) => Int): DeploymentStatus
if updatedReplicas 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 observedGeneration: Option[Int]
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val readyReplicas: Option[Int]
- val replicas: Option[Int]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val unavailableReplicas: Option[Int]
- val updatedReplicas: Option[Int]
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def withAvailableReplicas(value: Int): DeploymentStatus
Returns a new data with availableReplicas set to new value
- def withCollisionCount(value: Int): DeploymentStatus
Returns a new data with collisionCount set to new value
- def withConditions(value: Seq[DeploymentCondition]): DeploymentStatus
Returns a new data with conditions set to new value
- def withObservedGeneration(value: Int): DeploymentStatus
Returns a new data with observedGeneration set to new value
- def withReadyReplicas(value: Int): DeploymentStatus
Returns a new data with readyReplicas set to new value
- def withReplicas(value: Int): DeploymentStatus
Returns a new data with replicas set to new value
- def withUnavailableReplicas(value: Int): DeploymentStatus
Returns a new data with unavailableReplicas set to new value
- def withUpdatedReplicas(value: Int): DeploymentStatus
Returns a new data with updatedReplicas set to new value