final case class VolumeMount(name: String, mountPath: String, subPath: Option[String] = None, mountPropagation: Option[String] = None, readOnly: Option[Boolean] = None, subPathExpr: Option[String] = None) extends Product with Serializable
VolumeMount describes a mounting of a Volume within a container.
- Source
- VolumeMount.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- VolumeMount
- 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
- 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 mapMountPath(f: (String) => String): VolumeMount
transforms mountPath to result of function
- def mapMountPropagation(f: (String) => String): VolumeMount
if mountPropagation has a value, transforms to the result of function
- def mapName(f: (String) => String): VolumeMount
transforms name to result of function
- def mapReadOnly(f: (Boolean) => Boolean): VolumeMount
if readOnly has a value, transforms to the result of function
- def mapSubPath(f: (String) => String): VolumeMount
if subPath has a value, transforms to the result of function
- def mapSubPathExpr(f: (String) => String): VolumeMount
if subPathExpr has a value, transforms to the result of function
- val mountPath: String
- val mountPropagation: Option[String]
- val name: String
- 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 readOnly: Option[Boolean]
- val subPath: Option[String]
- val subPathExpr: Option[String]
- 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 withMountPath(value: String): VolumeMount
Returns a new data with mountPath set to new value
- def withMountPropagation(value: String): VolumeMount
Returns a new data with mountPropagation set to new value
- def withName(value: String): VolumeMount
Returns a new data with name set to new value
- def withReadOnly(value: Boolean): VolumeMount
Returns a new data with readOnly set to new value
- def withSubPath(value: String): VolumeMount
Returns a new data with subPath set to new value
- def withSubPathExpr(value: String): VolumeMount
Returns a new data with subPathExpr set to new value