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[Long] = 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
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
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[Long] = 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( ... ) @native() @HotSpotIntrinsicCandidate()
- val collisionCount: Option[Int]
- val conditions: Option[Seq[DeploymentCondition]]
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
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: (Long) ⇒ Long): 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() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- val observedGeneration: Option[Long]
- 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(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
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: Long): 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