final case class GCEPersistentDiskVolumeSource(pdName: String, fsType: Option[String] = None, partition: Option[Int] = None, readOnly: Option[Boolean] = None) extends Product with Serializable
Represents a Persistent Disk resource in Google Compute Engine.
A GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- GCEPersistentDiskVolumeSource
- 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): GCEPersistentDiskVolumeSource
if fsType has a value, transforms to the result of function
- def mapPartition(f: (Int) => Int): GCEPersistentDiskVolumeSource
if partition has a value, transforms to the result of function
- def mapPdName(f: (String) => String): GCEPersistentDiskVolumeSource
transforms pdName to result of function
- def mapReadOnly(f: (Boolean) => Boolean): GCEPersistentDiskVolumeSource
if readOnly has a value, transforms to the 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()
- val partition: Option[Int]
- val pdName: String
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val readOnly: Option[Boolean]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- 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): GCEPersistentDiskVolumeSource
Returns a new data with fsType set to new value
- def withPartition(value: Int): GCEPersistentDiskVolumeSource
Returns a new data with partition set to new value
- def withPdName(value: String): GCEPersistentDiskVolumeSource
Returns a new data with pdName set to new value
- def withReadOnly(value: Boolean): GCEPersistentDiskVolumeSource
Returns a new data with readOnly set to new value