All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pointers.io.k8s.api.discovery.v1.EndpointSlicePointer.scala Maven / Gradle / Ivy

The newest version!
package io.k8s.api.discovery.v1

import dev.hnaderi.k8s.client._

/** Pointer for EndpointSlice */
final case class EndpointSlicePointer(currentPath: PointerPath = PointerPath()) extends Pointer[io.k8s.api.discovery.v1.EndpointSlice] {
  def endpoints : ListPointer[io.k8s.api.discovery.v1.Endpoint] = ListPointer(currentPath / s"endpoints")
  def addressType : Pointer.Plain[String] = Pointer.Plain(currentPath / s"addressType")
  def ports : ListPointer[io.k8s.api.discovery.v1.EndpointPort] = ListPointer(currentPath / s"ports")
  def metadata :  io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMetaPointer = io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMetaPointer(currentPath / s"metadata")
}






© 2015 - 2024 Weber Informatics LLC | Privacy Policy