Class: VSphereAutomation::Appliance::ApplianceTechpreviewMonitoringSnmpSNMPSecLevel
- Inherits:
-
Object
- Object
- VSphereAutomation::Appliance::ApplianceTechpreviewMonitoringSnmpSNMPSecLevel
- Defined in:
- lib/vsphere-automation-appliance/models/appliance_techpreview_monitoring_snmp_snmp_sec_level.rb
Constant Summary collapse
- NONE =
"none".freeze
- AUTH =
"auth".freeze
- PRIV =
"priv".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
22 23 24 25 26 |
# File 'lib/vsphere-automation-appliance/models/appliance_techpreview_monitoring_snmp_snmp_sec_level.rb', line 22 def build_from_hash(value) constantValues = ApplianceTechpreviewMonitoringSnmpSNMPSecLevel.constants.select { |c| ApplianceTechpreviewMonitoringSnmpSNMPSecLevel::const_get(c) == value } raise "Invalid ENUM value #{value} for class #ApplianceTechpreviewMonitoringSnmpSNMPSecLevel" if constantValues.empty? value end |