ClusterVolumeSpecAccessModeAccessibilityRequirements

@Serializable
data class ClusterVolumeSpecAccessModeAccessibilityRequirements(val requisite: List<Map<String, String>>? = null, val preferred: List<Map<String, String>>? = null)

Requirements for the accessible topology of the volume. These fields are optional. For an in-depth description of what these fields mean, see the CSI specification.

Parameters

requisite

A list of required topologies, at least one of which the volume must be accessible from.

preferred

A list of topologies that the volume should attempt to be provisioned in.

Constructors

constructor(requisite: List<Map<String, String>>? = null, preferred: List<Map<String, String>>? = null)

Properties

Link copied to clipboard
@SerialName(value = "Preferred")
val preferred: List<Map<String, String>>?
Link copied to clipboard
@SerialName(value = "Requisite")
val requisite: List<Map<String, String>>?