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
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CSIDriverSpec
  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 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( ... ) @native() @HotSpotIntrinsicCandidate()
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. val fsGroupPolicy: Option[String]
  11. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. def mapAttachRequired(f: (Boolean) ⇒ Boolean): CSIDriverSpec

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

  14. def mapFsGroupPolicy(f: (String) ⇒ String): CSIDriverSpec

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

  15. def mapPodInfoOnMount(f: (Boolean) ⇒ Boolean): CSIDriverSpec

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

  16. def mapRequiresRepublish(f: (Boolean) ⇒ Boolean): CSIDriverSpec

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

  17. def mapSeLinuxMount(f: (Boolean) ⇒ Boolean): CSIDriverSpec

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

  18. def mapStorageCapacity(f: (Boolean) ⇒ Boolean): CSIDriverSpec

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

  19. def mapTokenRequests(f: (Seq[TokenRequest]) ⇒ Seq[TokenRequest]): CSIDriverSpec

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

  20. def mapVolumeLifecycleModes(f: (Seq[String]) ⇒ Seq[String]): CSIDriverSpec

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

  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  24. val podInfoOnMount: Option[Boolean]
  25. val requiresRepublish: Option[Boolean]
  26. val seLinuxMount: Option[Boolean]
  27. val storageCapacity: Option[Boolean]
  28. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  29. val tokenRequests: Option[Seq[TokenRequest]]
  30. val volumeLifecycleModes: Option[Seq[String]]
  31. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. def withAttachRequired(value: Boolean): CSIDriverSpec

    Returns a new data with attachRequired set to new value

  35. def withFsGroupPolicy(value: String): CSIDriverSpec

    Returns a new data with fsGroupPolicy set to new value

  36. def withPodInfoOnMount(value: Boolean): CSIDriverSpec

    Returns a new data with podInfoOnMount set to new value

  37. def withRequiresRepublish(value: Boolean): CSIDriverSpec

    Returns a new data with requiresRepublish set to new value

  38. def withSeLinuxMount(value: Boolean): CSIDriverSpec

    Returns a new data with seLinuxMount set to new value

  39. def withStorageCapacity(value: Boolean): CSIDriverSpec

    Returns a new data with storageCapacity set to new value

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

    Returns a new data with tokenRequests set to new value

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

    Returns a new data with volumeLifecycleModes 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