pointers.io.k8s.apimachinery.pkg.version.InfoPointer.scala Maven / Gradle / Ivy
The newest version!
package io.k8s.apimachinery.pkg.version
import dev.hnaderi.k8s.client._
/** Pointer for Info */
final case class InfoPointer(currentPath: PointerPath = PointerPath()) extends Pointer[io.k8s.apimachinery.pkg.version.Info] {
def gitCommit : Pointer.Plain[String] = Pointer.Plain(currentPath / s"gitCommit")
def goVersion : Pointer.Plain[String] = Pointer.Plain(currentPath / s"goVersion")
def compiler : Pointer.Plain[String] = Pointer.Plain(currentPath / s"compiler")
def gitVersion : Pointer.Plain[String] = Pointer.Plain(currentPath / s"gitVersion")
def gitTreeState : Pointer.Plain[String] = Pointer.Plain(currentPath / s"gitTreeState")
def platform : Pointer.Plain[String] = Pointer.Plain(currentPath / s"platform")
def buildDate : Pointer.Plain[String] = Pointer.Plain(currentPath / s"buildDate")
def major : Pointer.Plain[String] = Pointer.Plain(currentPath / s"major")
def minor : Pointer.Plain[String] = Pointer.Plain(currentPath / s"minor")
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy