Class: CloudReactorAPIClient::TimeoutBehaviorEnum

Inherits:
Object
  • Object
show all
Defined in:
lib/cloudreactor_api_client/models/timeout_behavior_enum.rb

Constant Summary collapse

ALWAYS_FAIL_WORKFLOW =
"always_fail_workflow".freeze
ALWAYS_TIMEOUT_WORKFLOW =
"always_timeout_workflow".freeze
FAIL_WORKFLOW_IF_UNHANDLED =
"fail_workflow_if_unhandled".freeze
TIMEOUT_WORKFLOW_IF_UNHANDLED =
"timeout_workflow_if_unhandled".freeze
IGNORE =
"ignore".freeze

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.build_from_hash(value) ⇒ String

Builds the enum from string

Parameters:

  • The (String)

    enum value in the form of the string

Returns:

  • (String)

    The enum value



27
28
29
# File 'lib/cloudreactor_api_client/models/timeout_behavior_enum.rb', line 27

def self.build_from_hash(value)
  new.build_from_hash(value)
end

Instance Method Details

#build_from_hash(value) ⇒ String

Builds the enum from string

Parameters:

  • The (String)

    enum value in the form of the string

Returns:

  • (String)

    The enum value



34
35
36
37
38
# File 'lib/cloudreactor_api_client/models/timeout_behavior_enum.rb', line 34

def build_from_hash(value)
  constantValues = TimeoutBehaviorEnum.constants.select { |c| TimeoutBehaviorEnum::const_get(c) == value }
  raise "Invalid ENUM value #{value} for class #TimeoutBehaviorEnum" if constantValues.empty?
  value
end