class Fog::Compute::Vsphere::Servers

Public Instance Methods

all(filters = {}) click to toggle source

'path' => '/Datacenters/vm/Jeff/Templates' will be MUCH faster. than simply listing everything.

# File lib/fog/vsphere/models/compute/servers.rb, line 14
def all(filters = {})
  # REVISIT: I'm not sure if this is the best way to implement search
  # filters on a collection but it does work.  I need to study the AWS
  # code more to make sure this matches up.
  filters['folder'] ||= attributes['folder']
  response = connection.list_virtual_machines(filters)
  load(response['virtual_machines'])
end
get(id) click to toggle source
# File lib/fog/vsphere/models/compute/servers.rb, line 23
def get(id)
  # Is the id a managed_object_reference?  This may be the case if we're reloading
  # a model of a VM in the process of being cloned, since it
  # will not have a instance_uuid yet.
  if id =~ %r^vm-/
    response = connection.find_vm_by_ref('vm_ref' => id)
    server_attributes = response['virtual_machine']
  else
    response = connection.list_virtual_machines('instance_uuid' => id)
    server_attributes = response['virtual_machines'].first
  end
  new(server_attributes)
rescue Fog::Compute::Vsphere::NotFound
  nil
end