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.
10009 10010 10011 |
# File 'lib/ovirtsdk4/services.rb', line 10009 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.
9998 9999 10000 |
# File 'lib/ovirtsdk4/services.rb', line 9998 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
10020 10021 10022 10023 10024 10025 10026 10027 10028 10029 |
# File 'lib/ovirtsdk4/services.rb', line 10020 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 |