Class: Google::Apis::WorkflowexecutionsV1::StateError

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ StateError

Returns a new instance of StateError.



592
593
594
# File 'lib/google/apis/workflowexecutions_v1/classes.rb', line 592

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

Instance Attribute Details

#detailsString

Provides specifics about the error. Corresponds to the JSON property details

Returns:

  • (String)


585
586
587
# File 'lib/google/apis/workflowexecutions_v1/classes.rb', line 585

def details
  @details
end

#typeString

The type of this state error. Corresponds to the JSON property type

Returns:

  • (String)


590
591
592
# File 'lib/google/apis/workflowexecutions_v1/classes.rb', line 590

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



597
598
599
600
# File 'lib/google/apis/workflowexecutions_v1/classes.rb', line 597

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