Class: OvirtSDK4::NicNetworkFilterParametersService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#add(parameter, opts = {}) ⇒ NetworkFilterParameter
Add a network filter parameter.
-
#list(opts = {}) ⇒ Array<NetworkFilterParameter>
Retrieves the representations of the network filter parameters.
-
#parameter_service(id) ⇒ NicNetworkFilterParameterService
Reference to the service that manages a specific network filter parameter.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#add(parameter, opts = {}) ⇒ NetworkFilterParameter
Add a network filter parameter.
For example, to add the parameter for the network filter on NIC 456
of
virtual machine 789
send a request like this:
POST /ovirt-engine/api/vms/789/nics/456/networkfilterparameters
With a request body like this:
<network_filter_parameter>
<name>IP</name>
<value>10.0.1.2</value>
</network_filter_parameter>
16935 16936 16937 |
# File 'lib/ovirtsdk4/services.rb', line 16935 def add(parameter, opts = {}) internal_add(parameter, NetworkFilterParameter, ADD, opts) end |
#list(opts = {}) ⇒ Array<NetworkFilterParameter>
Retrieves the representations of the network filter parameters.
The order of the returned list of network filters isn’t guaranteed.
16966 16967 16968 |
# File 'lib/ovirtsdk4/services.rb', line 16966 def list(opts = {}) internal_get(LIST, opts) end |
#parameter_service(id) ⇒ NicNetworkFilterParameterService
Reference to the service that manages a specific network filter parameter.
16977 16978 16979 |
# File 'lib/ovirtsdk4/services.rb', line 16977 def parameter_service(id) NicNetworkFilterParameterService.new(self, id) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
16988 16989 16990 16991 16992 16993 16994 16995 16996 16997 |
# File 'lib/ovirtsdk4/services.rb', line 16988 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return parameter_service(path) end return parameter_service(path[0..(index - 1)]).service(path[(index + 1)..-1]) end |