SlsaProvenanceArgs

data class SlsaProvenanceArgs(val builder: Output<SlsaBuilderArgs>? = null, val materials: Output<List<MaterialArgs>>? = null, val metadata: Output<SlsaMetadataArgs>? = null, val recipe: Output<SlsaRecipeArgs>? = null) : ConvertibleToJava<SlsaProvenanceArgs>

SlsaProvenance is the slsa provenance as defined by the slsa spec.

Constructors

Link copied to clipboard
fun SlsaProvenanceArgs(builder: Output<SlsaBuilderArgs>? = null, materials: Output<List<MaterialArgs>>? = null, metadata: Output<SlsaMetadataArgs>? = null, recipe: Output<SlsaRecipeArgs>? = null)

Functions

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

Properties

Link copied to clipboard
val builder: Output<SlsaBuilderArgs>? = null

builder is the builder of this provenance

Link copied to clipboard
val materials: Output<List<MaterialArgs>>? = null

The collection of artifacts that influenced the build including sources, dependencies, build tools, base images, and so on. This is considered to be incomplete unless metadata.completeness.materials is true. Unset or null is equivalent to empty.

Link copied to clipboard
val metadata: Output<SlsaMetadataArgs>? = null

metadata is the metadata of the provenance

Link copied to clipboard
val recipe: Output<SlsaRecipeArgs>? = null

Identifies the configuration used for the build. When combined with materials, this SHOULD fully describe the build, such that re-running this recipe results in bit-for-bit identical output (if the build is reproducible).