Class: Google::Apis::GenomicsV2alpha1::FailedEvent
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::GenomicsV2alpha1::FailedEvent
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/genomics_v2alpha1/classes.rb,
 generated/google/apis/genomics_v2alpha1/representations.rb,
 generated/google/apis/genomics_v2alpha1/representations.rb
Overview
This event is generated when the execution of a pipeline has failed. Note that other events may continue to occur after this event.
Instance Attribute Summary collapse
- 
  
    
      #cause  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The human readable description of the cause of the failure. 
- 
  
    
      #code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The Google standard error code that best describes this failure. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ FailedEvent 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of FailedEvent. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ FailedEvent
Returns a new instance of FailedEvent
| 539 540 541 | # File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 539 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#cause ⇒ String
The human readable description of the cause of the failure.
Corresponds to the JSON property cause
| 532 533 534 | # File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 532 def cause @cause end | 
#code ⇒ String
The Google standard error code that best describes this failure.
Corresponds to the JSON property code
| 537 538 539 | # File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 537 def code @code end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 544 545 546 547 | # File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 544 def update!(**args) @cause = args[:cause] if args.key?(:cause) @code = args[:code] if args.key?(:code) end |