Method: Cisco::Node#config_set
- Defined in:
- lib/cisco_node_utils/node.rb
#config_set(feature, property, *args) ⇒ Object
Uses CommandReference to look up the given config command(s) of interest and then applies the configuration.
213 214 215 216 217 |
# File 'lib/cisco_node_utils/node.rb', line 213 def config_set(feature, property, *args) ref = @cmd_ref.lookup(feature, property) set_args = ref.setter(*args) set(**set_args) end |