2011-08-24 21:29:14 -04:00
|
|
|
require 'fog/ecloud/models/compute/vdc'
|
2011-02-17 13:44:46 -05:00
|
|
|
|
|
|
|
module Fog
|
2011-06-16 19:28:54 -04:00
|
|
|
module Compute
|
|
|
|
class Ecloud
|
2011-02-17 13:44:46 -05:00
|
|
|
|
|
|
|
class Vdcs < Collection
|
|
|
|
|
2011-06-16 19:28:54 -04:00
|
|
|
model Fog::Compute::Ecloud::Vdc
|
2011-02-17 13:44:46 -05:00
|
|
|
|
|
|
|
undef_method :create
|
|
|
|
|
|
|
|
def all
|
|
|
|
data = connection.get_organization(organization_uri).body[:Link].select { |link| link[:type] == "application/vnd.vmware.vcloud.vdc+xml" }
|
|
|
|
data.each { |link| link.delete_if { |key, value| [:rel].include?(key) } }
|
|
|
|
load(data)
|
|
|
|
end
|
|
|
|
|
|
|
|
def get(uri)
|
|
|
|
if data = connection.get_vdc(uri)
|
|
|
|
new(data.body)
|
|
|
|
end
|
|
|
|
rescue Fog::Errors::NotFound
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def organization_uri
|
|
|
|
@organizatio_uri ||= connection.default_organization_uri
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def organization_uri=(new_organization_uri)
|
|
|
|
@organization_uri = new_organization_uri
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|