Class: VSphereAutomation::Content::ContentLibraryItemUpdateSessionModelState

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

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



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