final case class CinderPersistentVolumeSource(volumeID: String, fsType: Option[String] = None, readOnly: Option[Boolean] = None, secretRef: Option[SecretReference] = None) extends Product with Serializable
Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- CinderPersistentVolumeSource
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- val fsType: Option[String]
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def mapFsType(f: (String) => String): CinderPersistentVolumeSource
if fsType has a value, transforms to the result of function
- def mapReadOnly(f: (Boolean) => Boolean): CinderPersistentVolumeSource
if readOnly has a value, transforms to the result of function
- def mapSecretRef(f: (SecretReference) => SecretReference): CinderPersistentVolumeSource
if secretRef has a value, transforms to the result of function
- def mapVolumeID(f: (String) => String): CinderPersistentVolumeSource
transforms volumeID to result of function
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val readOnly: Option[Boolean]
- val secretRef: Option[SecretReference]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val volumeID: String
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def withFsType(value: String): CinderPersistentVolumeSource
Returns a new data with fsType set to new value
- def withReadOnly(value: Boolean): CinderPersistentVolumeSource
Returns a new data with readOnly set to new value
- def withSecretRef(value: SecretReference): CinderPersistentVolumeSource
Returns a new data with secretRef set to new value
- def withVolumeID(value: String): CinderPersistentVolumeSource
Returns a new data with volumeID set to new value