mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
![freeformz](/assets/img/avatar_default.png)
Many changes: -Become more of a proper Fog Service. -Drop most of the Collection/Model customizations. -Add a hook for services to do something after #new with the instance -Move to the ToHashDocument parser ... so no more having to actually make parsers. -Fog::Vcloud::Extension is kind of like Fog::Service, but for writing extension modules to Fog::Vcloud. -Fix up existing specs/mocks (they're not complete atm, but the existing ones are up to date). -Fog::Vcloud::Terremark::Ecloud gets almost all extensions implemented (almost). -Fog::Vcloud::Terremark::Ecloud bumped to working with the current TMRK API release. -Factor out some TMRK/ecloud specifc mock data into the ecloud module. -Probably forgetting something.
41 lines
914 B
Ruby
41 lines
914 B
Ruby
module Fog
|
|
module Vcloud
|
|
|
|
class Real
|
|
def vdcs(options = {})
|
|
@vdcs ||= Fog::Vcloud::Vdcs.new(options.merge(:connection => self))
|
|
end
|
|
end
|
|
|
|
class Vdcs < Fog::Vcloud::Collection
|
|
|
|
model Fog::Vcloud::Vdc
|
|
|
|
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
|