2011-09-01 18:10:57 -04:00
|
|
|
require 'fog/core/collection'
|
|
|
|
require 'fog/vsphere/models/compute/server'
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module Compute
|
|
|
|
class Vsphere
|
|
|
|
|
|
|
|
class Servers < Fog::Collection
|
|
|
|
|
|
|
|
model Fog::Compute::Vsphere::Server
|
|
|
|
|
|
|
|
def all
|
2011-09-10 16:27:52 -04:00
|
|
|
response = connection.list_virtual_machines
|
|
|
|
load(response['virtual_machines'])
|
2011-09-01 18:10:57 -04:00
|
|
|
end
|
|
|
|
|
2011-09-06 23:09:57 -04:00
|
|
|
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 =~ /^vm-/
|
2011-09-10 16:27:52 -04:00
|
|
|
response = connection.find_vm_by_ref('vm_ref' => id)
|
|
|
|
server_attributes = response['virtual_machine']
|
2011-09-06 23:09:57 -04:00
|
|
|
else
|
2011-09-10 16:27:52 -04:00
|
|
|
response = connection.list_virtual_machines('instance_uuid' => id)
|
|
|
|
server_attributes = response['virtual_machines'].first
|
2011-09-06 19:53:56 -04:00
|
|
|
end
|
2011-09-10 16:27:52 -04:00
|
|
|
new(server_attributes)
|
2011-09-01 18:10:57 -04:00
|
|
|
rescue Fog::Compute::Vsphere::NotFound
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|