final case class CSINodeDriver(name: String, nodeID: String, allocatable: Option[VolumeNodeResources] = None, topologyKeys: Option[Seq[String]] = None) extends Product with Serializable
CSINodeDriver holds information about the specification of one CSI driver installed on a node
- Source
- CSINodeDriver.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- CSINodeDriver
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new CSINodeDriver(name: String, nodeID: String, allocatable: Option[VolumeNodeResources] = None, topologyKeys: Option[Seq[String]] = None)
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
-
def
addTopologyKeys(newValues: String*): CSINodeDriver
Appends new values to topologyKeys
- val allocatable: Option[VolumeNodeResources]
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native() @HotSpotIntrinsicCandidate()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
mapAllocatable(f: (VolumeNodeResources) ⇒ VolumeNodeResources): CSINodeDriver
if allocatable has a value, transforms to the result of function
-
def
mapName(f: (String) ⇒ String): CSINodeDriver
transforms name to result of function
-
def
mapNodeID(f: (String) ⇒ String): CSINodeDriver
transforms nodeID to result of function
-
def
mapTopologyKeys(f: (Seq[String]) ⇒ Seq[String]): CSINodeDriver
if topologyKeys has a value, transforms to the result of function
- val name: String
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val nodeID: String
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- val topologyKeys: Option[Seq[String]]
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
def
withAllocatable(value: VolumeNodeResources): CSINodeDriver
Returns a new data with allocatable set to new value
-
def
withName(value: String): CSINodeDriver
Returns a new data with name set to new value
-
def
withNodeID(value: String): CSINodeDriver
Returns a new data with nodeID set to new value
-
def
withTopologyKeys(value: Seq[String]): CSINodeDriver
Returns a new data with topologyKeys set to new value