LogicalVolumeGroupImpl

class LogicalVolumeGroupImpl(    val name: String,     val physicalVolumes: Set<String>,     val logicalVolumes: Map<String, Set<String>>) : LogicalVolumeGroup

LogicalVolumeGroupImpl is an implementation of the LogicalVolumeGroup interface. This class provides concrete details about a logical volume group, including the name, physical volumes, and logical volumes mapped to physical volumes.

Author

N7ghtm4r3

Parameters

name

The name of the logical volume group.

physicalVolumes

A set of physical volumes that are part of the logical volume group.

logicalVolumes

A map where the key is the logical volume name and the value is a set of physical volumes associated with it.

See also

Constructors

Link copied to clipboard
constructor(name: String, physicalVolumes: Set<String>, logicalVolumes: Map<String, Set<String>>)

Properties

Link copied to clipboard
open override val logicalVolumes: Map<String, Set<String>>
Link copied to clipboard
open override val name: String
Link copied to clipboard
open override val physicalVolumes: Set<String>