FlexPersistentVolumeSource

io.k8s.api.core.v1.FlexPersistentVolumeSource
See theFlexPersistentVolumeSource companion object
final case class FlexPersistentVolumeSource(driver: String, readOnly: Option[Boolean], fsType: Option[String], secretRef: Option[SecretReference], options: Option[Map[String, String]])

FlexPersistentVolumeSource represents a generic persistent volume resource that is provisioned/attached using an exec based plugin.

Attributes

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

Members list

Value members

Concrete methods

def addOptions(newValues: (String, String)*): FlexPersistentVolumeSource

Adds new values to options

Adds new values to options

Attributes

Source
FlexPersistentVolumeSource.scala
def mapDriver(f: String => String): FlexPersistentVolumeSource

transforms driver to result of function

transforms driver to result of function

Attributes

Source
FlexPersistentVolumeSource.scala
def mapFsType(f: String => String): FlexPersistentVolumeSource

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

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

Attributes

Source
FlexPersistentVolumeSource.scala
def mapOptions(f: (Map[String, String]) => Map[String, String]): FlexPersistentVolumeSource

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

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

Attributes

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

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

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

Attributes

Source
FlexPersistentVolumeSource.scala

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

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

Attributes

Source
FlexPersistentVolumeSource.scala

Returns a new data with driver set to new value

Returns a new data with driver set to new value

Attributes

Source
FlexPersistentVolumeSource.scala

Returns a new data with fsType set to new value

Returns a new data with fsType set to new value

Attributes

Source
FlexPersistentVolumeSource.scala
def withOptions(value: Map[String, String]): FlexPersistentVolumeSource

Returns a new data with options set to new value

Returns a new data with options set to new value

Attributes

Source
FlexPersistentVolumeSource.scala

Returns a new data with readOnly set to new value

Returns a new data with readOnly set to new value

Attributes

Source
FlexPersistentVolumeSource.scala

Returns a new data with secretRef set to new value

Returns a new data with secretRef set to new value

Attributes

Source
FlexPersistentVolumeSource.scala

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product