1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/ecloud/models/compute/virtual_machine_assigned_ips.rb

28 lines
631 B
Ruby
Raw Normal View History

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
data = service.get_virtual_machine_assigned_ips(self.identity).body
2012-11-27 19:57:16 -05:00
load(data)
end
def get(uri)
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