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

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

Instance Attribute Summary collapse

Attributes inherited from Fog::Collection

#service

Instance Method Summary collapse

Methods inherited from Fog::Collection

#clear, #create, #destroy, #initialize, #inspect, #load, model, #model, #new, #reload, #table, #to_json

Methods included from Attributes::ClassMethods

#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes

Methods included from Fog::Core::DeprecatedConnectionAccessors

#connection, #connection=, #prepare_service_value

Methods included from Attributes::InstanceMethods

#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one

Constructor Details

This class inherits a constructor from Fog::Collection

Instance Attribute Details

#vmObject

Returns the value of attribute vm.



12
13
14
# File 'lib/fog/ovirt/models/compute/interfaces.rb', line 12

def vm
  @vm
end

Instance Method Details

#all(filters = {}) ⇒ Object



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

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



25
26
27
# File 'lib/fog/ovirt/models/compute/interfaces.rb', line 25

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