Show / Hide Table of Contents

Class Artifacts

Artifacts produced by a build that should be uploaded upon successful completion of all build steps.

Inheritance
object
Artifacts
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.CloudBuild.v1.Data
Assembly: Google.Apis.CloudBuild.v1.dll
Syntax
public class Artifacts : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

GoModules

Optional. A list of Go modules to be uploaded to Artifact Registry upon successful completion of all build steps. If any objects fail to be pushed, the build is marked FAILURE.

Declaration
[JsonProperty("goModules")]
public virtual IList<GoModule> GoModules { get; set; }
Property Value
Type Description
IList<GoModule>

Images

A list of images to be pushed upon the successful completion of all build steps. The images will be pushed using the builder service account's credentials. The digests of the pushed images will be stored in the Build resource's results field. If any of the images fail to be pushed, the build is marked FAILURE.

Declaration
[JsonProperty("images")]
public virtual IList<string> Images { get; set; }
Property Value
Type Description
IList<string>

MavenArtifacts

A list of Maven artifacts to be uploaded to Artifact Registry upon successful completion of all build steps. Artifacts in the workspace matching specified paths globs will be uploaded to the specified Artifact Registry repository using the builder service account's credentials. If any artifacts fail to be pushed, the build is marked FAILURE.

Declaration
[JsonProperty("mavenArtifacts")]
public virtual IList<MavenArtifact> MavenArtifacts { get; set; }
Property Value
Type Description
IList<MavenArtifact>

NpmPackages

A list of npm packages to be uploaded to Artifact Registry upon successful completion of all build steps. Npm packages in the specified paths will be uploaded to the specified Artifact Registry repository using the builder service account's credentials. If any packages fail to be pushed, the build is marked FAILURE.

Declaration
[JsonProperty("npmPackages")]
public virtual IList<NpmPackage> NpmPackages { get; set; }
Property Value
Type Description
IList<NpmPackage>

Objects

A list of objects to be uploaded to Cloud Storage upon successful completion of all build steps. Files in the workspace matching specified paths globs will be uploaded to the specified Cloud Storage location using the builder service account's credentials. The location and generation of the uploaded objects will be stored in the Build resource's results field. If any objects fail to be pushed, the build is marked FAILURE.

Declaration
[JsonProperty("objects")]
public virtual ArtifactObjects Objects { get; set; }
Property Value
Type Description
ArtifactObjects

PythonPackages

A list of Python packages to be uploaded to Artifact Registry upon successful completion of all build steps. The build service account credentials will be used to perform the upload. If any objects fail to be pushed, the build is marked FAILURE.

Declaration
[JsonProperty("pythonPackages")]
public virtual IList<PythonPackage> PythonPackages { get; set; }
Property Value
Type Description
IList<PythonPackage>

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX