Class: OvirtSDK4::Bios
- Defined in:
- lib/ovirtsdk4/types.rb,
lib/ovirtsdk4/types.rb
Instance Method Summary collapse
-
#==(other) ⇒ Object
Returns
true
ifself
andother
have the same attributes and values. -
#boot_menu ⇒ BootMenu
Returns the value of the
boot_menu
attribute. -
#boot_menu=(value) ⇒ Object
Sets the value of the
boot_menu
attribute. -
#hash ⇒ Object
Generates a hash value for this object.
-
#initialize(opts = {}) ⇒ Bios
constructor
Creates a new instance of the Bios class.
-
#type ⇒ BiosType
Returns the value of the
type
attribute. -
#type=(value) ⇒ Object
Sets the value of the
type
attribute.
Methods included from Type
Constructor Details
#initialize(opts = {}) ⇒ Bios
Creates a new instance of the OvirtSDK4::Bios class.
1433 1434 1435 1436 1437 |
# File 'lib/ovirtsdk4/types.rb', line 1433 def initialize(opts = {}) super(opts) self. = opts[:boot_menu] self.type = opts[:type] end |
Instance Method Details
#==(other) ⇒ Object
Returns true
if self
and other
have the same attributes and values.
1442 1443 1444 1445 1446 |
# File 'lib/ovirtsdk4/types.rb', line 1442 def ==(other) super && @boot_menu == other. && @type == other.type end |
#boot_menu ⇒ BootMenu
Returns the value of the boot_menu
attribute.
1383 1384 1385 |
# File 'lib/ovirtsdk4/types.rb', line 1383 def @boot_menu end |
#boot_menu=(value) ⇒ Object
Sets the value of the boot_menu
attribute.
The value
parameter can be an instance of OvirtSDK4::BootMenu or a hash.
If it is a hash then a new instance will be created passing the hash as the
opts
parameter to the constructor.
1396 1397 1398 1399 1400 1401 |
# File 'lib/ovirtsdk4/types.rb', line 1396 def (value) if value.is_a?(Hash) value = BootMenu.new(value) end @boot_menu = value end |
#hash ⇒ Object
Generates a hash value for this object.
1451 1452 1453 1454 1455 |
# File 'lib/ovirtsdk4/types.rb', line 1451 def hash super + @boot_menu.hash + @type.hash end |
#type ⇒ BiosType
Returns the value of the type
attribute.
1408 1409 1410 |
# File 'lib/ovirtsdk4/types.rb', line 1408 def type @type end |
#type=(value) ⇒ Object
Sets the value of the type
attribute.
1417 1418 1419 |
# File 'lib/ovirtsdk4/types.rb', line 1417 def type=(value) @type = value end |