case class ExternalMetricStatus(currentAverageValue: Optional[Quantity] = Optional.Absent, currentValue: Quantity, metricName: String, metricSelector: Optional[LabelSelector] = Optional.Absent) extends Product with Serializable

ExternalMetricStatus indicates the current value of a global metric not associated with any Kubernetes object.

metricName

metricName is the name of a metric used for autoscaling in metric system.

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ExternalMetricStatus
  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 ExternalMetricStatus(currentAverageValue: Optional[Quantity] = Optional.Absent, currentValue: Quantity, metricName: String, metricSelector: Optional[LabelSelector] = Optional.Absent)

    metricName

    metricName is the name of a metric used for autoscaling in metric system.

Value Members

  1. val currentAverageValue: Optional[Quantity]
  2. val currentValue: Quantity
  3. def getCurrentAverageValue: IO[K8sFailure, Quantity]

    Gets currentAverageValue.

    Gets currentAverageValue.

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

  4. def getCurrentValue: IO[K8sFailure, Quantity]

    Gets currentValue.

    Gets currentValue.

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

  5. def getMetricName: IO[K8sFailure, String]

    metricName is the name of a metric used for autoscaling in metric system.

    metricName is the name of a metric used for autoscaling in metric system.

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

  6. def getMetricSelector: IO[K8sFailure, LabelSelector]

    Gets metricSelector.

    Gets metricSelector.

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

  7. val metricName: String
  8. val metricSelector: Optional[LabelSelector]