Class: VSphereAutomation::VAPI::VapiMetadataMetamodelGenericInstantiationGenericType
- Inherits:
-
Object
- Object
- VSphereAutomation::VAPI::VapiMetadataMetamodelGenericInstantiationGenericType
- Defined in:
- lib/vsphere-automation-vapi/models/vapi_metadata_metamodel_generic_instantiation_generic_type.rb
Constant Summary collapse
- LIST =
"LIST".freeze
- MAP =
"MAP".freeze
- OPTIONAL =
"OPTIONAL".freeze
- SET =
"SET".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-vapi/models/vapi_metadata_metamodel_generic_instantiation_generic_type.rb', line 23 def build_from_hash(value) constantValues = VapiMetadataMetamodelGenericInstantiationGenericType.constants.select { |c| VapiMetadataMetamodelGenericInstantiationGenericType::const_get(c) == value } raise "Invalid ENUM value #{value} for class #VapiMetadataMetamodelGenericInstantiationGenericType" if constantValues.empty? value end |