Class: Chef::Knife::ProfitbricksVolumeDelete

Inherits:
Chef::Knife
  • Object
show all
Includes:
ProfitbricksBase
Defined in:
lib/chef/knife/profitbricks_volume_delete.rb

Instance Method Summary collapse

Methods included from ProfitbricksBase

#connection, #error_and_exit, #get_image, included, #msg_pair, #validate_required_params

Instance Method Details

#runObject



16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# File 'lib/chef/knife/profitbricks_volume_delete.rb', line 16

def run
  connection
  @name_args.each do |volume_id|
    begin
      volume = ProfitBricks::Volume.get(Chef::Config[:knife][:datacenter_id], volume_id)
    rescue Excon::Errors::NotFound
      ui.error("Volume ID #{volume_id} not found. Skipping.")
      next
    end

    msg_pair('ID', volume.id)
    msg_pair('Name', volume.properties['name'])
    msg_pair('Size', volume.properties['size'])
    msg_pair('Bus', volume.properties['bus'])
    msg_pair('Image', volume.properties['image'])

    confirm('Do you really want to delete this volume')

    volume.delete
    ui.warn("Deleted volume #{volume.id}")
  end
end