2012-11-27 19:57:16 -05:00
|
|
|
require 'fog/ecloud/models/compute/virtual_machine_assigned_ip'
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module Compute
|
|
|
|
class Ecloud
|
|
|
|
class VirtualMachineAssignedIps < Fog::Ecloud::Collection
|
|
|
|
|
|
|
|
identity :virtual_machine_id
|
|
|
|
|
|
|
|
model Fog::Compute::Ecloud::VirtualMachineAssignedIp
|
|
|
|
|
|
|
|
def all
|
2013-01-11 16:06:58 -05:00
|
|
|
data = service.get_virtual_machine_assigned_ips(self.identity).body
|
2012-11-27 19:57:16 -05:00
|
|
|
load(data)
|
|
|
|
end
|
|
|
|
|
|
|
|
def get(uri)
|
2013-01-11 16:06:58 -05:00
|
|
|
if data = service.get_virtual_machine_assigned_ip(self.identity)
|
2012-11-27 19:57:16 -05:00
|
|
|
new(data.body)
|
|
|
|
end
|
|
|
|
rescue Fog::Errors::NotFound
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|