DerivedArgs

data class DerivedArgs(val fingerprint: Output<FingerprintArgs>? = null, val layerInfo: Output<List<LayerArgs>>? = null) : ConvertibleToJava<DerivedArgs>

Derived describes the derived image portion (Occurrence) of the DockerImage relationship. This image would be produced from a Dockerfile with FROM .

Constructors

Link copied to clipboard
fun DerivedArgs(fingerprint: Output<FingerprintArgs>? = null, layerInfo: Output<List<LayerArgs>>? = null)

Functions

Link copied to clipboard
open override fun toJava(): DerivedArgs

Properties

Link copied to clipboard
val fingerprint: Output<FingerprintArgs>? = null

The fingerprint of the derived image.

Link copied to clipboard
val layerInfo: Output<List<LayerArgs>>? = null

This contains layer-specific metadata, if populated it has length "distance" and is ordered with distance being the layer immediately following the base image and 1 being the final layer.