FingerprintArgs

data class FingerprintArgs(val v1Name: Output<String>? = null, val v2Blob: Output<List<String>>? = null) : ConvertibleToJava<FingerprintArgs>

A set of properties that uniquely identify a given Docker image.

Constructors

Link copied to clipboard
fun FingerprintArgs(v1Name: Output<String>? = null, v2Blob: Output<List<String>>? = null)

Functions

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

Properties

Link copied to clipboard
val v1Name: Output<String>? = null

The layer-id of the final layer in the Docker image's v1 representation. This field can be used as a filter in list requests.

Link copied to clipboard
val v2Blob: Output<List<String>>? = null

The ordered list of v2 blobs that represent a given image.