Class: OvirtSDK4::ExternalNetworkProviderConfigurationsService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#configuration_service(id) ⇒ ExternalNetworkProviderConfigurationService
Locates the
configuration
service. -
#list(opts = {}) ⇒ Array<ExternalNetworkProviderConfiguration>
Returns the list of all external network providers on the host.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#configuration_service(id) ⇒ ExternalNetworkProviderConfigurationService
Locates the configuration
service.
8986 8987 8988 |
# File 'lib/ovirtsdk4/services.rb', line 8986 def configuration_service(id) ExternalNetworkProviderConfigurationService.new(self, id) end |
#list(opts = {}) ⇒ Array<ExternalNetworkProviderConfiguration>
Returns the list of all external network providers on the host.
The order of the returned list of networks is not guaranteed.
8975 8976 8977 |
# File 'lib/ovirtsdk4/services.rb', line 8975 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 |
# File 'lib/ovirtsdk4/services.rb', line 8997 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return configuration_service(path) end return configuration_service(path[0..(index - 1)]).service(path[(index +1)..-1]) end |