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/compute_pools.rb
Eugene Howe bc87c0c9a9 testing
2012-04-11 19:50:01 -04:00

36 lines
915 B
Ruby

require 'fog/ecloud/models/compute/compute_pool'
module Fog
module Compute
class Ecloud
class ComputePools < Fog::Ecloud::Collection
undef_method :create
attribute :href, :aliases => :Href
model Fog::Compute::Ecloud::ComputePool
#get_request :get_compute_pool
#vcloud_type "application/vnd.tmrk.ecloud.publicIp+xml"
#all_request lambda { |compute_pools| public_ips.connection.get_public_ips(public_ips.href) }
def all
check_href!(:message => "the Compute Pool href of the Vdc you want to enumerate")
if data = connection.get_compute_pools(href).body[:ComputePool]
load(data)
end
end
def get(uri)
if data = connection.get_compute_pool(uri)
new(data.body)
end
rescue Fog::Errors::NotFound
nil
end
end
end
end
end