class Google::Apis::RemotebuildexecutionV2::GoogleDevtoolsRemoteworkersV1test2CommandOutputs

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

Attributes

exit_code[RW]

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. Corresponds to the JSON property `exitCode` @return [Fixnum]

outputs[RW]

The CommandTask and CommandResult messages assume the existence of a service that can serve blobs of content, identified by a hash and size known as a “ digest.” The method by which these blobs may be retrieved is not specified here, but a model implementation is in the Remote Execution API's “ ContentAddressibleStorage” interface. In the context of the RWAPI, a Digest will virtually always refer to the contents of a file or a directory. The latter is represented by the byte-encoded Directory message. Corresponds to the JSON property `outputs` @return [Google::Apis::RemotebuildexecutionV2::GoogleDevtoolsRemoteworkersV1test2Digest]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/remotebuildexecution_v2/classes.rb, line 3216
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/remotebuildexecution_v2/classes.rb, line 3221
def update!(**args)
  @exit_code = args[:exit_code] if args.key?(:exit_code)
  @outputs = args[:outputs] if args.key?(:outputs)
end