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).
-
#docker_prep_start_time ⇒ String
The timestamp when docker preparation begins.
-
#download ⇒ String
The time spent downloading the input files and constructing the working directory.
-
#download_start_time ⇒ String
The timestamp when downloading the input files begins.
-
#exec_start_time ⇒ String
The timestamp when execution begins.
-
#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.
-
#upload_start_time ⇒ String
The timestamp when uploading the output files begins.
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.
1668 1669 1670 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 1668 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
1615 1616 1617 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 1615 def docker_prep @docker_prep end |
#docker_prep_start_time ⇒ String
The timestamp when docker preparation begins.
Corresponds to the JSON property dockerPrepStartTime
1620 1621 1622 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 1620 def docker_prep_start_time @docker_prep_start_time end |
#download ⇒ String
The time spent downloading the input files and constructing the working
directory.
Corresponds to the JSON property download
1626 1627 1628 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 1626 def download @download end |
#download_start_time ⇒ String
The timestamp when downloading the input files begins.
Corresponds to the JSON property downloadStartTime
1631 1632 1633 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 1631 def download_start_time @download_start_time end |
#exec_start_time ⇒ String
The timestamp when execution begins.
Corresponds to the JSON property execStartTime
1636 1637 1638 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 1636 def exec_start_time @exec_start_time end |
#execution ⇒ String
The time spent executing the command (i.e., doing useful work).
Corresponds to the JSON property execution
1641 1642 1643 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 1641 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
1646 1647 1648 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 1646 def iso_prep_done @iso_prep_done end |
#overall ⇒ String
The time spent completing the command, in total.
Corresponds to the JSON property overall
1651 1652 1653 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 1651 def overall @overall end |
#stdout ⇒ String
The time spent uploading the stdout logs.
Corresponds to the JSON property stdout
1656 1657 1658 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 1656 def stdout @stdout end |
#upload ⇒ String
The time spent uploading the output files.
Corresponds to the JSON property upload
1661 1662 1663 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 1661 def upload @upload end |
#upload_start_time ⇒ String
The timestamp when uploading the output files begins.
Corresponds to the JSON property uploadStartTime
1666 1667 1668 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 1666 def upload_start_time @upload_start_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 1673 def update!(**args) @docker_prep = args[:docker_prep] if args.key?(:docker_prep) @docker_prep_start_time = args[:docker_prep_start_time] if args.key?(:docker_prep_start_time) @download = args[:download] if args.key?(:download) @download_start_time = args[:download_start_time] if args.key?(:download_start_time) @exec_start_time = args[:exec_start_time] if args.key?(:exec_start_time) @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) @upload_start_time = args[:upload_start_time] if args.key?(:upload_start_time) end |