Show / Hide Table of Contents

Class ContaineranalysisGoogleDevtoolsCloudbuildV1Results

Artifacts created by the build pipeline.

Inheritance
System.Object
ContaineranalysisGoogleDevtoolsCloudbuildV1Results
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.ContainerAnalysis.v1beta1.Data
Assembly: Google.Apis.ContainerAnalysis.v1beta1.dll
Syntax
public class ContaineranalysisGoogleDevtoolsCloudbuildV1Results : IDirectResponseSchema

Properties

ArtifactManifest

Path to the artifact manifest. Only populated when artifacts are uploaded.

Declaration
[JsonProperty("artifactManifest")]
public virtual string ArtifactManifest { get; set; }
Property Value
Type Description
System.String

ArtifactTiming

Time to push all non-container artifacts.

Declaration
[JsonProperty("artifactTiming")]
public virtual ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan ArtifactTiming { get; set; }
Property Value
Type Description
ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan

BuildStepImages

List of build step digests, in the order corresponding to build step indices.

Declaration
[JsonProperty("buildStepImages")]
public virtual IList<string> BuildStepImages { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

BuildStepOutputs

List of build step outputs, produced by builder images, in the order corresponding to build step indices. Cloud Builders can produce this output by writing to $BUILDER_OUTPUT/output. Only the first 4KB of data is stored.

Declaration
[JsonProperty("buildStepOutputs")]
public virtual IList<string> BuildStepOutputs { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

ETag

The ETag of the item.

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

Images

Container images that were built as a part of the build.

Declaration
[JsonProperty("images")]
public virtual IList<ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage> Images { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage>

NumArtifacts

Number of artifacts uploaded. Only populated when artifacts are uploaded.

Declaration
[JsonProperty("numArtifacts")]
public virtual long? NumArtifacts { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top