Class: Crowbar::Client::Command::VirtualIP::Deallocate

Inherits:
Base
  • Object
show all
Defined in:
lib/crowbar/client/command/virtual_ip/deallocate.rb

Overview

Implementation for the virtual IP deallocate command

Instance Attribute Summary

Attributes inherited from Base

#args, #options, #stderr, #stdin, #stdout

Instance Method Summary collapse

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from Crowbar::Client::Command::Base

Instance Method Details

#executeObject



31
32
33
34
35
36
37
38
39
40
# File 'lib/crowbar/client/command/virtual_ip/deallocate.rb', line 31

def execute
  request.process do |request|
    case request.code
    when 200
      say "Successfully deallocated the virtual IP"
    else
      err request.parsed_response["error"]
    end
  end
end

#requestObject



25
26
27
28
29
# File 'lib/crowbar/client/command/virtual_ip/deallocate.rb', line 25

def request
  @request ||= Request::VirtualIP::Deallocate.new(
    args
  )
end