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
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ISCSIVolumeSource
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

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( ... ) @native() @HotSpotIntrinsicCandidate()
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. val fsType: Option[String]
  11. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. val initiatorName: Option[String]
  13. val iqn: String
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. val iscsiInterface: Option[String]
  16. val lun: Int
  17. def mapChapAuthDiscovery(f: (Boolean) ⇒ Boolean): ISCSIVolumeSource

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

  18. def mapChapAuthSession(f: (Boolean) ⇒ Boolean): ISCSIVolumeSource

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

  19. def mapFsType(f: (String) ⇒ String): ISCSIVolumeSource

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

  20. def mapInitiatorName(f: (String) ⇒ String): ISCSIVolumeSource

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

  21. def mapIqn(f: (String) ⇒ String): ISCSIVolumeSource

    transforms iqn to result of function

  22. def mapIscsiInterface(f: (String) ⇒ String): ISCSIVolumeSource

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

  23. def mapLun(f: (Int) ⇒ Int): ISCSIVolumeSource

    transforms lun to result of function

  24. def mapPortals(f: (Seq[String]) ⇒ Seq[String]): ISCSIVolumeSource

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

  25. def mapReadOnly(f: (Boolean) ⇒ Boolean): ISCSIVolumeSource

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

  26. def mapSecretRef(f: (LocalObjectReference) ⇒ LocalObjectReference): ISCSIVolumeSource

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

  27. def mapTargetPortal(f: (String) ⇒ String): ISCSIVolumeSource

    transforms targetPortal to result of function

  28. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  29. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  30. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  31. val portals: Option[Seq[String]]
  32. val readOnly: Option[Boolean]
  33. val secretRef: Option[LocalObjectReference]
  34. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  35. val targetPortal: String
  36. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  38. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. def withChapAuthDiscovery(value: Boolean): ISCSIVolumeSource

    Returns a new data with chapAuthDiscovery set to new value

  40. def withChapAuthSession(value: Boolean): ISCSIVolumeSource

    Returns a new data with chapAuthSession set to new value

  41. def withFsType(value: String): ISCSIVolumeSource

    Returns a new data with fsType set to new value

  42. def withInitiatorName(value: String): ISCSIVolumeSource

    Returns a new data with initiatorName set to new value

  43. def withIqn(value: String): ISCSIVolumeSource

    Returns a new data with iqn set to new value

  44. def withIscsiInterface(value: String): ISCSIVolumeSource

    Returns a new data with iscsiInterface set to new value

  45. def withLun(value: Int): ISCSIVolumeSource

    Returns a new data with lun set to new value

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

    Returns a new data with portals set to new value

  47. def withReadOnly(value: Boolean): ISCSIVolumeSource

    Returns a new data with readOnly set to new value

  48. def withSecretRef(value: LocalObjectReference): ISCSIVolumeSource

    Returns a new data with secretRef set to new value

  49. def withTargetPortal(value: String): ISCSIVolumeSource

    Returns a new data with targetPortal set to new value

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped