Class: Fog::Parsers::Compute::Voxel::VoxcloudCreate
- Inherits:
-
Base
- Object
- Base
- Fog::Parsers::Compute::Voxel::VoxcloudCreate
- Defined in:
- lib/fog/parsers/compute/voxel/voxcloud_create.rb
Instance Method Summary collapse
Instance Method Details
#end_element(name) ⇒ Object
24 25 26 27 28 29 30 31 |
# File 'lib/fog/parsers/compute/voxel/voxcloud_create.rb', line 24 def end_element(name) case name when "id" @response["device"][name] = value when "last_update" @response["device"][name] = Time.at(value.to_i) end end |
#reset ⇒ Object
6 7 8 |
# File 'lib/fog/parsers/compute/voxel/voxcloud_create.rb', line 6 def reset @response = { "device" => {} } end |
#start_element(name, attrs = []) ⇒ Object
10 11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'lib/fog/parsers/compute/voxel/voxcloud_create.rb', line 10 def start_element(name, attrs = []) super case name when "err" @response["err"] = { "code" => attr_value("code", attrs), "msg" => attr_value("msg", attrs) } when "rsp" @response["stat"] = attr_value("stat", attrs) end end |