Class: OvirtSDK4::HostNicsService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#list(opts = {}) ⇒ Array<HostNic>
Returns the list of network interfaces of the host.
-
#nic_service(id) ⇒ HostNicService
Reference to the service that manages a single network interface.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#list(opts = {}) ⇒ Array<HostNic>
Returns the list of network interfaces of the host.
The order of the returned list of network interfaces isn’t guaranteed.
12272 12273 12274 |
# File 'lib/ovirtsdk4/services.rb', line 12272 def list(opts = {}) internal_get(LIST, opts) end |
#nic_service(id) ⇒ HostNicService
Reference to the service that manages a single network interface.
12283 12284 12285 |
# File 'lib/ovirtsdk4/services.rb', line 12283 def nic_service(id) HostNicService.new(self, id) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
12294 12295 12296 12297 12298 12299 12300 12301 12302 12303 |
# File 'lib/ovirtsdk4/services.rb', line 12294 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return nic_service(path) end return nic_service(path[0..(index - 1)]).service(path[(index + 1)..-1]) end |