Show / Hide Table of Contents

Class GoogleDevtoolsRemotebuildbotCommandEvents

CommandEvents contains counters for the number of warnings and errors that occurred during the execution of a command.

Inheritance
System.Object
GoogleDevtoolsRemotebuildbotCommandEvents
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.RemoteBuildExecution.v1.Data
Assembly: Google.Apis.RemoteBuildExecution.v1.dll
Syntax
public class GoogleDevtoolsRemotebuildbotCommandEvents : IDirectResponseSchema

Properties

CmUsage

Indicates if and how Container Manager is being used for task execution.

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

DockerCacheHit

Indicates whether we are using a cached Docker image (true) or had to pull the Docker image (false) for this command.

Declaration
[JsonProperty("dockerCacheHit")]
public virtual bool? DockerCacheHit { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

DockerImageName

Docker Image name.

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

ETag

The ETag of the item.

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

InputCacheMiss

The input cache miss ratio.

Declaration
[JsonProperty("inputCacheMiss")]
public virtual float? InputCacheMiss { get; set; }
Property Value
Type Description
System.Nullable<System.Single>

NumErrors

The number of errors reported.

Declaration
[JsonProperty("numErrors")]
public virtual ulong? NumErrors { get; set; }
Property Value
Type Description
System.Nullable<System.UInt64>

NumWarnings

The number of warnings reported.

Declaration
[JsonProperty("numWarnings")]
public virtual ulong? NumWarnings { get; set; }
Property Value
Type Description
System.Nullable<System.UInt64>

OutputLocation

Indicates whether output files and/or output directories were found relative to the execution root or to the user provided work directory or both or none.

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

UsedAsyncContainer

Indicates whether an asynchronous container was used for execution.

Declaration
[JsonProperty("usedAsyncContainer")]
public virtual bool? UsedAsyncContainer { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Implements

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