class Google::Apis::RemotebuildexecutionV2::BuildBazelRemoteExecutionV2ExecutedActionMetadata
ExecutedActionMetadata contains details about a completed execution.
Attributes
Details that are specific to the kind of worker used. For example, on POSIX- like systems this could contain a message with getrusage(2) statistics. Corresponds to the JSON property `auxiliaryMetadata` @return [Array<Hash<String,Object>>]
When the worker completed executing the action command. Corresponds to the JSON property `executionCompletedTimestamp` @return [String]
When the worker started executing the action command. Corresponds to the JSON property `executionStartTimestamp` @return [String]
When the worker finished fetching action inputs. Corresponds to the JSON property `inputFetchCompletedTimestamp` @return [String]
When the worker started fetching action inputs. Corresponds to the JSON property `inputFetchStartTimestamp` @return [String]
When the worker finished uploading action outputs. Corresponds to the JSON property `outputUploadCompletedTimestamp` @return [String]
When the worker started uploading action outputs. Corresponds to the JSON property `outputUploadStartTimestamp` @return [String]
When was the action added to the queue. Corresponds to the JSON property `queuedTimestamp` @return [String]
The name of the worker which ran the execution. Corresponds to the JSON property `worker` @return [String]
When the worker completed the action, including all stages. Corresponds to the JSON property `workerCompletedTimestamp` @return [String]
When the worker received the action. Corresponds to the JSON property `workerStartTimestamp` @return [String]
Public Class Methods
# File lib/google/apis/remotebuildexecution_v2/classes.rb, line 1242 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/remotebuildexecution_v2/classes.rb, line 1247 def update!(**args) @auxiliary_metadata = args[:auxiliary_metadata] if args.key?(:auxiliary_metadata) @execution_completed_timestamp = args[:execution_completed_timestamp] if args.key?(:execution_completed_timestamp) @execution_start_timestamp = args[:execution_start_timestamp] if args.key?(:execution_start_timestamp) @input_fetch_completed_timestamp = args[:input_fetch_completed_timestamp] if args.key?(:input_fetch_completed_timestamp) @input_fetch_start_timestamp = args[:input_fetch_start_timestamp] if args.key?(:input_fetch_start_timestamp) @output_upload_completed_timestamp = args[:output_upload_completed_timestamp] if args.key?(:output_upload_completed_timestamp) @output_upload_start_timestamp = args[:output_upload_start_timestamp] if args.key?(:output_upload_start_timestamp) @queued_timestamp = args[:queued_timestamp] if args.key?(:queued_timestamp) @worker = args[:worker] if args.key?(:worker) @worker_completed_timestamp = args[:worker_completed_timestamp] if args.key?(:worker_completed_timestamp) @worker_start_timestamp = args[:worker_start_timestamp] if args.key?(:worker_start_timestamp) end