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

40 lines
989 B
Ruby
Raw Normal View History

2010-10-08 20:42:25 +08:00
require 'fog/vcloud/terremark/ecloud/models/public_ip'
2010-05-28 05:17:59 +08:00
module Fog
class Vcloud
2010-05-28 05:17:59 +08:00
module Terremark
class Ecloud
2010-05-28 05:17:59 +08:00
class PublicIps < Fog::Vcloud::Collection
undef_method :create
2010-05-28 05:17:59 +08:00
attribute :href, :aliases => :Href
2010-05-28 05:17:59 +08:00
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
2010-05-28 05:17:59 +08:00
end
end
end
end
end