Show / Hide Table of Contents

Class ToolExecution

An execution of an arbitrary tool. It could be a test runner or a tool copying artifacts or deploying code.

Inheritance
object
ToolExecution
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.ToolResults.v1beta3.Data
Assembly: Google.Apis.ToolResults.v1beta3.dll
Syntax
public class ToolExecution : IDirectResponseSchema

Properties

CommandLineArguments

The full tokenized command line including the program name (equivalent to argv in a C program). - In response: present if set by create request - In create request: optional - In update request: never set

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

ETag

The ETag of the item.

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

ExitCode

Tool execution exit code. This field will be set once the tool has exited. - In response: present if set by create/update request - In create request: optional - In update request: optional, a FAILED_PRECONDITION error will be returned if an exit_code is already set.

Declaration
[JsonProperty("exitCode")]
public virtual ToolExitCode ExitCode { get; set; }
Property Value
Type Description
ToolExitCode

ToolLogs

References to any plain text logs output the tool execution. This field can be set before the tool has exited in order to be able to have access to a live view of the logs while the tool is running. The maximum allowed number of tool logs per step is 1000. - In response: present if set by create/update request - In create request: optional - In update request: optional, any value provided will be appended to the existing list

Declaration
[JsonProperty("toolLogs")]
public virtual IList<FileReference> ToolLogs { get; set; }
Property Value
Type Description
IList<FileReference>

ToolOutputs

References to opaque files of any format output by the tool execution. The maximum allowed number of tool outputs per step is 1000. - In response: present if set by create/update request - In create request: optional - In update request: optional, any value provided will be appended to the existing list

Declaration
[JsonProperty("toolOutputs")]
public virtual IList<ToolOutputReference> ToolOutputs { get; set; }
Property Value
Type Description
IList<ToolOutputReference>

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX