final case class ReplicationControllerSpec(minReadySeconds: Option[Int] = None, replicas: Option[Int] = None, selector: Option[Map[String, String]] = None, template: Option[PodTemplateSpec] = None) extends Product with Serializable
ReplicationControllerSpec is the specification of a replication controller.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ReplicationControllerSpec
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def addSelector(newValues: (String, String)*): ReplicationControllerSpec
Adds new values to selector
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def mapMinReadySeconds(f: (Int) => Int): ReplicationControllerSpec
if minReadySeconds has a value, transforms to the result of function
- def mapReplicas(f: (Int) => Int): ReplicationControllerSpec
if replicas has a value, transforms to the result of function
- def mapSelector(f: (Map[String, String]) => Map[String, String]): ReplicationControllerSpec
if selector has a value, transforms to the result of function
- def mapTemplate(f: (PodTemplateSpec) => PodTemplateSpec): ReplicationControllerSpec
if template has a value, transforms to the result of function
- val minReadySeconds: Option[Int]
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val replicas: Option[Int]
- val selector: Option[Map[String, String]]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val template: Option[PodTemplateSpec]
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def withMinReadySeconds(value: Int): ReplicationControllerSpec
Returns a new data with minReadySeconds set to new value
- def withReplicas(value: Int): ReplicationControllerSpec
Returns a new data with replicas set to new value
- def withSelector(value: Map[String, String]): ReplicationControllerSpec
Returns a new data with selector set to new value
- def withTemplate(value: PodTemplateSpec): ReplicationControllerSpec
Returns a new data with template set to new value