VolumeMountStatus

io.k8s.api.core.v1.VolumeMountStatus
See theVolumeMountStatus companion object
final case class VolumeMountStatus(mountPath: String, name: String, readOnly: Option[Boolean], recursiveReadOnly: Option[String])

VolumeMountStatus shows status of volume mounts.

Attributes

Companion
object
Source
VolumeMountStatus.scala
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

def mapMountPath(f: String => String): VolumeMountStatus

transforms mountPath to result of function

transforms mountPath to result of function

Attributes

Source
VolumeMountStatus.scala
def mapName(f: String => String): VolumeMountStatus

transforms name to result of function

transforms name to result of function

Attributes

Source
VolumeMountStatus.scala
def mapReadOnly(f: Boolean => Boolean): VolumeMountStatus

if readOnly has a value, transforms to the result of function

if readOnly has a value, transforms to the result of function

Attributes

Source
VolumeMountStatus.scala
def mapRecursiveReadOnly(f: String => String): VolumeMountStatus

if recursiveReadOnly has a value, transforms to the result of function

if recursiveReadOnly has a value, transforms to the result of function

Attributes

Source
VolumeMountStatus.scala
def withMountPath(value: String): VolumeMountStatus

Returns a new data with mountPath set to new value

Returns a new data with mountPath set to new value

Attributes

Source
VolumeMountStatus.scala
def withName(value: String): VolumeMountStatus

Returns a new data with name set to new value

Returns a new data with name set to new value

Attributes

Source
VolumeMountStatus.scala
def withReadOnly(value: Boolean): VolumeMountStatus

Returns a new data with readOnly set to new value

Returns a new data with readOnly set to new value

Attributes

Source
VolumeMountStatus.scala

Returns a new data with recursiveReadOnly set to new value

Returns a new data with recursiveReadOnly set to new value

Attributes

Source
VolumeMountStatus.scala

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product