MountVolumeOptionsDriverConfig

@Serializable
data class MountVolumeOptionsDriverConfig(val name: String? = null, val options: Map<String, String>? = null)

Map of driver specific options

Parameters

name

Name of the driver to use to create the volume.

options

key/value map of driver specific options.

Constructors

Link copied to clipboard
constructor(name: String? = null, options: Map<String, String>? = null)

Properties

Link copied to clipboard
@SerialName(value = "Name")
val name: String?
Link copied to clipboard
@SerialName(value = "Options")
val options: Map<String, String>?