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/vcloud/terremark/ecloud/models/public_ips.rb
Dan Peterson c29a72ccd1 Rework vCloud mocking to use mock objects instead of a Hash.
Make some mock behavior reflect reality at Terremark.

Add mocks for Terremark configure_vapp and delete_vapp.
2010-11-05 08:56:50 +08:00

39 lines
989 B
Ruby

require 'fog/vcloud/terremark/ecloud/models/public_ip'
module Fog
class Vcloud
module Terremark
class Ecloud
class PublicIps < Fog::Vcloud::Collection
undef_method :create
attribute :href, :aliases => :Href
model Fog::Vcloud::Terremark::Ecloud::PublicIp
#get_request :get_public_ip
#vcloud_type "application/vnd.tmrk.ecloud.publicIp+xml"
#all_request lambda { |public_ips| public_ips.connection.get_public_ips(public_ips.href) }
def all
check_href!(:message => "the Public Ips href of the Vdc you want to enumerate")
if data = connection.get_public_ips(href).body[:PublicIPAddress]
load(data)
end
end
def get(uri)
if data = connection.get_public_ip(uri)
new(data.body)
end
rescue Fog::Errors::NotFound
nil
end
end
end
end
end
end