Methods

Class/Module Index [+]

Quicksearch

Fog::Compute::Vsphere::Interfaces

Attributes

vm[RW]

Public Instance Methods

all(filters = {}) click to toggle source
# File lib/fog/vsphere/models/compute/interfaces.rb, line 14
def all(filters = {})
  requires :vm
  case vm
    when Fog::Compute::Vsphere::Server
      load service.list_vm_interfaces(vm.id)
    when Fog::Compute::Vsphere::Template
      load service.list_template_interfaces(vm.id)
    else
    raise 'interfaces should have vm or template'
  end
end
get(id) click to toggle source
# File lib/fog/vsphere/models/compute/interfaces.rb, line 26
def get(id)
  requires :vm
  case vm
    when Fog::Compute::Vsphere::Server
      interface=service.get_vm_interface(vm.id, :key => id, :mac=> id, :name => id)
    when Fog::Compute::Vsphere::Template
      interface=service.get_template_interfaces(vm.id, :key => id, :mac=> id, :name => id)
    else
    raise 'interfaces should have vm or template'
  end
  if interface 
    Fog::Compute::Vsphere::Interface.new(interface) 
  else
    nil         
  end
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.