pointers.io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerStatusPointer.scala Maven / Gradle / Ivy
The newest version!
package io.k8s.api.autoscaling.v1
import dev.hnaderi.k8s.client._
/** Pointer for HorizontalPodAutoscalerStatus */
final case class HorizontalPodAutoscalerStatusPointer(currentPath: PointerPath = PointerPath()) extends Pointer[io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerStatus] {
def desiredReplicas : Pointer.Plain[Int] = Pointer.Plain(currentPath / s"desiredReplicas")
def currentReplicas : Pointer.Plain[Int] = Pointer.Plain(currentPath / s"currentReplicas")
def lastScaleTime : Pointer.Plain[io.k8s.apimachinery.pkg.apis.meta.v1.Time] = Pointer.Plain(currentPath / s"lastScaleTime")
def observedGeneration : Pointer.Plain[Long] = Pointer.Plain(currentPath / s"observedGeneration")
def currentCPUUtilizationPercentage : Pointer.Plain[Int] = Pointer.Plain(currentPath / s"currentCPUUtilizationPercentage")
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy