pointers.io.k8s.api.batch.v1.CronJobStatusPointer.scala Maven / Gradle / Ivy
The newest version!
package io.k8s.api.batch.v1
import dev.hnaderi.k8s.client._
/** Pointer for CronJobStatus */
final case class CronJobStatusPointer(currentPath: PointerPath = PointerPath()) extends Pointer[io.k8s.api.batch.v1.CronJobStatus] {
def active : ListPointer[io.k8s.api.core.v1.ObjectReference] = ListPointer(currentPath / s"active")
def lastScheduleTime : Pointer.Plain[io.k8s.apimachinery.pkg.apis.meta.v1.Time] = Pointer.Plain(currentPath / s"lastScheduleTime")
def lastSuccessfulTime : Pointer.Plain[io.k8s.apimachinery.pkg.apis.meta.v1.Time] = Pointer.Plain(currentPath / s"lastSuccessfulTime")
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy