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/vdcs.rb

47 lines
1.4 KiB
Ruby
Raw Normal View History

2013-06-18 14:50:37 -04:00
require 'fog/core/collection'
require 'fog/vcloudng/models/compute/vdc'
module Fog
module Compute
class Vcloudng
class Vdcs < Fog::Collection
model Fog::Compute::Vcloudng::Vdc
attribute :organization
2013-06-24 07:46:30 -04:00
def index(organization_id = organization.id)
vdc_links(organization_id).map{ |vdc| new(vdc)}
end
2013-06-18 14:50:37 -04:00
def all(organization_id = organization.id)
2013-06-24 07:46:30 -04:00
vdc_ids = vdc_links(organization_id).map {|vdc| vdc[:id] }
2013-06-18 14:50:37 -04:00
vdc_ids.map{ |vdc_id| get(vdc_id)}
end
def get(vdc_id)
data = service.get_vdc(vdc_id).body
2013-06-19 11:07:42 -04:00
data[:id] = data[:href].split('/').last
%w(:VdcItems :Link :ResourceEntities).each {|key_to_delete| data.delete(key_to_delete) }
2013-06-18 14:50:37 -04:00
new(data)
end
2013-06-24 07:46:30 -04:00
def get_by_name(vdc_name, organization_id = organization.id)
vdc = vdc_links(organization_id).detect{|vdc_link| vdc_link[:name] == vdc_name }
return nil unless vdc
get(vdc[:id])
end
private
def vdc_links(organization_id)
data = service.get_organization(organization_id).body
vdcs = data[:Link].select { |link| link[:type] == "application/vnd.vmware.vcloud.vdc+xml" }
vdcs.each{|vdc| vdc[:id] = vdc[:href].split('/').last }
vdcs
end
2013-06-18 14:50:37 -04:00
end
end
end
end