Class: Google::Apis::RemotebuildexecutionV2::BuildBazelRemoteExecutionV2ExecutedActionMetadata
- Inherits:
-
Object
- Object
- Google::Apis::RemotebuildexecutionV2::BuildBazelRemoteExecutionV2ExecutedActionMetadata
- 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
-
#execution_completed_timestamp ⇒ String
When the worker completed executing the action command.
-
#execution_start_timestamp ⇒ String
When the worker started executing the action command.
-
#input_fetch_completed_timestamp ⇒ String
When the worker finished fetching action inputs.
-
#input_fetch_start_timestamp ⇒ String
When the worker started fetching action inputs.
-
#output_upload_completed_timestamp ⇒ String
When the worker finished uploading action outputs.
-
#output_upload_start_timestamp ⇒ String
When the worker started uploading action outputs.
-
#queued_timestamp ⇒ String
When was the action added to the queue.
-
#worker ⇒ String
The name of the worker which ran the execution.
-
#worker_completed_timestamp ⇒ String
When the worker completed the action, including all stages.
-
#worker_start_timestamp ⇒ String
When the worker received the action.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BuildBazelRemoteExecutionV2ExecutedActionMetadata
constructor
A new instance of BuildBazelRemoteExecutionV2ExecutedActionMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ BuildBazelRemoteExecutionV2ExecutedActionMetadata
Returns a new instance of BuildBazelRemoteExecutionV2ExecutedActionMetadata
1367 1368 1369 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1367 def initialize(**args) update!(**args) end |
Instance Attribute Details
#execution_completed_timestamp ⇒ String
When the worker completed executing the action command.
Corresponds to the JSON property executionCompletedTimestamp
1320 1321 1322 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1320 def @execution_completed_timestamp end |
#execution_start_timestamp ⇒ String
When the worker started executing the action command.
Corresponds to the JSON property executionStartTimestamp
1325 1326 1327 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1325 def @execution_start_timestamp end |
#input_fetch_completed_timestamp ⇒ String
When the worker finished fetching action inputs.
Corresponds to the JSON property inputFetchCompletedTimestamp
1330 1331 1332 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1330 def @input_fetch_completed_timestamp end |
#input_fetch_start_timestamp ⇒ String
When the worker started fetching action inputs.
Corresponds to the JSON property inputFetchStartTimestamp
1335 1336 1337 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1335 def @input_fetch_start_timestamp end |
#output_upload_completed_timestamp ⇒ String
When the worker finished uploading action outputs.
Corresponds to the JSON property outputUploadCompletedTimestamp
1340 1341 1342 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1340 def @output_upload_completed_timestamp end |
#output_upload_start_timestamp ⇒ String
When the worker started uploading action outputs.
Corresponds to the JSON property outputUploadStartTimestamp
1345 1346 1347 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1345 def @output_upload_start_timestamp end |
#queued_timestamp ⇒ String
When was the action added to the queue.
Corresponds to the JSON property queuedTimestamp
1350 1351 1352 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1350 def @queued_timestamp end |
#worker ⇒ String
The name of the worker which ran the execution.
Corresponds to the JSON property worker
1355 1356 1357 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1355 def worker @worker end |
#worker_completed_timestamp ⇒ String
When the worker completed the action, including all stages.
Corresponds to the JSON property workerCompletedTimestamp
1360 1361 1362 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1360 def @worker_completed_timestamp end |
#worker_start_timestamp ⇒ String
When the worker received the action.
Corresponds to the JSON property workerStartTimestamp
1365 1366 1367 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1365 def @worker_start_timestamp end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 1372 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 |