ArtifactResponse

data class ArtifactResponse(val checksum: String, val name: String, val names: List<String>)

Artifact describes a build product.

Constructors

Link copied to clipboard
fun ArtifactResponse(checksum: String, name: String, names: List<String>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Hash or checksum value of a binary, or Docker Registry 2.0 digest of a container.

Link copied to clipboard

Name of the artifact. 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. This field is deprecated in favor of the plural names field; it continues to exist here to allow existing BuildProvenance serialized to json in google.devtools.containeranalysis.v1alpha1.BuildDetails.provenance_bytes to deserialize back into proto.

Link copied to clipboard

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.