class Google::Apis::GenomicsV2alpha1::FailedEvent
An event generated when the execution of a pipeline has failed. Note that other events can continue to occur after this event.
Attributes
cause[RW]
The human-readable description of the cause of the failure. Corresponds to the JSON property `cause` @return [String]
code[RW]
The Google
standard error code that best describes this failure. Corresponds to the JSON property `code` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/genomics_v2alpha1/classes.rb, line 585 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_v2alpha1/classes.rb, line 590 def update!(**args) @cause = args[:cause] if args.key?(:cause) @code = args[:code] if args.key?(:code) end