Sha256: e8e3b43d1b3ac0deb8ebdcfb5744352157d6b78747e82024366677586a629deb
Contents?: true
Size: 573 Bytes
Versions: 34
Compression:
Stored size: 573 Bytes
Contents
module OVIRT class Host < BaseObject attr_reader :description, :status, :cluster, :address def initialize(client, xml) super(client, xml[:id], xml[:href], (xml/'name').first.text) parse_xml_attributes!(xml) self end private def parse_xml_attributes!(xml) @description = ((xml/'description').first.text rescue nil) @address = ((xml/'address').first.text rescue nil) @status = (xml/'status').first.text @cluster = Link::new(@client, (xml/'cluster').first[:id], (xml/'cluster').first[:href]) end end end
Version data entries
34 entries across 32 versions & 2 rubygems