class Google::Apis::RemotebuildexecutionV2::GoogleDevtoolsRemoteworkersV1test2CommandResult

All information about the execution of a command, suitable for providing as the Bots interface's `Lease.result` field.

Attributes

duration[RW]

The elapsed time between calling Accept and Complete. The server will also have its own idea of what this should be, but this excludes the overhead of the RPCs and the bot response time. Corresponds to the JSON property `duration` @return [String]

exit_code[RW]

The exit code of the process. An exit code of “0” should only be trusted if ` status` has a code of OK (otherwise it may simply be unset). Corresponds to the JSON property `exitCode` @return [Fixnum]

metadata[RW]

Implementation-dependent metadata about the task. Both servers and bots may define messages which can be encoded here; bots are free to provide metadata in multiple formats, and servers are free to choose one or more of the values to process and ignore others. In particular, it is not considered an error for the bot to provide the server with a field that it doesn't know about. Corresponds to the JSON property `metadata` @return [Array<Hash<String,Object>>]

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]

overhead[RW]

The amount of time not spent executing the command (ie uploading/downloading files). Corresponds to the JSON property `overhead` @return [String]

status[RW]

The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [ gRPC](github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https: //cloud.google.com/apis/design/errors). Corresponds to the JSON property `status` @return [Google::Apis::RemotebuildexecutionV2::GoogleRpcStatus]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/remotebuildexecution_v2/classes.rb, line 3310
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 3315
def update!(**args)
  @duration = args[:duration] if args.key?(:duration)
  @exit_code = args[:exit_code] if args.key?(:exit_code)
  @metadata = args[:metadata] if args.key?(:metadata)
  @outputs = args[:outputs] if args.key?(:outputs)
  @overhead = args[:overhead] if args.key?(:overhead)
  @status = args[:status] if args.key?(:status)
end