Class: Google::Apis::WorkflowexecutionsV1::StateError
- Inherits:
-
Object
- Object
- Google::Apis::WorkflowexecutionsV1::StateError
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/workflowexecutions_v1/classes.rb,
lib/google/apis/workflowexecutions_v1/representations.rb,
lib/google/apis/workflowexecutions_v1/representations.rb
Overview
Describes an error related to the current state of the Execution resource.
Instance Attribute Summary collapse
-
#details ⇒ String
Provides specifics about the error.
-
#type ⇒ String
The type of this state error.
Instance Method Summary collapse
-
#initialize(**args) ⇒ StateError
constructor
A new instance of StateError.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ StateError
Returns a new instance of StateError.
593 594 595 |
# File 'lib/google/apis/workflowexecutions_v1/classes.rb', line 593 def initialize(**args) update!(**args) end |
Instance Attribute Details
#details ⇒ String
Provides specifics about the error.
Corresponds to the JSON property details
586 587 588 |
# File 'lib/google/apis/workflowexecutions_v1/classes.rb', line 586 def details @details end |
#type ⇒ String
The type of this state error.
Corresponds to the JSON property type
591 592 593 |
# File 'lib/google/apis/workflowexecutions_v1/classes.rb', line 591 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
598 599 600 601 |
# File 'lib/google/apis/workflowexecutions_v1/classes.rb', line 598 def update!(**args) @details = args[:details] if args.key?(:details) @type = args[:type] if args.key?(:type) end |