class Google::Apis::GenomicsV1alpha2::UnexpectedExitStatusEvent
An event generated when the execution of a container results in a non-zero exit status that was not otherwise ignored. Execution will continue, but only actions that are flagged as `ALWAYS_RUN` will be executed. Other actions will be skipped.
Attributes
action_id[RW]
The numeric ID of the action that started the container. Corresponds to the JSON property `actionId` @return [Fixnum]
exit_status[RW]
The exit status of the container. Corresponds to the JSON property `exitStatus` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/genomics_v1alpha2/classes.rb, line 1308 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/genomics_v1alpha2/classes.rb, line 1313 def update!(**args) @action_id = args[:action_id] if args.key?(:action_id) @exit_status = args[:exit_status] if args.key?(:exit_status) end