ClusterVolumeSpecAccessModeCapacityRange

@Serializable
data class ClusterVolumeSpecAccessModeCapacityRange(val requiredBytes: Long? = null, val limitBytes: Long? = null)

The desired capacity that the volume should be created with. If empty, the plugin will decide the capacity.

Parameters

requiredBytes

The volume must be at least this big. The value of 0 indicates an unspecified minimum

limitBytes

The volume must not be bigger than this. The value of 0 indicates an unspecified maximum.

Constructors

Link copied to clipboard
constructor(requiredBytes: Long? = null, limitBytes: Long? = null)

Properties

Link copied to clipboard
@SerialName(value = "LimitBytes")
val limitBytes: Long?
Link copied to clipboard
@SerialName(value = "RequiredBytes")
val requiredBytes: Long?