Class: Fog::Parsers::Compute::Voxel::VoxcloudDelete

Inherits:
Base
  • Object
show all
Defined in:
lib/fog/parsers/compute/voxel/voxcloud_delete.rb

Instance Method Summary collapse

Instance Method Details

#resetObject



6
7
8
# File 'lib/fog/parsers/compute/voxel/voxcloud_delete.rb', line 6

def reset
  @response = {}
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_delete.rb', line 10

def start_element(name, attrs = [])
  super

  case name
  when "rsp"
    @response["stat"] = attr_value("stat", attrs)
  when "err"
    @response["err"] = {
      "code"  => attr_value("code", attrs),
      "msg"   => attr_value("msg", attrs)
    }
  end
end