final case class EnvVarSource(configMapKeyRef: Option[ConfigMapKeySelector] = None, fieldRef: Option[ObjectFieldSelector] = None, resourceFieldRef: Option[ResourceFieldSelector] = None, secretKeyRef: Option[SecretKeySelector] = None) extends Product with Serializable
EnvVarSource represents a source for the value of an EnvVar.
- Source
- EnvVarSource.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- EnvVarSource
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new EnvVarSource(configMapKeyRef: Option[ConfigMapKeySelector] = None, fieldRef: Option[ObjectFieldSelector] = None, resourceFieldRef: Option[ResourceFieldSelector] = None, secretKeyRef: Option[SecretKeySelector] = None)
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
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- val configMapKeyRef: Option[ConfigMapKeySelector]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val fieldRef: Option[ObjectFieldSelector]
- 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 mapConfigMapKeyRef(f: (ConfigMapKeySelector) => ConfigMapKeySelector): EnvVarSource
if configMapKeyRef has a value, transforms to the result of function
- def mapFieldRef(f: (ObjectFieldSelector) => ObjectFieldSelector): EnvVarSource
if fieldRef has a value, transforms to the result of function
- def mapResourceFieldRef(f: (ResourceFieldSelector) => ResourceFieldSelector): EnvVarSource
if resourceFieldRef has a value, transforms to the result of function
- def mapSecretKeyRef(f: (SecretKeySelector) => SecretKeySelector): EnvVarSource
if secretKeyRef has a value, transforms to the result of function
- 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 resourceFieldRef: Option[ResourceFieldSelector]
- val secretKeyRef: Option[SecretKeySelector]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- 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 withConfigMapKeyRef(value: ConfigMapKeySelector): EnvVarSource
Returns a new data with configMapKeyRef set to new value
- def withFieldRef(value: ObjectFieldSelector): EnvVarSource
Returns a new data with fieldRef set to new value
- def withResourceFieldRef(value: ResourceFieldSelector): EnvVarSource
Returns a new data with resourceFieldRef set to new value
- def withSecretKeyRef(value: SecretKeySelector): EnvVarSource
Returns a new data with secretKeyRef set to new value