Sha256: cdf306b94ff1eaaa55379c7b4bbde29a7a465ca1f9de64a507076e0291d2ab9e
Contents?: true
Size: 913 Bytes
Versions: 25
Compression:
Stored size: 913 Bytes
Contents
require 'fog/vcloud/models/compute/catalog' module Fog module Vcloud class Compute class Catalogs < Fog::Vcloud::Collection model Fog::Vcloud::Compute::Catalog attribute :organization_uri 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 def get(uri) connection.get_catalog(uri) rescue Fog::Errors::NotFound nil end 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 end end end end
Version data entries
25 entries across 25 versions & 11 rubygems