generated/google/apis/remotebuildexecution_v2/classes.rb in google-api-client-0.32.1 vs generated/google/apis/remotebuildexecution_v2/classes.rb in google-api-client-0.33.0
- old
+ new
@@ -2156,16 +2156,31 @@
# (includes pulling the Docker image, if necessary).
# Corresponds to the JSON property `dockerPrep`
# @return [String]
attr_accessor :docker_prep
+ # The timestamp when docker prepartion begins.
+ # Corresponds to the JSON property `dockerPrepStartTime`
+ # @return [String]
+ attr_accessor :docker_prep_start_time
+
# The time spent downloading the input files and constructing the working
# directory.
# Corresponds to the JSON property `download`
# @return [String]
attr_accessor :download
+ # The timestamp when downloading the input files begins.
+ # Corresponds to the JSON property `downloadStartTime`
+ # @return [String]
+ attr_accessor :download_start_time
+
+ # The timestamp when execution begins.
+ # Corresponds to the JSON property `execStartTime`
+ # @return [String]
+ attr_accessor :exec_start_time
+
# The time spent executing the command (i.e., doing useful work).
# Corresponds to the JSON property `execution`
# @return [String]
attr_accessor :execution
@@ -2187,22 +2202,31 @@
# The time spent uploading the output files.
# Corresponds to the JSON property `upload`
# @return [String]
attr_accessor :upload
+ # The timestamp when uploading the output files begins.
+ # Corresponds to the JSON property `uploadStartTime`
+ # @return [String]
+ attr_accessor :upload_start_time
+
def initialize(**args)
update!(**args)
end
# Update properties of this object
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
end
# CommandEvents contains counters for the number of warnings and errors
# that occurred during the execution of a command.