Class: OvirtSDK4::InstanceTypeNicsService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#add(nic, opts = {}) ⇒ Nic
Add new network interface to the instance type.
-
#list(opts = {}) ⇒ Array<Nic>
Lists all the configured network interface of the instance type.
-
#nic_service(id) ⇒ InstanceTypeNicService
Locates the
nicservice. -
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#add(nic, opts = {}) ⇒ Nic
Add new network interface to the instance type.
12858 12859 12860 |
# File 'lib/ovirtsdk4/services.rb', line 12858 def add(nic, opts = {}) internal_add(nic, Nic, ADD, opts) end |
#list(opts = {}) ⇒ Array<Nic>
Lists all the configured network interface of the instance type.
The order of the returned list of network interfaces isn’t guaranteed.
12895 12896 12897 |
# File 'lib/ovirtsdk4/services.rb', line 12895 def list(opts = {}) internal_get(LIST, opts) end |
#nic_service(id) ⇒ InstanceTypeNicService
Locates the nic service.
12906 12907 12908 |
# File 'lib/ovirtsdk4/services.rb', line 12906 def nic_service(id) InstanceTypeNicService.new(self, id) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
12917 12918 12919 12920 12921 12922 12923 12924 12925 12926 |
# File 'lib/ovirtsdk4/services.rb', line 12917 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return nic_service(path) end return nic_service(path[0..(index - 1)]).service(path[(index +1)..-1]) end |