Packages

case class ReplicationControllerStatus(availableReplicas: Optional[Int] = Optional.Absent, conditions: Optional[Vector[ReplicationControllerCondition]] = Optional.Absent, fullyLabeledReplicas: Optional[Int] = Optional.Absent, observedGeneration: Optional[Long] = Optional.Absent, readyReplicas: Optional[Int] = Optional.Absent, replicas: Int) extends Product with Serializable

ReplicationControllerStatus represents the current status of a replication controller.

availableReplicas

The number of available replicas (ready for at least minReadySeconds) for this replication controller.

conditions

Represents the latest available observations of a replication controller's current state.

fullyLabeledReplicas

The number of pods that have labels matching the labels of the pod template of the replication controller.

observedGeneration

ObservedGeneration reflects the generation of the most recently observed replication controller.

readyReplicas

The number of ready replicas for this replication controller.

replicas

Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ReplicationControllerStatus
  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 ReplicationControllerStatus(availableReplicas: Optional[Int] = Optional.Absent, conditions: Optional[Vector[ReplicationControllerCondition]] = Optional.Absent, fullyLabeledReplicas: Optional[Int] = Optional.Absent, observedGeneration: Optional[Long] = Optional.Absent, readyReplicas: Optional[Int] = Optional.Absent, replicas: Int)

    availableReplicas

    The number of available replicas (ready for at least minReadySeconds) for this replication controller.

    conditions

    Represents the latest available observations of a replication controller's current state.

    fullyLabeledReplicas

    The number of pods that have labels matching the labels of the pod template of the replication controller.

    observedGeneration

    ObservedGeneration reflects the generation of the most recently observed replication controller.

    readyReplicas

    The number of ready replicas for this replication controller.

    replicas

    Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. val availableReplicas: Optional[Int]
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  7. val conditions: Optional[Vector[ReplicationControllerCondition]]
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. val fullyLabeledReplicas: Optional[Int]
  10. def getAvailableReplicas: IO[K8sFailure, Int]

    The number of available replicas (ready for at least minReadySeconds) for this replication controller.

    The number of available replicas (ready for at least minReadySeconds) for this replication controller.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  11. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. def getConditions: IO[K8sFailure, Vector[ReplicationControllerCondition]]

    Represents the latest available observations of a replication controller's current state.

    Represents the latest available observations of a replication controller's current state.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  13. def getFullyLabeledReplicas: IO[K8sFailure, Int]

    The number of pods that have labels matching the labels of the pod template of the replication controller.

    The number of pods that have labels matching the labels of the pod template of the replication controller.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  14. def getObservedGeneration: IO[K8sFailure, Long]

    ObservedGeneration reflects the generation of the most recently observed replication controller.

    ObservedGeneration reflects the generation of the most recently observed replication controller.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  15. def getReadyReplicas: IO[K8sFailure, Int]

    The number of ready replicas for this replication controller.

    The number of ready replicas for this replication controller.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  16. def getReplicas: IO[K8sFailure, Int]

    Replicas is the most recently oberved number of replicas.

    Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller

    This effect always succeeds, it is safe to use the field replicas directly.

  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. val observedGeneration: Optional[Long]
  22. val readyReplicas: Optional[Int]
  23. val replicas: Int
  24. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  27. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

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