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.
12354 12355 12356 |
# File 'lib/ovirtsdk4/services.rb', line 12354 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.
12343 12344 12345 |
# File 'lib/ovirtsdk4/services.rb', line 12343 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
12365 12366 12367 12368 12369 12370 12371 12372 12373 12374 |
# File 'lib/ovirtsdk4/services.rb', line 12365 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 |