pointers.io.k8s.api.resource.v1alpha3.DeviceRequestPointer.scala Maven / Gradle / Ivy
The newest version!
package io.k8s.api.resource.v1alpha3
import dev.hnaderi.k8s.client._
/** Pointer for DeviceRequest */
final case class DeviceRequestPointer(currentPath: PointerPath = PointerPath()) extends Pointer[io.k8s.api.resource.v1alpha3.DeviceRequest] {
def name : Pointer.Plain[String] = Pointer.Plain(currentPath / s"name")
def deviceClassName : Pointer.Plain[String] = Pointer.Plain(currentPath / s"deviceClassName")
def count : Pointer.Plain[Long] = Pointer.Plain(currentPath / s"count")
def adminAccess : Pointer.Plain[Boolean] = Pointer.Plain(currentPath / s"adminAccess")
def selectors : ListPointer[io.k8s.api.resource.v1alpha3.DeviceSelector] = ListPointer(currentPath / s"selectors")
def allocationMode : Pointer.Plain[String] = Pointer.Plain(currentPath / s"allocationMode")
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy