Method: F5::Cli::DeviceGroup#list
- Defined in:
- lib/f5/cli/application.rb
#list ⇒ Object
397 398 399 400 401 402 403 404 405 406 407 408 |
# File 'lib/f5/cli/application.rb', line 397 def list response = client.Management.DeviceGroup.get_list devices = Array(response[:item]) if devices.empty? puts "No devices found" else devices.each do |p| puts p end end end |