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
10 11 12 13 |
# File 'lib/fog/vcloud/models/compute/catalogs.rb', line 10 def all data = connection.get_organization(organization_uri).body[:Link].select { |link| link[:type] == "application/vnd.vmware.vcloud.catalog+xml" } load(data) end |
#get(uri) ⇒ Object
15 16 17 18 19 20 21 |
# File 'lib/fog/vcloud/models/compute/catalogs.rb', line 15 def get(uri) if data = connection.get_catalog(uri) new(data.body) end rescue Fog::Errors::NotFound nil end |
#item_by_name(name) ⇒ Object
27 28 29 30 31 32 33 34 35 36 |
# File 'lib/fog/vcloud/models/compute/catalogs.rb', line 27 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 |
#organization_uri ⇒ Object
23 24 25 |
# File 'lib/fog/vcloud/models/compute/catalogs.rb', line 23 def organization_uri @organization_uri ||= connection.default_organization_uri end |