Class: Fog::Vcloud::Compute::Catalogs
- Inherits:
-
Fog::Vcloud::Collection
- Object
- Array
- Collection
- Fog::Vcloud::Collection
- Fog::Vcloud::Compute::Catalogs
- Defined in:
- lib/fog/vcloud/models/compute/catalogs.rb
Instance Attribute Summary
Attributes inherited from Collection
Instance Method Summary collapse
Methods inherited from Fog::Vcloud::Collection
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 Attributes::InstanceMethods
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #requires, #requires_one
Constructor Details
This class inherits a constructor from Fog::Collection
Instance Method Details
#all ⇒ Object
12 13 14 15 16 |
# File 'lib/fog/vcloud/models/compute/catalogs.rb', line 12 def all org_uri = self.organization_uri || connection.default_organization_uri data = connection.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) connection.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 |