Class: VBox::VirtualSystemDescription

Inherits:
Base
  • Object
show all
Defined in:
lib/virtualbox/classes/virtual_system_description.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Base

#_this, #delete!, #ensure_hash, #initialize, #vbox_class

Constructor Details

This class inherits a constructor from VBox::Base

Instance Attribute Details

#refObject (readonly)

Returns the value of attribute ref.



4
5
6
# File 'lib/virtualbox/classes/virtual_system_description.rb', line 4

def ref
  @ref
end

Instance Method Details

#add_description(args = {}) ⇒ Object

Methods



14
15
16
17
# File 'lib/virtualbox/classes/virtual_system_description.rb', line 14

def add_description(args={})
  ensure_hash(args)
  VBox::WebService.send_request(:i_virtual_system_description_add_description, _this)
end

#countObject

Attributes



8
9
10
# File 'lib/virtualbox/classes/virtual_system_description.rb', line 8

def count
  VBox::WebService.send_request(:i_virtual_system_description_get_count, _this)
end

#get_descriptionObject



19
20
21
# File 'lib/virtualbox/classes/virtual_system_description.rb', line 19

def get_description
  VBox::WebService.send_request(:i_virtual_system_description_get_description, _this)
end

#get_description_by_type(args = {}) ⇒ Object



23
24
25
26
# File 'lib/virtualbox/classes/virtual_system_description.rb', line 23

def get_description_by_type(args={})
  ensure_hash(args)
  VBox::WebService.send_request(:i_virtual_system_description_get_description_by_type, _this)
end

#get_values_by_type(args = {}) ⇒ Object



28
29
30
31
# File 'lib/virtualbox/classes/virtual_system_description.rb', line 28

def get_values_by_type(args={})
  ensure_hash(args)
  VBox::WebService.send_request(:i_virtual_system_description_get_values_by_type, _this)
end

#set_final_values(args = {}) ⇒ Object



33
34
35
36
# File 'lib/virtualbox/classes/virtual_system_description.rb', line 33

def set_final_values(args={})
  ensure_hash(args)
  VBox::WebService.send_request(:i_virtual_system_description_set_final_values, _this)
end