
com.pulumi.googlenative.containeranalysis.v1.kotlin.outputs.FingerprintResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.containeranalysis.v1.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* A set of properties that uniquely identify a given Docker image.
* @property v1Name The layer ID of the final layer in the Docker image's v1 representation.
* @property v2Blob The ordered list of v2 blobs that represent a given image.
* @property v2Name The name of the image's v2 blobs computed via: [bottom] := v2_blobbottom := sha256(v2_blob[N] + " " + v2_name[N+1]) Only the name of the final blob is kept.
*/
public data class FingerprintResponse(
public val v1Name: String,
public val v2Blob: List,
public val v2Name: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.containeranalysis.v1.outputs.FingerprintResponse): FingerprintResponse = FingerprintResponse(
v1Name = javaType.v1Name(),
v2Blob = javaType.v2Blob().map({ args0 -> args0 }),
v2Name = javaType.v2Name(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy