Module: Deltacloud::EC2::ResultHelper

Included in:
ResultParser
Defined in:
lib/ec2/helpers/result.rb

Instance Method Summary collapse

Instance Method Details

#instance_state_code(state) ⇒ Object



19
20
21
22
23
24
25
26
27
28
# File 'lib/ec2/helpers/result.rb', line 19

def instance_state_code(state)
  case state
    when 'running' then '16'
    when 'pending' then '0'
    when 'stopping' then '64'
    when 'stopped' then '80'
    when 'shutting-down' then '32'
    else '-1'
  end
end