Class: Google::Apis::GenomicsV1::FailedEvent

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

Overview

An event generated when the execution of a pipeline has failed. Note that other events can continue to occur after this event.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ FailedEvent

Returns a new instance of FailedEvent.



438
439
440
# File 'lib/google/apis/genomics_v1/classes.rb', line 438

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

Instance Attribute Details

#causeString

The human-readable description of the cause of the failure. Corresponds to the JSON property cause

Returns:

  • (String)


431
432
433
# File 'lib/google/apis/genomics_v1/classes.rb', line 431

def cause
  @cause
end

#codeString

The Google standard error code that best describes this failure. Corresponds to the JSON property code

Returns:

  • (String)


436
437
438
# File 'lib/google/apis/genomics_v1/classes.rb', line 436

def code
  @code
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



443
444
445
446
# File 'lib/google/apis/genomics_v1/classes.rb', line 443

def update!(**args)
  @cause = args[:cause] if args.key?(:cause)
  @code = args[:code] if args.key?(:code)
end