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.
29410 29411 29412 |
# File 'lib/ovirtsdk4/services.rb', line 29410 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.
29455 29456 29457 |
# File 'lib/ovirtsdk4/services.rb', line 29455 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.
29444 29445 29446 |
# File 'lib/ovirtsdk4/services.rb', line 29444 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
29466 29467 29468 29469 29470 29471 29472 29473 29474 29475 |
# File 'lib/ovirtsdk4/services.rb', line 29466 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 |