Class: Crowbar::Client::Command::Node::Transition
- Defined in:
- lib/crowbar/client/command/node/transition.rb
Overview
Implementation for the node transition command
Instance Attribute Summary
Attributes inherited from Base
#args, #options, #stderr, #stdin, #stdout
Instance Method Summary collapse
Methods inherited from Base
Constructor Details
This class inherits a constructor from Crowbar::Client::Command::Base
Instance Method Details
#execute ⇒ Object
31 32 33 34 35 36 37 38 39 40 41 42 |
# File 'lib/crowbar/client/command/node/transition.rb', line 31 def execute request.process do |request| case request.code when 200 say "Successfully transitioned to #{args.state}" when 404 err "Node does not exist" else err request.parsed_response["error"] end end end |
#request ⇒ Object
25 26 27 28 29 |
# File 'lib/crowbar/client/command/node/transition.rb', line 25 def request @request ||= Request::Node::Transition.new( args ) end |