Class: OvirtSDK4::UnmanagedNetworksService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#list(opts = {}) ⇒ Array<UnmanagedNetwork>
Returns the list of unmanaged networks of the host.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
-
#unmanaged_network_service(id) ⇒ UnmanagedNetworkService
Locates the
unmanaged_network
service.
Methods inherited from Service
Instance Method Details
#list(opts = {}) ⇒ Array<UnmanagedNetwork>
Returns the list of unmanaged networks of the host.
The order of the returned list of networks isn’t guaranteed.
27518 27519 27520 |
# File 'lib/ovirtsdk4/services.rb', line 27518 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
27540 27541 27542 27543 27544 27545 27546 27547 27548 27549 |
# File 'lib/ovirtsdk4/services.rb', line 27540 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return unmanaged_network_service(path) end return unmanaged_network_service(path[0..(index - 1)]).service(path[(index +1)..-1]) end |
#unmanaged_network_service(id) ⇒ UnmanagedNetworkService
Locates the unmanaged_network
service.
27529 27530 27531 |
# File 'lib/ovirtsdk4/services.rb', line 27529 def unmanaged_network_service(id) UnmanagedNetworkService.new(self, id) end |