Class: OvirtSDK4::ImagesService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#image_service(id) ⇒ ImageService
Locates the
imageservice. -
#list(opts = {}) ⇒ Array<Image>
Returns the list of images available in the storage domain or provider.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#image_service(id) ⇒ ImageService
Locates the image service.
13522 13523 13524 |
# File 'lib/ovirtsdk4/services.rb', line 13522 def image_service(id) ImageService.new(self, id) end |
#list(opts = {}) ⇒ Array<Image>
Returns the list of images available in the storage domain or provider.
The order of the returned list of images isn’t guaranteed.
13511 13512 13513 |
# File 'lib/ovirtsdk4/services.rb', line 13511 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
13533 13534 13535 13536 13537 13538 13539 13540 13541 13542 |
# File 'lib/ovirtsdk4/services.rb', line 13533 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return image_service(path) end return image_service(path[0..(index - 1)]).service(path[(index + 1)..-1]) end |