class Google::Apis::GenomicsV1alpha2::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_v1alpha2/classes.rb, line 427
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 432
def update!(**args)
  @cause = args[:cause] if args.key?(:cause)
  @code = args[:code] if args.key?(:code)
end