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.
32063 32064 32065 |
# File 'lib/ovirtsdk4/services.rb', line 32063 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.
32108 32109 32110 |
# File 'lib/ovirtsdk4/services.rb', line 32108 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.
32097 32098 32099 |
# File 'lib/ovirtsdk4/services.rb', line 32097 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
32119 32120 32121 32122 32123 32124 32125 32126 32127 32128 |
# File 'lib/ovirtsdk4/services.rb', line 32119 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 |