class Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildbotCommandEvents
CommandEvents contains counters for the number of warnings and errors that occurred during the execution of a command.
Attributes
Indicates if and how Container Manager is being used for task execution. Corresponds to the JSON property `cmUsage` @return [String]
Indicates whether we are using a cached Docker image (true) or had to pull the Docker image (false) for this command. Corresponds to the JSON property `dockerCacheHit` @return [Boolean]
Indicates whether we are using a cached Docker image (true) or had to pull the Docker image (false) for this command. Corresponds to the JSON property `dockerCacheHit` @return [Boolean]
Docker Image name. Corresponds to the JSON property `dockerImageName` @return [String]
The input cache miss ratio. Corresponds to the JSON property `inputCacheMiss` @return [Float]
The number of errors reported. Corresponds to the JSON property `numErrors` @return [Fixnum]
The number of warnings reported. Corresponds to the JSON property `numWarnings` @return [Fixnum]
Indicates whether output files and/or output directories were found relative to the execution root or to the user provided work directory or both or none. Corresponds to the JSON property `outputLocation` @return [String]
Indicates whether an asynchronous container was used for execution. Corresponds to the JSON property `usedAsyncContainer` @return [Boolean]
Indicates whether an asynchronous container was used for execution. Corresponds to the JSON property `usedAsyncContainer` @return [Boolean]
Public Class Methods
# File lib/google/apis/remotebuildexecution_v1alpha/classes.rb, line 1617 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/remotebuildexecution_v1alpha/classes.rb, line 1622 def update!(**args) @cm_usage = args[:cm_usage] if args.key?(:cm_usage) @docker_cache_hit = args[:docker_cache_hit] if args.key?(:docker_cache_hit) @docker_image_name = args[:docker_image_name] if args.key?(:docker_image_name) @input_cache_miss = args[:input_cache_miss] if args.key?(:input_cache_miss) @num_errors = args[:num_errors] if args.key?(:num_errors) @num_warnings = args[:num_warnings] if args.key?(:num_warnings) @output_location = args[:output_location] if args.key?(:output_location) @used_async_container = args[:used_async_container] if args.key?(:used_async_container) end