class OVIRT::OperatingSystem

Attributes

description[R]

Public Class Methods

new(client, xml) click to toggle source
Calls superclass method OVIRT::BaseObject::new
  # File lib/ovirt/operating_system.rb
5 def initialize(client, xml)
6   super(client, xml[:id], xml[:href], (xml/'name').text)
7   @description = (xml/'description').text
8   self
9 end