Class: Fog::Compute::Ovirt::Interfaces

Inherits:
Fog::Collection
  • Object
show all
Defined in:
lib/fog/ovirt/models/compute/interfaces.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#vmObject

Returns the value of attribute vm.



10
11
12
# File 'lib/fog/ovirt/models/compute/interfaces.rb', line 10

def vm
  @vm
end

Instance Method Details

#all(filters = {}) ⇒ Object



12
13
14
15
16
17
18
19
20
21
# File 'lib/fog/ovirt/models/compute/interfaces.rb', line 12

def all(filters = {})
  requires :vm
  if vm.is_a? Fog::Compute::Ovirt::Server
    load service.list_vm_interfaces(vm.id)
  elsif vm.is_a? Fog::Compute::Ovirt::Template
    load service.list_template_interfaces(vm.id)
  else
    raise 'interfaces should have vm or template'
  end
end

#get(id) ⇒ Object



23
24
25
# File 'lib/fog/ovirt/models/compute/interfaces.rb', line 23

def get(id)
  new service.get_interface(id)
end