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>
15566 15567 15568 |
# File 'lib/ovirtsdk4/services.rb', line 15566 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.
15597 15598 15599 |
# File 'lib/ovirtsdk4/services.rb', line 15597 def list(opts = {}) internal_get(LIST, opts) end |
#parameter_service(id) ⇒ NicNetworkFilterParameterService
Reference to the service that manages a specific network filter parameter.
15608 15609 15610 |
# File 'lib/ovirtsdk4/services.rb', line 15608 def parameter_service(id) NicNetworkFilterParameterService.new(self, id) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
15619 15620 15621 15622 15623 15624 15625 15626 15627 15628 |
# File 'lib/ovirtsdk4/services.rb', line 15619 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 |