# File lib/fog/vcloud/models/compute/organization.rb, line 34 def catalogs @catalogs ||= Fog::Vcloud::Compute::Catalogs. new( :service => service, :href => href ) end
# File lib/fog/vcloud/models/compute/organization.rb, line 15 def networks @networks ||= Fog::Vcloud::Compute::Networks. new( :service => service, :href => href ) end
# File lib/fog/vcloud/models/compute/organization.rb, line 21 def tasks load_unless_loaded! @tasks ||= Fog::Vcloud::Compute::Tasks. new( :service => service, :href => other_links.find{|l| l[:type] == 'application/vnd.vmware.vcloud.tasksList+xml'}[:href] ) end
# File lib/fog/vcloud/models/compute/organization.rb, line 28 def vdcs @vdcs ||= Fog::Vcloud::Compute::Vdcs. new( :service => service, :href => href ) end