case class MetricValueStatus(averageUtilization: Optional[Int] = Optional.Absent, averageValue: Optional[Quantity] = Optional.Absent, value: Optional[Quantity] = Optional.Absent) extends Product with Serializable

MetricValueStatus holds the current value for a metric

averageUtilization

currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods.

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MetricValueStatus
  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 MetricValueStatus(averageUtilization: Optional[Int] = Optional.Absent, averageValue: Optional[Quantity] = Optional.Absent, value: Optional[Quantity] = Optional.Absent)

    averageUtilization

    currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods.

Value Members

  1. val averageUtilization: Optional[Int]
  2. val averageValue: Optional[Quantity]
  3. def getAverageUtilization: IO[K8sFailure, Int]

    currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods.

    currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods.

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

  4. def getAverageValue: IO[K8sFailure, Quantity]

    Gets averageValue.

    Gets averageValue.

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

  5. def getValue: IO[K8sFailure, Quantity]

    Gets value.

    Gets value.

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

  6. val value: Optional[Quantity]