Packages

final case class ISCSIPersistentVolumeSource(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[SecretReference] = None, initiatorName: Option[String] = None, iscsiInterface: Option[String] = None, chapAuthSession: Option[Boolean] = None) extends Product with Serializable

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

Source
ISCSIPersistentVolumeSource.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ISCSIPersistentVolumeSource
  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 ISCSIPersistentVolumeSource(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[SecretReference] = 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*): ISCSIPersistentVolumeSource

    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): ISCSIPersistentVolumeSource

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

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

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

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

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

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

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

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

    transforms iqn to result of function

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

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

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

    transforms lun to result of function

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

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

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

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

  27. def mapSecretRef(f: (SecretReference) => SecretReference): ISCSIPersistentVolumeSource

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

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

    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[SecretReference]
  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): ISCSIPersistentVolumeSource

    Returns a new data with chapAuthDiscovery set to new value

  42. def withChapAuthSession(value: Boolean): ISCSIPersistentVolumeSource

    Returns a new data with chapAuthSession set to new value

  43. def withFsType(value: String): ISCSIPersistentVolumeSource

    Returns a new data with fsType set to new value

  44. def withInitiatorName(value: String): ISCSIPersistentVolumeSource

    Returns a new data with initiatorName set to new value

  45. def withIqn(value: String): ISCSIPersistentVolumeSource

    Returns a new data with iqn set to new value

  46. def withIscsiInterface(value: String): ISCSIPersistentVolumeSource

    Returns a new data with iscsiInterface set to new value

  47. def withLun(value: Int): ISCSIPersistentVolumeSource

    Returns a new data with lun set to new value

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

    Returns a new data with portals set to new value

  49. def withReadOnly(value: Boolean): ISCSIPersistentVolumeSource

    Returns a new data with readOnly set to new value

  50. def withSecretRef(value: SecretReference): ISCSIPersistentVolumeSource

    Returns a new data with secretRef set to new value

  51. def withTargetPortal(value: String): ISCSIPersistentVolumeSource

    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