Class: Fog::Parsers::Compute::Voxel::VoxcloudCreate
- Inherits:
-
Base
- Object
- Nokogiri::XML::SAX::Document
- Base
- Fog::Parsers::Compute::Voxel::VoxcloudCreate
show all
- Defined in:
- lib/fog/voxel/parsers/compute/voxcloud_create.rb
Instance Attribute Summary
Attributes inherited from Base
#response
Instance Method Summary
collapse
Methods inherited from Base
#attr_value, #characters, #initialize, #value
Instance Method Details
#end_element(name) ⇒ Object
26
27
28
29
30
31
32
33
|
# File 'lib/fog/voxel/parsers/compute/voxcloud_create.rb', line 26
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
8
9
10
|
# File 'lib/fog/voxel/parsers/compute/voxcloud_create.rb', line 8
def reset
@response = { 'device' => {} }
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_create.rb', line 12
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
|