class Chef::Knife::ProfitbricksLanDelete

Public Instance Methods

run() click to toggle source
# File lib/chef/knife/profitbricks_lan_delete.rb, line 16
def run
  connection
  @name_args.each do |lan_id|
    begin
      lan = ProfitBricks::LAN.get(config[:datacenter_id], lan_id)
    rescue Excon::Errors::NotFound
      ui.error("Lan ID #{lan_id} not found. Skipping.")
      next
    end

    msg_pair('ID', lan.id)
    msg_pair('Name', lan.properties['name'])
    msg_pair('Public', lan.properties['public'].to_s)

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

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