# File lib/fog/vcloud/models/compute/vapps.rb, line 15 def all load([connection.get_vdc(connection.default_vdc_href).resource_entities].flatten.select { |re| re[:type] == "application/vnd.vmware.vcloud.vApp+xml" }) end
# File lib/fog/vcloud/models/compute/vapps.rb, line 19 def get(uri) connection.get_vapp(uri) rescue Fog::Errors::NotFound nil end