pointers.io.k8s.api.autoscaling.v2.MetricSpecPointer.scala Maven / Gradle / Ivy
The newest version!
package io.k8s.api.autoscaling.v2
import dev.hnaderi.k8s.client._
/** Pointer for MetricSpec */
final case class MetricSpecPointer(currentPath: PointerPath = PointerPath()) extends Pointer[io.k8s.api.autoscaling.v2.MetricSpec] {
def `type` : Pointer.Plain[String] = Pointer.Plain(currentPath / s"type")
def `object` : io.k8s.api.autoscaling.v2.ObjectMetricSourcePointer = io.k8s.api.autoscaling.v2.ObjectMetricSourcePointer(currentPath / s"object")
def external : io.k8s.api.autoscaling.v2.ExternalMetricSourcePointer = io.k8s.api.autoscaling.v2.ExternalMetricSourcePointer(currentPath / s"external")
def containerResource : io.k8s.api.autoscaling.v2.ContainerResourceMetricSourcePointer = io.k8s.api.autoscaling.v2.ContainerResourceMetricSourcePointer(currentPath / s"containerResource")
def resource : io.k8s.api.autoscaling.v2.ResourceMetricSourcePointer = io.k8s.api.autoscaling.v2.ResourceMetricSourcePointer(currentPath / s"resource")
def pods : io.k8s.api.autoscaling.v2.PodsMetricSourcePointer = io.k8s.api.autoscaling.v2.PodsMetricSourcePointer(currentPath / s"pods")
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy