DriverData

@Serializable
data class DriverData(val name: String, val data: Map<String, String>)

Information about the storage driver used to store the container's and image's filesystem.

Parameters

name

Name of the storage driver.

`data`

Low-level storage metadata, provided as key/value pairs. This information is driver-specific, and depends on the storage-driver in use, and should be used for informational purposes only.

Constructors

Link copied to clipboard
constructor(name: String, data: Map<String, String>)

Properties

Link copied to clipboard
@SerialName(value = "Data")
@Required
val data: Map<String, String>
Link copied to clipboard
@SerialName(value = "Name")
@Required
val name: String