Method: Copian::Collector::Dell#vlans
- Defined in:
- lib/copian/collector/dell.rb
#vlans ⇒ Object
:yields: id, ifindex, name
7 8 9 10 11 12 13 |
# File 'lib/copian/collector/dell.rb', line 7 def vlans # :yields: id, ifindex, name load_ifnames vlans_collector.collect do |vlan_id, vlan_index| yield vlan_id, vlan_index, @ifnames[vlan_index] end end |