mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
2a9224cfa7
Added basic spec framework; changed class names to match the template fog seems to prefer Servers tests pass; create and delete implemented. Added an example script Properly handle a 409 response from the API Fixed BBG code to work with the new api endpoint changes; tweaks to the (currently nonexistent) reboot api call Implement the reboot command for blocks
33 lines
671 B
Ruby
33 lines
671 B
Ruby
module Fog
|
|
module Parsers
|
|
module Bluebox
|
|
|
|
class GetBlocks < Fog::Parsers::Base
|
|
|
|
def reset
|
|
@block = {}
|
|
@response = { 'blocks' => [] }
|
|
end
|
|
|
|
def end_element(name)
|
|
case name
|
|
when 'ip'
|
|
@block['ips'] ||= []
|
|
@block['ips'] << @value
|
|
when 'memory', 'storage'
|
|
@block[name] = @value.to_i
|
|
when 'cpu'
|
|
@block[name] = @value.to_f
|
|
when 'hostname', 'id'
|
|
@block[name] = @value
|
|
when 'record'
|
|
@response['blocks'] << @block
|
|
@block = {}
|
|
end
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|