pointers.io.k8s.api.resource.v1alpha3.DeviceAttributePointer.scala Maven / Gradle / Ivy
The newest version!
package io.k8s.api.resource.v1alpha3
import dev.hnaderi.k8s.client._
/** Pointer for DeviceAttribute */
final case class DeviceAttributePointer(currentPath: PointerPath = PointerPath()) extends Pointer[io.k8s.api.resource.v1alpha3.DeviceAttribute] {
def bool : Pointer.Plain[Boolean] = Pointer.Plain(currentPath / s"bool")
def int : Pointer.Plain[Long] = Pointer.Plain(currentPath / s"int")
def string : Pointer.Plain[String] = Pointer.Plain(currentPath / s"string")
def version : Pointer.Plain[String] = Pointer.Plain(currentPath / s"version")
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy