Represents an artifact produced by a build.

interface BuildArtifact {
    id?: number;
    name?: string;
    resource?: ArtifactResource;
    source?: string;
}

Properties

id?: number

The artifact ID.

name?: string

The name of the artifact.

resource?: ArtifactResource

The actual resource.

source?: string

The artifact source, which will be the ID of the job that produced this artifact. If an artifact is associated with multiple sources, this points to the first source.