Class: CloudReactorAPIClient::WorkflowExecutionStatus
- Inherits:
-
Object
- Object
- CloudReactorAPIClient::WorkflowExecutionStatus
- Defined in:
- lib/cloudreactor_api_client/models/workflow_execution_status.rb
Constant Summary collapse
- RUNNING =
"RUNNING".freeze
- SUCCEEDED =
"SUCCEEDED".freeze
- FAILED =
"FAILED".freeze
- TERMINATED_AFTER_TIME_OUT =
"TERMINATED_AFTER_TIME_OUT".freeze
- STOPPING =
"STOPPING".freeze
- STOPPED =
"STOPPED".freeze
- MANUALLY_STARTED =
"MANUALLY_STARTED".freeze
Class Method Summary collapse
-
.build_from_hash(value) ⇒ String
Builds the enum from string.
Instance Method Summary collapse
-
#build_from_hash(value) ⇒ String
Builds the enum from string.
Class Method Details
.build_from_hash(value) ⇒ String
Builds the enum from string
29 30 31 |
# File 'lib/cloudreactor_api_client/models/workflow_execution_status.rb', line 29 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
36 37 38 39 40 |
# File 'lib/cloudreactor_api_client/models/workflow_execution_status.rb', line 36 def build_from_hash(value) constantValues = WorkflowExecutionStatus.constants.select { |c| WorkflowExecutionStatus::const_get(c) == value } raise "Invalid ENUM value #{value} for class #WorkflowExecutionStatus" if constantValues.empty? value end |