Class: VBox::VirtualSystemDescription

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

Instance Attribute Summary

Attributes inherited from Base

#ref

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 Method Details

#add_description(args = {}) ⇒ Object

Methods



12
13
14
15
# File 'lib/virtualbox/classes/virtual_system_description.rb', line 12

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

#countObject

Attributes



6
7
8
# File 'lib/virtualbox/classes/virtual_system_description.rb', line 6

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

#get_descriptionObject



17
18
19
# File 'lib/virtualbox/classes/virtual_system_description.rb', line 17

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

#get_description_by_type(args = {}) ⇒ Object



21
22
23
24
# File 'lib/virtualbox/classes/virtual_system_description.rb', line 21

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



26
27
28
29
# File 'lib/virtualbox/classes/virtual_system_description.rb', line 26

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



31
32
33
34
# File 'lib/virtualbox/classes/virtual_system_description.rb', line 31

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