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



15
16
17
# File 'lib/fog/vcloud/models/compute/vapps.rb', line 15

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



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

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