class Fog::Vcloud::Compute::Organization
Public Instance Methods
catalogs()
click to toggle source
# File lib/fog/vcloud/models/compute/organization.rb, line 33 def catalogs @catalogs ||= Fog::Vcloud::Compute::Catalogs. new( :service => service, :href => href ) end
networks()
click to toggle source
# File lib/fog/vcloud/models/compute/organization.rb, line 14 def networks @networks ||= Fog::Vcloud::Compute::Networks. new( :service => service, :href => href ) end
tasks()
click to toggle source
# File lib/fog/vcloud/models/compute/organization.rb, line 20 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
vdcs()
click to toggle source
# File lib/fog/vcloud/models/compute/organization.rb, line 27 def vdcs @vdcs ||= Fog::Vcloud::Compute::Vdcs. new( :service => service, :href => href ) end