Show / Hide Table of Contents

Class GoogleDevtoolsRemoteworkersV1test2CommandOutputs

DEPRECATED - use CommandResult instead. Describes the actual outputs from the task.

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

Properties

ETag

The ETag of the item.

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

ExitCode

exit_code is only fully reliable if the status' code is OK. If the task exceeded its deadline or was cancelled, the process may still produce an exit code as it is cancelled, and this will be populated, but a successful (zero) is unlikely to be correct unless the status code is OK.

Declaration
[JsonProperty("exitCode")]
public virtual int? ExitCode { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Outputs

The output files. The blob referenced by the digest should contain one of the following (implementation-dependent): * A marshalled DirectoryMetadata of the returned filesystem * A LUCI-style .isolated file

Declaration
[JsonProperty("outputs")]
public virtual GoogleDevtoolsRemoteworkersV1test2Digest Outputs { get; set; }
Property Value
Type Description
GoogleDevtoolsRemoteworkersV1test2Digest

Implements

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