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
template
service.
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.
22455 22456 22457 |
# File 'lib/ovirtsdk4/services.rb', line 22455 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
22477 22478 22479 22480 22481 22482 22483 22484 22485 22486 |
# File 'lib/ovirtsdk4/services.rb', line 22477 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.
22466 22467 22468 |
# File 'lib/ovirtsdk4/services.rb', line 22466 def template_service(id) StorageDomainTemplateService.new(self, id) end |