Class: VSphereAutomation::VCenter::VcenterGuestCustomizationSpecsOsType
- Inherits:
-
Object
- Object
- VSphereAutomation::VCenter::VcenterGuestCustomizationSpecsOsType
- Defined in:
- lib/vsphere-automation-vcenter/models/vcenter_guest_customization_specs_os_type.rb
Constant Summary collapse
- WINDOWS =
"WINDOWS".freeze
- LINUX =
"LINUX".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
21 22 23 24 25 |
# File 'lib/vsphere-automation-vcenter/models/vcenter_guest_customization_specs_os_type.rb', line 21 def build_from_hash(value) constantValues = VcenterGuestCustomizationSpecsOsType.constants.select { |c| VcenterGuestCustomizationSpecsOsType::const_get(c) == value } raise "Invalid ENUM value #{value} for class #VcenterGuestCustomizationSpecsOsType" if constantValues.empty? value end |