case class CSINodeSpec(drivers: Vector[CSINodeDriver]) extends Product with Serializable

CSINodeSpec holds information about the specification of all CSI drivers installed on a node

drivers

drivers is a list of information of all CSI Drivers existing on a node. If all drivers in the list are uninstalled, this can become empty.

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CSINodeSpec
  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 CSINodeSpec(drivers: Vector[CSINodeDriver])

    drivers

    drivers is a list of information of all CSI Drivers existing on a node. If all drivers in the list are uninstalled, this can become empty.

Value Members

  1. val drivers: Vector[CSINodeDriver]
  2. def getDrivers: IO[K8sFailure, Vector[CSINodeDriver]]

    drivers is a list of information of all CSI Drivers existing on a node.

    drivers is a list of information of all CSI Drivers existing on a node. If all drivers in the list are uninstalled, this can become empty.

    This effect always succeeds, it is safe to use the field drivers directly.