Sha256: 1b6d54abbfe6765e1707f61a7ea9bf3d1f187db72f12b54dfef71e39306fa987
Contents?: true
Size: 934 Bytes
Versions: 25
Compression:
Stored size: 934 Bytes
Contents
class PhysicalNetwork < CloudstackCli::Base desc "list", "list physical networks" option :project option :format, default: "table", enum: %w(table json yaml) def list resolve_project networks = client.list_physical_networks(options) zones = client.list_zones if networks.size < 1 puts "No networks found" else case options[:format].to_sym when :yaml puts({networks: networks}.to_yaml) when :json puts JSON.pretty_generate(networks: networks) else table = [['Name', 'State', 'Zone', 'ID']] networks.each do |network| table << [ network["name"], network["state"], zones.select{|zone| zone['id'] == network["zoneid"]}.first["name"], network["id"] ] end print_table table say "Total number of networks: #{networks.count}" end end end end
Version data entries
25 entries across 25 versions & 1 rubygems