Class: OvirtSDK4::VmCdromsService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#add(cdrom, opts = {}) ⇒ Cdrom
Add a cdrom to a virtual machine identified by the given id.
-
#cdrom_service(id) ⇒ VmCdromService
Returns a reference to the service that manages a specific CDROM device.
-
#list(opts = {}) ⇒ Array<Cdrom>
Returns the list of CDROM devices of the virtual machine.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#add(cdrom, opts = {}) ⇒ Cdrom
Add a cdrom to a virtual machine identified by the given id.
29754 29755 29756 |
# File 'lib/ovirtsdk4/services.rb', line 29754 def add(cdrom, opts = {}) internal_add(cdrom, Cdrom, ADD, opts) end |
#cdrom_service(id) ⇒ VmCdromService
Returns a reference to the service that manages a specific CDROM device.
29799 29800 29801 |
# File 'lib/ovirtsdk4/services.rb', line 29799 def cdrom_service(id) VmCdromService.new(self, id) end |
#list(opts = {}) ⇒ Array<Cdrom>
Returns the list of CDROM devices of the virtual machine.
The order of the returned list of CD-ROM devices isn’t guaranteed.
29788 29789 29790 |
# File 'lib/ovirtsdk4/services.rb', line 29788 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
29810 29811 29812 29813 29814 29815 29816 29817 29818 29819 |
# File 'lib/ovirtsdk4/services.rb', line 29810 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return cdrom_service(path) end return cdrom_service(path[0..(index - 1)]).service(path[(index +1)..-1]) end |