Module: VagrantPlugins::Deltacloud::Command

Defined in:
lib/vagrant-deltacloud-provider/command/main.rb,
lib/vagrant-deltacloud-provider/command/reset.rb,
lib/vagrant-deltacloud-provider/command/utils.rb,
lib/vagrant-deltacloud-provider/command/image_list.rb,
lib/vagrant-deltacloud-provider/command/volume_list.rb,
lib/vagrant-deltacloud-provider/command/network_list.rb,
lib/vagrant-deltacloud-provider/command/instance_list.rb,
lib/vagrant-deltacloud-provider/command/abstract_command.rb,
lib/vagrant-deltacloud-provider/command/hardware_profile_list.rb

Defined Under Namespace

Modules: Utils Classes: AbstractCommand, HardwareProfileList, ImageList, InstanceList, Main, NetworkList, Reset, VolumeList

Constant Summary collapse

COMMANDS =
[
  { name: :'image-list', file: 'image_list' , clazz: 'ImageList' },
  { name: :'instance-list', file: 'instance_list' , clazz: 'InstanceList' },
  { name: :'hardware-profile-list', file: 'hardware_profile_list', clazz: 'HardwareProfileList' },
  { name: :'network-list', file: 'network_list', clazz: 'NetworkList' },
  { name: :'volume-list', file: 'volume_list', clazz: 'VolumeList' },
  { name: :'reset', file: 'reset', clazz: 'Reset' }
]