ISCSIVolumeSource

io.k8s.api.core.v1.ISCSIVolumeSource
See theISCSIVolumeSource companion object
final case class ISCSIVolumeSource(iqn: String, targetPortal: String, lun: Int, portals: Option[Seq[String]], readOnly: Option[Boolean], chapAuthDiscovery: Option[Boolean], fsType: Option[String], secretRef: Option[LocalObjectReference], initiatorName: Option[String], iscsiInterface: Option[String], chapAuthSession: Option[Boolean])

Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.

Attributes

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

Members list

Value members

Concrete methods

def addPortals(newValues: String*): ISCSIVolumeSource

Appends new values to portals

Appends new values to portals

Attributes

Source
ISCSIVolumeSource.scala
def mapChapAuthDiscovery(f: Boolean => Boolean): ISCSIVolumeSource

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

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

Attributes

Source
ISCSIVolumeSource.scala
def mapChapAuthSession(f: Boolean => Boolean): ISCSIVolumeSource

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

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

Attributes

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

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

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

Attributes

Source
ISCSIVolumeSource.scala
def mapInitiatorName(f: String => String): ISCSIVolumeSource

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

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

Attributes

Source
ISCSIVolumeSource.scala
def mapIqn(f: String => String): ISCSIVolumeSource

transforms iqn to result of function

transforms iqn to result of function

Attributes

Source
ISCSIVolumeSource.scala
def mapIscsiInterface(f: String => String): ISCSIVolumeSource

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

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

Attributes

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

transforms lun to result of function

transforms lun to result of function

Attributes

Source
ISCSIVolumeSource.scala
def mapPortals(f: Seq[String] => Seq[String]): ISCSIVolumeSource

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

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

Attributes

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

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

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

Attributes

Source
ISCSIVolumeSource.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
ISCSIVolumeSource.scala
def mapTargetPortal(f: String => String): ISCSIVolumeSource

transforms targetPortal to result of function

transforms targetPortal to result of function

Attributes

Source
ISCSIVolumeSource.scala

Returns a new data with chapAuthDiscovery set to new value

Returns a new data with chapAuthDiscovery set to new value

Attributes

Source
ISCSIVolumeSource.scala
def withChapAuthSession(value: Boolean): ISCSIVolumeSource

Returns a new data with chapAuthSession set to new value

Returns a new data with chapAuthSession set to new value

Attributes

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

Returns a new data with fsType set to new value

Returns a new data with fsType set to new value

Attributes

Source
ISCSIVolumeSource.scala
def withInitiatorName(value: String): ISCSIVolumeSource

Returns a new data with initiatorName set to new value

Returns a new data with initiatorName set to new value

Attributes

Source
ISCSIVolumeSource.scala
def withIqn(value: String): ISCSIVolumeSource

Returns a new data with iqn set to new value

Returns a new data with iqn set to new value

Attributes

Source
ISCSIVolumeSource.scala

Returns a new data with iscsiInterface set to new value

Returns a new data with iscsiInterface set to new value

Attributes

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

Returns a new data with lun set to new value

Returns a new data with lun set to new value

Attributes

Source
ISCSIVolumeSource.scala
def withPortals(value: Seq[String]): ISCSIVolumeSource

Returns a new data with portals set to new value

Returns a new data with portals set to new value

Attributes

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

Returns a new data with readOnly set to new value

Returns a new data with readOnly set to new value

Attributes

Source
ISCSIVolumeSource.scala

Returns a new data with secretRef set to new value

Returns a new data with secretRef set to new value

Attributes

Source
ISCSIVolumeSource.scala
def withTargetPortal(value: String): ISCSIVolumeSource

Returns a new data with targetPortal set to new value

Returns a new data with targetPortal set to new value

Attributes

Source
ISCSIVolumeSource.scala

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product