mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
cfc1d58847
[ecloud] fixed a test and removed connection deprecation notices
27 lines
631 B
Ruby
27 lines
631 B
Ruby
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
|
|
load(data)
|
|
end
|
|
|
|
def get(uri)
|
|
if data = service.get_virtual_machine_assigned_ip(self.identity)
|
|
new(data.body)
|
|
end
|
|
rescue Fog::Errors::NotFound
|
|
nil
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|