Class: OvirtSDK4::TemplateDiskAttachmentsService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#attachment_service(id) ⇒ TemplateDiskAttachmentService
Reference to the service that manages a specific attachment.
-
#list(opts = {}) ⇒ Array<DiskAttachment>
List the disks that are attached to the template.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#attachment_service(id) ⇒ TemplateDiskAttachmentService
Reference to the service that manages a specific attachment.
27856 27857 27858 |
# File 'lib/ovirtsdk4/services.rb', line 27856 def (id) TemplateDiskAttachmentService.new(self, id) end |
#list(opts = {}) ⇒ Array<DiskAttachment>
List the disks that are attached to the template.
The order of the returned list of attachments isn’t guaranteed.
27845 27846 27847 |
# File 'lib/ovirtsdk4/services.rb', line 27845 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
27867 27868 27869 27870 27871 27872 27873 27874 27875 27876 |
# File 'lib/ovirtsdk4/services.rb', line 27867 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return (path) end return (path[0..(index - 1)]).service(path[(index + 1)..-1]) end |