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

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

Instance Attribute Summary

Attributes inherited from Base

#response

Instance Method Summary collapse

Methods inherited from Base

#attr_value, #characters, #end_element_namespace, #initialize, #start_element_namespace, #value

Constructor Details

This class inherits a constructor from Fog::Parsers::Base

Instance Method Details

#resetObject



8
9
10
# File 'lib/fog/voxel/parsers/compute/voxcloud_delete.rb', line 8

def reset
  @response = {}
end

#start_element(name, attrs = []) ⇒ Object



12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/fog/voxel/parsers/compute/voxcloud_delete.rb', line 12

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