Packages

final case class ISCSIVolumeSource(iqn: String, targetPortal: String, lun: Int, portals: Option[Seq[String]] = None, readOnly: Option[Boolean] = None, chapAuthDiscovery: Option[Boolean] = None, fsType: Option[String] = None, secretRef: Option[LocalObjectReference] = None, initiatorName: Option[String] = None, iscsiInterface: Option[String] = None, chapAuthSession: Option[Boolean] = None) extends Product with Serializable

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

Source
ISCSIVolumeSource.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ISCSIVolumeSource
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ISCSIVolumeSource(iqn: String, targetPortal: String, lun: Int, portals: Option[Seq[String]] = None, readOnly: Option[Boolean] = None, chapAuthDiscovery: Option[Boolean] = None, fsType: Option[String] = None, secretRef: Option[LocalObjectReference] = None, initiatorName: Option[String] = None, iscsiInterface: Option[String] = None, chapAuthSession: Option[Boolean] = None)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def addPortals(newValues: String*): ISCSIVolumeSource

    Appends new values to portals

  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. val chapAuthDiscovery: Option[Boolean]
  7. val chapAuthSession: Option[Boolean]
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  11. val fsType: Option[String]
  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. val initiatorName: Option[String]
  14. val iqn: String
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. val iscsiInterface: Option[String]
  17. val lun: Int
  18. def mapChapAuthDiscovery(f: (Boolean) => Boolean): ISCSIVolumeSource

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

  19. def mapChapAuthSession(f: (Boolean) => Boolean): ISCSIVolumeSource

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

  20. def mapFsType(f: (String) => String): ISCSIVolumeSource

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

  21. def mapInitiatorName(f: (String) => String): ISCSIVolumeSource

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

  22. def mapIqn(f: (String) => String): ISCSIVolumeSource

    transforms iqn to result of function

  23. def mapIscsiInterface(f: (String) => String): ISCSIVolumeSource

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

  24. def mapLun(f: (Int) => Int): ISCSIVolumeSource

    transforms lun to result of function

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

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

  26. def mapReadOnly(f: (Boolean) => Boolean): ISCSIVolumeSource

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

  27. def mapSecretRef(f: (LocalObjectReference) => LocalObjectReference): ISCSIVolumeSource

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

  28. def mapTargetPortal(f: (String) => String): ISCSIVolumeSource

    transforms targetPortal to result of function

  29. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  30. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  31. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  32. val portals: Option[Seq[String]]
  33. def productElementNames: Iterator[String]
    Definition Classes
    Product
  34. val readOnly: Option[Boolean]
  35. val secretRef: Option[LocalObjectReference]
  36. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  37. val targetPortal: String
  38. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  39. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  40. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  41. def withChapAuthDiscovery(value: Boolean): ISCSIVolumeSource

    Returns a new data with chapAuthDiscovery set to new value

  42. def withChapAuthSession(value: Boolean): ISCSIVolumeSource

    Returns a new data with chapAuthSession set to new value

  43. def withFsType(value: String): ISCSIVolumeSource

    Returns a new data with fsType set to new value

  44. def withInitiatorName(value: String): ISCSIVolumeSource

    Returns a new data with initiatorName set to new value

  45. def withIqn(value: String): ISCSIVolumeSource

    Returns a new data with iqn set to new value

  46. def withIscsiInterface(value: String): ISCSIVolumeSource

    Returns a new data with iscsiInterface set to new value

  47. def withLun(value: Int): ISCSIVolumeSource

    Returns a new data with lun set to new value

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

    Returns a new data with portals set to new value

  49. def withReadOnly(value: Boolean): ISCSIVolumeSource

    Returns a new data with readOnly set to new value

  50. def withSecretRef(value: LocalObjectReference): ISCSIVolumeSource

    Returns a new data with secretRef set to new value

  51. def withTargetPortal(value: String): ISCSIVolumeSource

    Returns a new data with targetPortal set to new value

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped