pointers.io.k8s.api.apps.v1.DeploymentSpecPointer.scala Maven / Gradle / Ivy
The newest version!
package io.k8s.api.apps.v1
import dev.hnaderi.k8s.client._
/** Pointer for DeploymentSpec */
final case class DeploymentSpecPointer(currentPath: PointerPath = PointerPath()) extends Pointer[io.k8s.api.apps.v1.DeploymentSpec] {
def template : io.k8s.api.core.v1.PodTemplateSpecPointer = io.k8s.api.core.v1.PodTemplateSpecPointer(currentPath / s"template")
def selector : io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelectorPointer = io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelectorPointer(currentPath / s"selector")
def minReadySeconds : Pointer.Plain[Int] = Pointer.Plain(currentPath / s"minReadySeconds")
def progressDeadlineSeconds : Pointer.Plain[Int] = Pointer.Plain(currentPath / s"progressDeadlineSeconds")
def replicas : Pointer.Plain[Int] = Pointer.Plain(currentPath / s"replicas")
def revisionHistoryLimit : Pointer.Plain[Int] = Pointer.Plain(currentPath / s"revisionHistoryLimit")
def paused : Pointer.Plain[Boolean] = Pointer.Plain(currentPath / s"paused")
def strategy : io.k8s.api.apps.v1.DeploymentStrategyPointer = io.k8s.api.apps.v1.DeploymentStrategyPointer(currentPath / s"strategy")
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy