Class: Google::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemotebuildbotCommandDurations
- Inherits:
-
Object
- Object
- Google::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemotebuildbotCommandDurations
- 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
CommandDuration contains the various duration metrics tracked when a bot performs a command.
Instance Attribute Summary collapse
-
#docker_prep ⇒ String
The time spent preparing the command to be run in a Docker container (includes pulling the Docker image, if necessary).
-
#download ⇒ String
The time spent downloading the input files and constructing the working directory.
-
#execution ⇒ String
The time spent executing the command (i.e., doing useful work).
-
#iso_prep_done ⇒ String
The timestamp when preparation is done and bot starts downloading files.
-
#overall ⇒ String
The time spent completing the command, in total.
-
#stdout ⇒ String
The time spent uploading the stdout logs.
-
#upload ⇒ String
The time spent uploading the output files.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleDevtoolsRemotebuildbotCommandDurations
constructor
A new instance of GoogleDevtoolsRemotebuildbotCommandDurations.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleDevtoolsRemotebuildbotCommandDurations
Returns a new instance of GoogleDevtoolsRemotebuildbotCommandDurations
1512 1513 1514 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 1512 def initialize(**args) update!(**args) end |
Instance Attribute Details
#docker_prep ⇒ String
The time spent preparing the command to be run in a Docker container
(includes pulling the Docker image, if necessary).
Corresponds to the JSON property dockerPrep
1479 1480 1481 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 1479 def docker_prep @docker_prep end |
#download ⇒ String
The time spent downloading the input files and constructing the working
directory.
Corresponds to the JSON property download
1485 1486 1487 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 1485 def download @download end |
#execution ⇒ String
The time spent executing the command (i.e., doing useful work).
Corresponds to the JSON property execution
1490 1491 1492 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 1490 def execution @execution end |
#iso_prep_done ⇒ String
The timestamp when preparation is done and bot starts downloading files.
Corresponds to the JSON property isoPrepDone
1495 1496 1497 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 1495 def iso_prep_done @iso_prep_done end |
#overall ⇒ String
The time spent completing the command, in total.
Corresponds to the JSON property overall
1500 1501 1502 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 1500 def overall @overall end |
#stdout ⇒ String
The time spent uploading the stdout logs.
Corresponds to the JSON property stdout
1505 1506 1507 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 1505 def stdout @stdout end |
#upload ⇒ String
The time spent uploading the output files.
Corresponds to the JSON property upload
1510 1511 1512 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 1510 def upload @upload end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1517 1518 1519 1520 1521 1522 1523 1524 1525 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 1517 def update!(**args) @docker_prep = args[:docker_prep] if args.key?(:docker_prep) @download = args[:download] if args.key?(:download) @execution = args[:execution] if args.key?(:execution) @iso_prep_done = args[:iso_prep_done] if args.key?(:iso_prep_done) @overall = args[:overall] if args.key?(:overall) @stdout = args[:stdout] if args.key?(:stdout) @upload = args[:upload] if args.key?(:upload) end |