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.
11259 11260 11261 |
# File 'lib/ovirtsdk4/services.rb', line 11259 def list(opts = {}) internal_get(LIST, opts) end |
#nic_service(id) ⇒ HostNicService
Reference to the service that manages a single network interface.
11270 11271 11272 |
# File 'lib/ovirtsdk4/services.rb', line 11270 def nic_service(id) HostNicService.new(self, id) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
11281 11282 11283 11284 11285 11286 11287 11288 11289 11290 |
# File 'lib/ovirtsdk4/services.rb', line 11281 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 |