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.
12295 12296 12297 |
# File 'lib/ovirtsdk4/services.rb', line 12295 def list(opts = {}) internal_get(LIST, opts) end |
#nic_service(id) ⇒ HostNicService
Reference to the service that manages a single network interface.
12306 12307 12308 |
# File 'lib/ovirtsdk4/services.rb', line 12306 def nic_service(id) HostNicService.new(self, id) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
12317 12318 12319 12320 12321 12322 12323 12324 12325 12326 |
# File 'lib/ovirtsdk4/services.rb', line 12317 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 |