Class: VSphereAutomation::Content::ContentLibraryItemUpdateSessionModelState
- Inherits:
-
Object
- Object
- VSphereAutomation::Content::ContentLibraryItemUpdateSessionModelState
- Defined in:
- lib/vsphere-automation-content/models/content_library_item_update_session_model_state.rb
Constant Summary collapse
- ACTIVE =
"ACTIVE".freeze
- DONE =
"DONE".freeze
- ERROR =
"ERROR".freeze
- CANCELED =
"CANCELED".freeze
Instance Method Summary collapse
-
#build_from_hash(value) ⇒ String
Builds the enum from string.
Instance Method Details
#build_from_hash(value) ⇒ String
Builds the enum from string
23 24 25 26 27 |
# File 'lib/vsphere-automation-content/models/content_library_item_update_session_model_state.rb', line 23 def build_from_hash(value) constantValues = ContentLibraryItemUpdateSessionModelState.constants.select { |c| ContentLibraryItemUpdateSessionModelState::const_get(c) == value } raise "Invalid ENUM value #{value} for class #ContentLibraryItemUpdateSessionModelState" if constantValues.empty? value end |