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.
12431 12432 12433 |
# File 'lib/ovirtsdk4/services.rb', line 12431 def list(opts = {}) internal_get(LIST, opts) end |
#nic_service(id) ⇒ HostNicService
Reference to the service that manages a single network interface.
12442 12443 12444 |
# File 'lib/ovirtsdk4/services.rb', line 12442 def nic_service(id) HostNicService.new(self, id) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
12453 12454 12455 12456 12457 12458 12459 12460 12461 12462 |
# File 'lib/ovirtsdk4/services.rb', line 12453 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 |