Class: Fog::Parsers::XenServer::GetHosts

Inherits:
Base
  • Object
show all
Defined in:
lib/fog/xenserver/parsers/get_hosts.rb

Instance Attribute Summary

Attributes inherited from Base

#response

Instance Method Summary collapse

Methods inherited from Base

#initialize

Constructor Details

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

Instance Method Details

#parse(data) ⇒ Object



9
10
11
12
# File 'lib/fog/xenserver/parsers/get_hosts.rb', line 9

def parse( data )
  parser = Fog::Parsers::XenServer::Base.new
  data.each_pair {|reference, host_hash| @response << parser.parse( host_hash ).merge(:reference => reference) }
end

#resetObject



5
6
7
# File 'lib/fog/xenserver/parsers/get_hosts.rb', line 5

def reset
  @response = []
end