Show / Hide Table of Contents

Class BuildBazelRemoteExecutionV2ExecutedActionMetadata

ExecutedActionMetadata contains details about a completed execution.

Inheritance
System.Object
BuildBazelRemoteExecutionV2ExecutedActionMetadata
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 BuildBazelRemoteExecutionV2ExecutedActionMetadata : IDirectResponseSchema

Properties

AuxiliaryMetadata

Details that are specific to the kind of worker used. For example, on POSIX-like systems this could contain a message with getrusage(2) statistics.

Declaration
[JsonProperty("auxiliaryMetadata")]
public virtual IList<IDictionary<string, object>> AuxiliaryMetadata { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.Collections.Generic.IDictionary<System.String, System.Object>>

ETag

The ETag of the item.

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

ExecutionCompletedTimestamp

When the worker completed executing the action command.

Declaration
[JsonProperty("executionCompletedTimestamp")]
public virtual object ExecutionCompletedTimestamp { get; set; }
Property Value
Type Description
System.Object

ExecutionStartTimestamp

When the worker started executing the action command.

Declaration
[JsonProperty("executionStartTimestamp")]
public virtual object ExecutionStartTimestamp { get; set; }
Property Value
Type Description
System.Object

InputFetchCompletedTimestamp

When the worker finished fetching action inputs.

Declaration
[JsonProperty("inputFetchCompletedTimestamp")]
public virtual object InputFetchCompletedTimestamp { get; set; }
Property Value
Type Description
System.Object

InputFetchStartTimestamp

When the worker started fetching action inputs.

Declaration
[JsonProperty("inputFetchStartTimestamp")]
public virtual object InputFetchStartTimestamp { get; set; }
Property Value
Type Description
System.Object

OutputUploadCompletedTimestamp

When the worker finished uploading action outputs.

Declaration
[JsonProperty("outputUploadCompletedTimestamp")]
public virtual object OutputUploadCompletedTimestamp { get; set; }
Property Value
Type Description
System.Object

OutputUploadStartTimestamp

When the worker started uploading action outputs.

Declaration
[JsonProperty("outputUploadStartTimestamp")]
public virtual object OutputUploadStartTimestamp { get; set; }
Property Value
Type Description
System.Object

QueuedTimestamp

When was the action added to the queue.

Declaration
[JsonProperty("queuedTimestamp")]
public virtual object QueuedTimestamp { get; set; }
Property Value
Type Description
System.Object

Worker

The name of the worker which ran the execution.

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

WorkerCompletedTimestamp

When the worker completed the action, including all stages.

Declaration
[JsonProperty("workerCompletedTimestamp")]
public virtual object WorkerCompletedTimestamp { get; set; }
Property Value
Type Description
System.Object

WorkerStartTimestamp

When the worker received the action.

Declaration
[JsonProperty("workerStartTimestamp")]
public virtual object WorkerStartTimestamp { get; set; }
Property Value
Type Description
System.Object

Implements

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