Class: Fog::Parsers::Compute::Voxel::VoxcloudDelete
- Inherits:
-
Base
- Object
- Nokogiri::XML::SAX::Document
- Base
- Fog::Parsers::Compute::Voxel::VoxcloudDelete
- Defined in:
- lib/fog/voxel/parsers/compute/voxcloud_delete.rb
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
Methods inherited from Base
#attr_value, #characters, #initialize, #value
Constructor Details
This class inherits a constructor from Fog::Parsers::Base
Instance Method Details
#reset ⇒ Object
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 |