
com.pulumi.googlenative.containeranalysis.v1.kotlin.outputs.ArtifactResponse.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
/**
* Artifact describes a build product.
* @property checksum Hash or checksum value of a binary, or Docker Registry 2.0 digest of a container.
* @property names Related artifact names. This may be the path to a binary or jar file, or in the case of a container build, the name used to push the container image to Google Container Registry, as presented to `docker push`. Note that a single Artifact ID can have multiple names, for example if two tags are applied to one image.
*/
public data class ArtifactResponse(
public val checksum: String,
public val names: List,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.containeranalysis.v1.outputs.ArtifactResponse): ArtifactResponse = ArtifactResponse(
checksum = javaType.checksum(),
names = javaType.names().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy