Packages

final case class RBDPersistentVolumeSource(image: String, monitors: Seq[String], readOnly: Option[Boolean] = None, fsType: Option[String] = None, secretRef: Option[SecretReference] = None, pool: Option[String] = None, keyring: Option[String] = None, user: Option[String] = None) extends Product with Serializable

Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.

Source
RBDPersistentVolumeSource.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RBDPersistentVolumeSource
  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 RBDPersistentVolumeSource(image: String, monitors: Seq[String], readOnly: Option[Boolean] = None, fsType: Option[String] = None, secretRef: Option[SecretReference] = None, pool: Option[String] = None, keyring: Option[String] = None, user: Option[String] = 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 addMonitors(newValues: String*): RBDPersistentVolumeSource

    Appends new values to monitors

  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  9. val fsType: Option[String]
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. val image: String
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. val keyring: Option[String]
  14. def mapFsType(f: (String) => String): RBDPersistentVolumeSource

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

  15. def mapImage(f: (String) => String): RBDPersistentVolumeSource

    transforms image to result of function

  16. def mapKeyring(f: (String) => String): RBDPersistentVolumeSource

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

  17. def mapMonitors(f: (Seq[String]) => Seq[String]): RBDPersistentVolumeSource

    transforms monitors to result of function

  18. def mapPool(f: (String) => String): RBDPersistentVolumeSource

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

  19. def mapReadOnly(f: (Boolean) => Boolean): RBDPersistentVolumeSource

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

  20. def mapSecretRef(f: (SecretReference) => SecretReference): RBDPersistentVolumeSource

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

  21. def mapUser(f: (String) => String): RBDPersistentVolumeSource

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

  22. val monitors: Seq[String]
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  26. val pool: Option[String]
  27. def productElementNames: Iterator[String]
    Definition Classes
    Product
  28. val readOnly: Option[Boolean]
  29. val secretRef: Option[SecretReference]
  30. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  31. val user: Option[String]
  32. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  35. def withFsType(value: String): RBDPersistentVolumeSource

    Returns a new data with fsType set to new value

  36. def withImage(value: String): RBDPersistentVolumeSource

    Returns a new data with image set to new value

  37. def withKeyring(value: String): RBDPersistentVolumeSource

    Returns a new data with keyring set to new value

  38. def withMonitors(value: Seq[String]): RBDPersistentVolumeSource

    Returns a new data with monitors set to new value

  39. def withPool(value: String): RBDPersistentVolumeSource

    Returns a new data with pool set to new value

  40. def withReadOnly(value: Boolean): RBDPersistentVolumeSource

    Returns a new data with readOnly set to new value

  41. def withSecretRef(value: SecretReference): RBDPersistentVolumeSource

    Returns a new data with secretRef set to new value

  42. def withUser(value: String): RBDPersistentVolumeSource

    Returns a new data with user set to new value

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped