Class: Puppet::Settings::EnumSetting
- Inherits:
-
BaseSetting
- Object
- BaseSetting
- Puppet::Settings::EnumSetting
- Defined in:
- lib/puppet/settings/enum_setting.rb
Constant Summary
Constants inherited from BaseSetting
Instance Attribute Summary collapse
-
#values ⇒ Object
Returns the value of attribute values.
Attributes inherited from BaseSetting
#call_hook, #default, #deprecated, #desc, #name, #section, #short
Instance Method Summary collapse
Methods inherited from BaseSetting
#allowed_on_commandline?, available_call_hook_values, #call_hook_on_define?, #call_hook_on_initialize?, #completely_deprecated?, #deprecated?, #getopt_args, #has_hook?, #hook=, #initialize, #inspect, #iscreated, #iscreated?, #optparse_args, #print, #set_meta, #to_config, #value
Constructor Details
This class inherits a constructor from Puppet::Settings::BaseSetting
Instance Attribute Details
#values ⇒ Object
Returns the value of attribute values.
4 5 6 |
# File 'lib/puppet/settings/enum_setting.rb', line 4 def values @values end |
Instance Method Details
#munge(value) ⇒ Object
10 11 12 13 14 15 16 17 |
# File 'lib/puppet/settings/enum_setting.rb', line 10 def munge(value) if values.include?(value) value else raise Puppet::Settings::ValidationError, _("Invalid value '%{value}' for parameter %{name}. Allowed values are '%{allowed_values}'") % { value: value, name: @name, allowed_values: values.join("', '") } end end |
#type ⇒ Object
6 7 8 |
# File 'lib/puppet/settings/enum_setting.rb', line 6 def type :enum end |