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

pointers.io.k8s.api.storagemigration.v1alpha1.GroupVersionResourcePointer.scala Maven / Gradle / Ivy

The newest version!
package io.k8s.api.storagemigration.v1alpha1

import dev.hnaderi.k8s.client._

/** Pointer for GroupVersionResource */
final case class GroupVersionResourcePointer(currentPath: PointerPath = PointerPath()) extends Pointer[io.k8s.api.storagemigration.v1alpha1.GroupVersionResource] {
  def group : Pointer.Plain[String] = Pointer.Plain(currentPath / s"group")
  def resource : Pointer.Plain[String] = Pointer.Plain(currentPath / s"resource")
  def version : Pointer.Plain[String] = Pointer.Plain(currentPath / s"version")
}






© 2015 - 2024 Weber Informatics LLC | Privacy Policy