Class: Google::Apis::RemotebuildexecutionV2::BuildBazelRemoteExecutionV2ExecutedActionMetadata

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/remotebuildexecution_v2/classes.rb,
generated/google/apis/remotebuildexecution_v2/representations.rb,
generated/google/apis/remotebuildexecution_v2/representations.rb

Overview

ExecutedActionMetadata contains details about a completed execution.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ BuildBazelRemoteExecutionV2ExecutedActionMetadata

Returns a new instance of BuildBazelRemoteExecutionV2ExecutedActionMetadata.



1198
1199
1200
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1198

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#execution_completed_timestampString

When the worker completed executing the action command. Corresponds to the JSON property executionCompletedTimestamp

Returns:

  • (String)


1151
1152
1153
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1151

def execution_completed_timestamp
  @execution_completed_timestamp
end

#execution_start_timestampString

When the worker started executing the action command. Corresponds to the JSON property executionStartTimestamp

Returns:

  • (String)


1156
1157
1158
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1156

def execution_start_timestamp
  @execution_start_timestamp
end

#input_fetch_completed_timestampString

When the worker finished fetching action inputs. Corresponds to the JSON property inputFetchCompletedTimestamp

Returns:

  • (String)


1161
1162
1163
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1161

def input_fetch_completed_timestamp
  @input_fetch_completed_timestamp
end

#input_fetch_start_timestampString

When the worker started fetching action inputs. Corresponds to the JSON property inputFetchStartTimestamp

Returns:

  • (String)


1166
1167
1168
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1166

def input_fetch_start_timestamp
  @input_fetch_start_timestamp
end

#output_upload_completed_timestampString

When the worker finished uploading action outputs. Corresponds to the JSON property outputUploadCompletedTimestamp

Returns:

  • (String)


1171
1172
1173
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1171

def output_upload_completed_timestamp
  @output_upload_completed_timestamp
end

#output_upload_start_timestampString

When the worker started uploading action outputs. Corresponds to the JSON property outputUploadStartTimestamp

Returns:

  • (String)


1176
1177
1178
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1176

def output_upload_start_timestamp
  @output_upload_start_timestamp
end

#queued_timestampString

When was the action added to the queue. Corresponds to the JSON property queuedTimestamp

Returns:

  • (String)


1181
1182
1183
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1181

def queued_timestamp
  @queued_timestamp
end

#workerString

The name of the worker which ran the execution. Corresponds to the JSON property worker

Returns:

  • (String)


1186
1187
1188
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1186

def worker
  @worker
end

#worker_completed_timestampString

When the worker completed the action, including all stages. Corresponds to the JSON property workerCompletedTimestamp

Returns:

  • (String)


1191
1192
1193
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1191

def worker_completed_timestamp
  @worker_completed_timestamp
end

#worker_start_timestampString

When the worker received the action. Corresponds to the JSON property workerStartTimestamp

Returns:

  • (String)


1196
1197
1198
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1196

def worker_start_timestamp
  @worker_start_timestamp
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1203

def update!(**args)
  @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