Class: OvirtSDK4::StorageDomainTemplatesService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#list(opts = {}) ⇒ Array<Template>
Returns the list of templates availalbe in the storage domain.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
-
#template_service(id) ⇒ StorageDomainTemplateService
Locates the
templateservice.
Methods inherited from Service
Instance Method Details
#list(opts = {}) ⇒ Array<Template>
Returns the list of templates availalbe in the storage domain.
The order of the returned list of templates isn’t guaranteed.
23479 23480 23481 |
# File 'lib/ovirtsdk4/services.rb', line 23479 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
23501 23502 23503 23504 23505 23506 23507 23508 23509 23510 |
# File 'lib/ovirtsdk4/services.rb', line 23501 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return template_service(path) end return template_service(path[0..(index - 1)]).service(path[(index + 1)..-1]) end |
#template_service(id) ⇒ StorageDomainTemplateService
Locates the template service.
23490 23491 23492 |
# File 'lib/ovirtsdk4/services.rb', line 23490 def template_service(id) StorageDomainTemplateService.new(self, id) end |