case class MetricStatus(containerResource: Optional[ContainerResourceMetricStatus] = Optional.Absent, external: Optional[ExternalMetricStatus] = Optional.Absent, object: Optional[ObjectMetricStatus] = Optional.Absent, pods: Optional[PodsMetricStatus] = Optional.Absent, resource: Optional[ResourceMetricStatus] = Optional.Absent, type: String) extends Product with Serializable
MetricStatus describes the last-read state of a single metric.
- type
type is the type of metric source. It will be one of "ContainerResource", "External", "Object", "Pods" or "Resource", each corresponds to a matching field in the object. Note: "ContainerResource" type is available on when the feature-gate HPAContainerMetrics is enabled
- Alphabetic
- By Inheritance
- MetricStatus
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
-
new
MetricStatus(containerResource: Optional[ContainerResourceMetricStatus] = Optional.Absent, external: Optional[ExternalMetricStatus] = Optional.Absent, object: Optional[ObjectMetricStatus] = Optional.Absent, pods: Optional[PodsMetricStatus] = Optional.Absent, resource: Optional[ResourceMetricStatus] = Optional.Absent, type: String)
- type
type is the type of metric source. It will be one of "ContainerResource", "External", "Object", "Pods" or "Resource", each corresponds to a matching field in the object. Note: "ContainerResource" type is available on when the feature-gate HPAContainerMetrics is enabled
Value Members
- val containerResource: Optional[ContainerResourceMetricStatus]
- val external: Optional[ExternalMetricStatus]
-
def
getContainerResource: IO[K8sFailure, ContainerResourceMetricStatus]
Gets containerResource.
Gets containerResource.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getExternal: IO[K8sFailure, ExternalMetricStatus]
Gets external.
Gets external.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getObject: IO[K8sFailure, ObjectMetricStatus]
Gets object.
Gets object.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getPods: IO[K8sFailure, PodsMetricStatus]
Gets pods.
Gets pods.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getResource: IO[K8sFailure, ResourceMetricStatus]
Gets resource.
Gets resource.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getType: IO[K8sFailure, String]
type is the type of metric source.
type is the type of metric source. It will be one of "ContainerResource", "External", "Object", "Pods" or "Resource", each corresponds to a matching field in the object. Note: "ContainerResource" type is available on when the feature-gate HPAContainerMetrics is enabled
This effect always succeeds, it is safe to use the field type directly.
- val object: Optional[ObjectMetricStatus]
- val pods: Optional[PodsMetricStatus]
- val resource: Optional[ResourceMetricStatus]
- val type: String