pointers.io.k8s.api.discovery.v1.EndpointPortPointer.scala Maven / Gradle / Ivy
The newest version!
package io.k8s.api.discovery.v1
import dev.hnaderi.k8s.client._
/** Pointer for EndpointPort */
final case class EndpointPortPointer(currentPath: PointerPath = PointerPath()) extends Pointer[io.k8s.api.discovery.v1.EndpointPort] {
def appProtocol : Pointer.Plain[String] = Pointer.Plain(currentPath / s"appProtocol")
def name : Pointer.Plain[String] = Pointer.Plain(currentPath / s"name")
def port : Pointer.Plain[Int] = Pointer.Plain(currentPath / s"port")
def protocol : Pointer.Plain[String] = Pointer.Plain(currentPath / s"protocol")
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy