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.
32508 32509 32510 |
# File 'lib/ovirtsdk4/services.rb', line 32508 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.
32553 32554 32555 |
# File 'lib/ovirtsdk4/services.rb', line 32553 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.
32542 32543 32544 |
# File 'lib/ovirtsdk4/services.rb', line 32542 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
32564 32565 32566 32567 32568 32569 32570 32571 32572 32573 |
# File 'lib/ovirtsdk4/services.rb', line 32564 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 |