Class: Google::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemoteworkersV1test2CommandResult
- Inherits:
-
Object
- Object
- Google::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemoteworkersV1test2CommandResult
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/remotebuildexecution_v1/classes.rb,
generated/google/apis/remotebuildexecution_v1/representations.rb,
generated/google/apis/remotebuildexecution_v1/representations.rb
Overview
All information about the execution of a command, suitable for providing as
the Bots interface's Lease.result
field.
Instance Attribute Summary collapse
-
#duration ⇒ String
The elapsed time between calling Accept and Complete.
-
#exit_code ⇒ Fixnum
The exit code of the process.
-
#metadata ⇒ Array<Hash<String,Object>>
Implementation-dependent metadata about the task.
-
#outputs ⇒ Google::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemoteworkersV1test2Digest
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.
-
#overhead ⇒ String
The amount of time not spent executing the command (ie uploading/downloading files).
-
#status ⇒ Google::Apis::RemotebuildexecutionV1::GoogleRpcStatus
The
Status
type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleDevtoolsRemoteworkersV1test2CommandResult
constructor
A new instance of GoogleDevtoolsRemoteworkersV1test2CommandResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleDevtoolsRemoteworkersV1test2CommandResult
Returns a new instance of GoogleDevtoolsRemoteworkersV1test2CommandResult.
2586 2587 2588 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 2586 def initialize(**args) update!(**args) end |
Instance Attribute Details
#duration ⇒ String
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
2540 2541 2542 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 2540 def duration @duration end |
#exit_code ⇒ Fixnum
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
2546 2547 2548 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 2546 def exit_code @exit_code end |
#metadata ⇒ Array<Hash<String,Object>>
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
2556 2557 2558 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 2556 def @metadata end |
#outputs ⇒ Google::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemoteworkersV1test2Digest
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
2568 2569 2570 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 2568 def outputs @outputs end |
#overhead ⇒ String
The amount of time not spent executing the command (ie
uploading/downloading files).
Corresponds to the JSON property overhead
2574 2575 2576 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 2574 def overhead @overhead end |
#status ⇒ Google::Apis::RemotebuildexecutionV1::GoogleRpcStatus
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. 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.
Corresponds to the JSON property status
2584 2585 2586 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 2584 def status @status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2591 2592 2593 2594 2595 2596 2597 2598 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 2591 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 |