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/vcloudng/models/compute/organizations.rb
2013-06-19 17:06:44 +02:00

27 lines
No EOL
643 B
Ruby

require 'fog/core/collection'
require 'fog/vcloudng/models/compute/organization'
module Fog
module Compute
class Vcloudng
class Organizations < Fog::Collection
model Fog::Compute::Vcloudng::Organization
def all
data = service.get_organizations.body
org = data[:Org]
org[:id] = org[:href].split('/').last
load([org])
end
def get(organization_id)
data = service.get_organization(organization_id).body
data.delete(:Link)
data[:id] = data[:href].split('/').last
new(data)
end
end
end
end
end