Class: VagrantPlugins::ProfitBricks::Command::ListSnapshots
- Inherits:
-
Object
- Object
- VagrantPlugins::ProfitBricks::Command::ListSnapshots
- Includes:
- Utils
- Defined in:
- lib/vagrant-profitbricks/command/snapshots.rb
Instance Method Summary collapse
Methods included from Utils
Instance Method Details
#execute ⇒ Object
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
# File 'lib/vagrant-profitbricks/command/snapshots.rb', line 10 def execute opts = OptionParser.new do |o| o. = 'Usage: vagrant profitbricks snapshots [options]' end argv = (opts) return unless argv compute = fog_pb(argv[0]) rows = [] compute.snapshots.sort_by(&:id).each do |snapshot| rows << [ snapshot.id, snapshot.name ] end display_table(@env, %w[ID Name], rows) end |