ImageInspectRootFS

@Serializable
data class ImageInspectRootFS(val type: String, val layers: List<String>? = null)

Information about the image's RootFS, including the layer IDs.

Parameters

type
layers

Constructors

Link copied to clipboard
constructor(type: String, layers: List<String>? = null)

Properties

Link copied to clipboard
@SerialName(value = "Layers")
val layers: List<String>?
Link copied to clipboard
@SerialName(value = "Type")
@Required
val type: String