final case class CSIDriverSpec(volumeLifecycleModes: Option[Seq[String]] = None, podInfoOnMount: Option[Boolean] = None, attachRequired: Option[Boolean] = None, requiresRepublish: Option[Boolean] = None, fsGroupPolicy: Option[String] = None, storageCapacity: Option[Boolean] = None, tokenRequests: Option[Seq[TokenRequest]] = None, seLinuxMount: Option[Boolean] = None) extends Product with Serializable

CSIDriverSpec is the specification of a CSIDriver.

Source
CSIDriverSpec.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CSIDriverSpec
  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 CSIDriverSpec(volumeLifecycleModes: Option[Seq[String]] = None, podInfoOnMount: Option[Boolean] = None, attachRequired: Option[Boolean] = None, requiresRepublish: Option[Boolean] = None, fsGroupPolicy: Option[String] = None, storageCapacity: Option[Boolean] = None, tokenRequests: Option[Seq[TokenRequest]] = None, seLinuxMount: 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 addTokenRequests(newValues: TokenRequest*): CSIDriverSpec

    Appends new values to tokenRequests

  5. def addVolumeLifecycleModes(newValues: String*): CSIDriverSpec

    Appends new values to volumeLifecycleModes

  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. val attachRequired: 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 fsGroupPolicy: Option[String]
  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. def mapAttachRequired(f: (Boolean) => Boolean): CSIDriverSpec

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

  15. def mapFsGroupPolicy(f: (String) => String): CSIDriverSpec

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

  16. def mapPodInfoOnMount(f: (Boolean) => Boolean): CSIDriverSpec

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

  17. def mapRequiresRepublish(f: (Boolean) => Boolean): CSIDriverSpec

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

  18. def mapSeLinuxMount(f: (Boolean) => Boolean): CSIDriverSpec

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

  19. def mapStorageCapacity(f: (Boolean) => Boolean): CSIDriverSpec

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

  20. def mapTokenRequests(f: (Seq[TokenRequest]) => Seq[TokenRequest]): CSIDriverSpec

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

  21. def mapVolumeLifecycleModes(f: (Seq[String]) => Seq[String]): CSIDriverSpec

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

  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. val podInfoOnMount: Option[Boolean]
  26. def productElementNames: Iterator[String]
    Definition Classes
    Product
  27. val requiresRepublish: Option[Boolean]
  28. val seLinuxMount: Option[Boolean]
  29. val storageCapacity: Option[Boolean]
  30. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  31. val tokenRequests: Option[Seq[TokenRequest]]
  32. val volumeLifecycleModes: Option[Seq[String]]
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  36. def withAttachRequired(value: Boolean): CSIDriverSpec

    Returns a new data with attachRequired set to new value

  37. def withFsGroupPolicy(value: String): CSIDriverSpec

    Returns a new data with fsGroupPolicy set to new value

  38. def withPodInfoOnMount(value: Boolean): CSIDriverSpec

    Returns a new data with podInfoOnMount set to new value

  39. def withRequiresRepublish(value: Boolean): CSIDriverSpec

    Returns a new data with requiresRepublish set to new value

  40. def withSeLinuxMount(value: Boolean): CSIDriverSpec

    Returns a new data with seLinuxMount set to new value

  41. def withStorageCapacity(value: Boolean): CSIDriverSpec

    Returns a new data with storageCapacity set to new value

  42. def withTokenRequests(value: Seq[TokenRequest]): CSIDriverSpec

    Returns a new data with tokenRequests set to new value

  43. def withVolumeLifecycleModes(value: Seq[String]): CSIDriverSpec

    Returns a new data with volumeLifecycleModes set to new value

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped