Class: Google::Apis::LifesciencesV2beta::FailedEvent
- Inherits:
-
Object
- Object
- Google::Apis::LifesciencesV2beta::FailedEvent
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/lifesciences_v2beta/classes.rb,
generated/google/apis/lifesciences_v2beta/representations.rb,
generated/google/apis/lifesciences_v2beta/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
-
#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.
Constructor Details
#initialize(**args) ⇒ FailedEvent
Returns a new instance of FailedEvent.
582 583 584 |
# File 'generated/google/apis/lifesciences_v2beta/classes.rb', line 582 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
575 576 577 |
# File 'generated/google/apis/lifesciences_v2beta/classes.rb', line 575 def cause @cause end |
#code ⇒ String
The Google standard error code that best describes this failure.
Corresponds to the JSON property code
580 581 582 |
# File 'generated/google/apis/lifesciences_v2beta/classes.rb', line 580 def code @code end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
587 588 589 590 |
# File 'generated/google/apis/lifesciences_v2beta/classes.rb', line 587 def update!(**args) @cause = args[:cause] if args.key?(:cause) @code = args[:code] if args.key?(:code) end |