Class: OVIRT::Host

Inherits:
BaseObject show all
Defined in:
lib/ovirt/host.rb

Instance Attribute Summary collapse

Attributes inherited from BaseObject

#client, #href, #id, #name

Instance Method Summary collapse

Methods inherited from BaseObject

#parse_bool, #parse_version

Constructor Details

#initialize(client, xml) ⇒ Host

Returns a new instance of Host.



5
6
7
8
9
# File 'lib/ovirt/host.rb', line 5

def initialize(client, xml)
  super(client, xml[:id], xml[:href], (xml/'name').first.text)
  parse_xml_attributes!(xml)
  self
end

Instance Attribute Details

#addressObject (readonly)

Returns the value of attribute address.



3
4
5
# File 'lib/ovirt/host.rb', line 3

def address
  @address
end

#clusterObject (readonly)

Returns the value of attribute cluster.



3
4
5
# File 'lib/ovirt/host.rb', line 3

def cluster
  @cluster
end

#descriptionObject (readonly)

Returns the value of attribute description.



3
4
5
# File 'lib/ovirt/host.rb', line 3

def description
  @description
end

#statusObject (readonly)

Returns the value of attribute status.



3
4
5
# File 'lib/ovirt/host.rb', line 3

def status
  @status
end