Method: OvirtSDK4::OperatingSystem#initialize
- Defined in:
- lib/ovirtsdk4/types.rb
#initialize(opts = {}) ⇒ OperatingSystem
Creates a new instance of the OvirtSDK4::OperatingSystem class.
13823 13824 13825 13826 13827 13828 13829 13830 13831 13832 13833 13834 |
# File 'lib/ovirtsdk4/types.rb', line 13823 def initialize(opts = {}) super(opts) self.boot = opts[:boot] self.cmdline = opts[:cmdline] self.custom_kernel_cmdline = opts[:custom_kernel_cmdline] self.description = opts[:description] self.initrd = opts[:initrd] self.kernel = opts[:kernel] self.reported_kernel_cmdline = opts[:reported_kernel_cmdline] self.type = opts[:type] self.version = opts[:version] end |