Class: OvirtSDK4::BootMenu
- Inherits:
- 
      Struct
      
        - Object
- Struct
- OvirtSDK4::BootMenu
 
- Defined in:
- lib/ovirtsdk4/types.rb,
 lib/ovirtsdk4/types.rb
Instance Method Summary (collapse)
- 
  
    
      - (Boolean) enabled 
    
    
  
  
  
  
  
  
  
  
  
    Returns the value of the enabledattribute.
- 
  
    
      - (Object) enabled=(value) 
    
    
  
  
  
  
  
  
  
  
  
    Sets the value of the enabledattribute.
- 
  
    
      - (BootMenu) initialize(opts = {}) 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    Creates a new instance of the BootMenu class. 
Methods included from Type
Constructor Details
- (BootMenu) initialize(opts = {})
Creates a new instance of the OvirtSDK4::BootMenu class.
| 1268 1269 1270 1271 | # File 'lib/ovirtsdk4/types.rb', line 1268 def initialize(opts = {}) super(opts) self.enabled = opts[:enabled] end | 
Instance Method Details
- (Boolean) enabled
Returns the value of the enabled attribute.
| 1245 1246 1247 | # File 'lib/ovirtsdk4/types.rb', line 1245 def enabled return @enabled end | 
- (Object) enabled=(value)
Sets the value of the enabled attribute.
| 1254 1255 1256 | # File 'lib/ovirtsdk4/types.rb', line 1254 def enabled=(value) @enabled = value end |