Class: OvirtSDK4::NetworkAttachmentsService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#add(attachment, opts = {}) ⇒ NetworkAttachment
Add a new network attachment to the network interface.
-
#attachment_service(id) ⇒ NetworkAttachmentService
Locates the
attachmentservice. -
#list(opts = {}) ⇒ Array<NetworkAttachment>
Returns the list of network attachments of the host or host NIC.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#add(attachment, opts = {}) ⇒ NetworkAttachment
Add a new network attachment to the network interface.
16000 16001 16002 |
# File 'lib/ovirtsdk4/services.rb', line 16000 def add(, opts = {}) internal_add(, NetworkAttachment, ADD, opts) end |
#attachment_service(id) ⇒ NetworkAttachmentService
Locates the attachment service.
16045 16046 16047 |
# File 'lib/ovirtsdk4/services.rb', line 16045 def (id) NetworkAttachmentService.new(self, id) end |
#list(opts = {}) ⇒ Array<NetworkAttachment>
Returns the list of network attachments of the host or host NIC.
The order of the returned list of network attachments isn’t guaranteed.
16034 16035 16036 |
# File 'lib/ovirtsdk4/services.rb', line 16034 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
16056 16057 16058 16059 16060 16061 16062 16063 16064 16065 |
# File 'lib/ovirtsdk4/services.rb', line 16056 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 |