Method: Azure::ServiceManagement::ASMInterface#list_internal_lb
- Defined in:
- lib/azure/service_management/ASM_interface.rb
#list_internal_lb ⇒ Object
182 183 184 185 186 187 188 189 190 |
# File 'lib/azure/service_management/ASM_interface.rb', line 182 def list_internal_lb lbs = connection.lbs.all cols = %w{Name Service Subnet VIP} rows = [] lbs.each do |lb| cols.each { |col| rows << lb.send(col.downcase).to_s } end display_list(ui, cols, rows) end |