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.
9989 9990 9991 |
# File 'lib/ovirtsdk4/services.rb', line 9989 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.
9978 9979 9980 |
# File 'lib/ovirtsdk4/services.rb', line 9978 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
10000 10001 10002 10003 10004 10005 10006 10007 10008 10009 |
# File 'lib/ovirtsdk4/services.rb', line 10000 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 |