Class: Fog::Vcloud::Compute::Vapps

Inherits:
Fog::Vcloud::Collection show all
Defined in:
lib/fog/vcloud/models/compute/vapps.rb

Instance Method Summary collapse

Methods inherited from Fog::Vcloud::Collection

#check_href!, #load

Instance Method Details

#allObject



13
14
15
# File 'lib/fog/vcloud/models/compute/vapps.rb', line 13

def all
  load([service.get_vdc(service.default_vdc_href).resource_entities].flatten.select { |re| re[:type] == "application/vnd.vmware.vcloud.vApp+xml" })
end

#get(uri) ⇒ Object



17
18
19
20
21
# File 'lib/fog/vcloud/models/compute/vapps.rb', line 17

def get(uri)
  service.get_vapp(uri)
rescue Fog::Errors::NotFound
  nil
end