Class: Fog::Vcloud::Compute::Catalogs

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

Instance Attribute Summary

Attributes inherited from Collection

#service

Instance Method Summary collapse

Methods inherited from Fog::Vcloud::Collection

#check_href!, #load

Methods inherited from Collection

#clear, #create, #destroy, #initialize, #inspect, #load, model, #model, #new, #reload, #table, #to_json

Methods included from Attributes::ClassMethods

#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes

Methods included from Core::DeprecatedConnectionAccessors

#connection, #connection=, #prepare_service_value

Methods included from Attributes::InstanceMethods

#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one

Constructor Details

This class inherits a constructor from Fog::Collection

Instance Method Details

#allObject



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

def all
  org_uri = self.organization_uri || service.default_organization_uri
  data = service.get_organization(org_uri).links.select { |link| link[:type] == "application/vnd.vmware.vcloud.catalog+xml" }
  load(data)
end

#get(uri) ⇒ Object



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

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

#item_by_name(name) ⇒ Object



24
25
26
27
28
29
30
31
32
33
# File 'lib/fog/vcloud/models/compute/catalogs.rb', line 24

def item_by_name(name)
  res = nil
  items = all.collect { |catalog| catalog.catalog_items }
  items.each do |i|
    i.collect do |ii|
      res = ii if ii.name == name
    end
  end
  res
end