Class: VagrantPlugins::Deltacloud::Command::HardwareProfileList
- Inherits:
-
AbstractCommand
- Object
- AbstractCommand
- VagrantPlugins::Deltacloud::Command::HardwareProfileList
- Includes:
- Utils
- Defined in:
- lib/vagrant-deltacloud-provider/command/hardware_profile_list.rb
Class Method Summary collapse
Instance Method Summary collapse
Methods included from Utils
#display_item_list, #display_table, #get_ip_address
Methods inherited from AbstractCommand
#execute, #initialize, #normalize_args
Constructor Details
This class inherits a constructor from VagrantPlugins::Deltacloud::Command::AbstractCommand
Class Method Details
.synopsis ⇒ Object
10 11 12 |
# File 'lib/vagrant-deltacloud-provider/command/hardware_profile_list.rb', line 10 def self.synopsis I18n.t('vagrant_deltacloud.command.hardware_profile_list_synopsis') end |
Instance Method Details
#cmd(name, argv, env) ⇒ Object
13 14 15 16 17 18 19 20 21 22 |
# File 'lib/vagrant-deltacloud-provider/command/hardware_profile_list.rb', line 13 def cmd(name, argv, env) fail Errors::NoArgRequiredForCommand, cmd: name unless argv.size == 0 hardware_profiles = env[:deltacloud_client].list_hardware_profiles(env) rows = [] hardware_profiles.each do |h| rows << [h.id, h.name, h.vcpus, h.ram, h.disk] end display_table(env, ['Id', 'Name', 'vCPU', 'RAM (Mo)', 'Disk size (Go)'], rows) end |