FCVolumeSource

io.k8s.api.core.v1.FCVolumeSource
See theFCVolumeSource companion object
final case class FCVolumeSource(targetWWNs: Option[Seq[String]], readOnly: Option[Boolean], fsType: Option[String], wwids: Option[Seq[String]], lun: Option[Int])

Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.

Attributes

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

Members list

Value members

Concrete methods

def addTargetWWNs(newValues: String*): FCVolumeSource

Appends new values to targetWWNs

Appends new values to targetWWNs

Attributes

Source
FCVolumeSource.scala
def addWwids(newValues: String*): FCVolumeSource

Appends new values to wwids

Appends new values to wwids

Attributes

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

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

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

Attributes

Source
FCVolumeSource.scala
def mapLun(f: Int => Int): FCVolumeSource

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

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

Attributes

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

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

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

Attributes

Source
FCVolumeSource.scala
def mapTargetWWNs(f: (Seq[String]) => Seq[String]): FCVolumeSource

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

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

Attributes

Source
FCVolumeSource.scala
def mapWwids(f: (Seq[String]) => Seq[String]): FCVolumeSource

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

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

Attributes

Source
FCVolumeSource.scala
def withFsType(value: String): FCVolumeSource

Returns a new data with fsType set to new value

Returns a new data with fsType set to new value

Attributes

Source
FCVolumeSource.scala
def withLun(value: Int): FCVolumeSource

Returns a new data with lun set to new value

Returns a new data with lun set to new value

Attributes

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

Returns a new data with readOnly set to new value

Returns a new data with readOnly set to new value

Attributes

Source
FCVolumeSource.scala
def withTargetWWNs(value: Seq[String]): FCVolumeSource

Returns a new data with targetWWNs set to new value

Returns a new data with targetWWNs set to new value

Attributes

Source
FCVolumeSource.scala
def withWwids(value: Seq[String]): FCVolumeSource

Returns a new data with wwids set to new value

Returns a new data with wwids set to new value

Attributes

Source
FCVolumeSource.scala

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product