case class HorizontalPodAutoscalerStatus(conditions: Optional[Vector[HorizontalPodAutoscalerCondition]] = Optional.Absent, currentMetrics: Optional[Vector[MetricStatus]] = Optional.Absent, currentReplicas: Optional[Int] = Optional.Absent, desiredReplicas: Int, lastScaleTime: Optional[Time] = Optional.Absent, observedGeneration: Optional[Long] = Optional.Absent) extends Product with Serializable

HorizontalPodAutoscalerStatus describes the current status of a horizontal pod autoscaler.

conditions

conditions is the set of conditions required for this autoscaler to scale its target, and indicates whether or not those conditions are met.

currentMetrics

currentMetrics is the last read state of the metrics used by this autoscaler.

currentReplicas

currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler.

desiredReplicas

desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler.

observedGeneration

observedGeneration is the most recent generation observed by this autoscaler.

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HorizontalPodAutoscalerStatus
  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 HorizontalPodAutoscalerStatus(conditions: Optional[Vector[HorizontalPodAutoscalerCondition]] = Optional.Absent, currentMetrics: Optional[Vector[MetricStatus]] = Optional.Absent, currentReplicas: Optional[Int] = Optional.Absent, desiredReplicas: Int, lastScaleTime: Optional[Time] = Optional.Absent, observedGeneration: Optional[Long] = Optional.Absent)

    conditions

    conditions is the set of conditions required for this autoscaler to scale its target, and indicates whether or not those conditions are met.

    currentMetrics

    currentMetrics is the last read state of the metrics used by this autoscaler.

    currentReplicas

    currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler.

    desiredReplicas

    desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler.

    observedGeneration

    observedGeneration is the most recent generation observed by this autoscaler.

Value Members

  1. val conditions: Optional[Vector[HorizontalPodAutoscalerCondition]]
  2. val currentMetrics: Optional[Vector[MetricStatus]]
  3. val currentReplicas: Optional[Int]
  4. val desiredReplicas: Int
  5. def getConditions: IO[K8sFailure, Vector[HorizontalPodAutoscalerCondition]]

    conditions is the set of conditions required for this autoscaler to scale its target, and indicates whether or not those conditions are met.

    conditions is the set of conditions required for this autoscaler to scale its target, and indicates whether or not those conditions are met.

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

  6. def getCurrentMetrics: IO[K8sFailure, Vector[MetricStatus]]

    currentMetrics is the last read state of the metrics used by this autoscaler.

    currentMetrics is the last read state of the metrics used by this autoscaler.

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

  7. def getCurrentReplicas: IO[K8sFailure, Int]

    currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler.

    currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler.

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

  8. def getDesiredReplicas: IO[K8sFailure, Int]

    desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler.

    desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler.

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

  9. def getLastScaleTime: IO[K8sFailure, Time]

    Gets lastScaleTime.

    Gets lastScaleTime.

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

  10. def getObservedGeneration: IO[K8sFailure, Long]

    observedGeneration is the most recent generation observed by this autoscaler.

    observedGeneration is the most recent generation observed by this autoscaler.

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

  11. val lastScaleTime: Optional[Time]
  12. val observedGeneration: Optional[Long]